2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
2020-12-20 13:35:14 +00:00
|
|
|
, python3, boost, fuse, libtorrent-rasterbar, curl }:
|
2016-02-14 12:48:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-30 23:22:15 +01:00
|
|
|
pname = "btfs";
|
2020-11-18 05:13:07 +00:00
|
|
|
version = "2.23";
|
2016-02-14 12:48:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-04 17:51:44 +00:00
|
|
|
owner = "johang";
|
2019-04-30 23:22:15 +01:00
|
|
|
repo = pname;
|
2017-02-04 17:51:44 +00:00
|
|
|
rev = "v${version}";
|
2020-11-18 05:13:07 +00:00
|
|
|
sha256 = "1cfjhyn9cjyyxyd0f08b2ra258pzkljwvkj0iwrjpd0nrbl6wkq5";
|
2016-02-14 12:48:15 +00:00
|
|
|
};
|
2016-05-28 14:21:15 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2016-02-14 12:48:15 +00:00
|
|
|
buildInputs = [
|
2020-12-20 13:35:14 +00:00
|
|
|
boost fuse libtorrent-rasterbar curl python3
|
2016-02-14 12:48:15 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-02-14 12:48:15 +00:00
|
|
|
description = "A bittorrent filesystem based on FUSE";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/johang/btfs";
|
2016-02-14 12:48:15 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|