2019-05-01 00:22:15 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
|
|
, python3, boost, fuse, libtorrentRasterbar, curl }:
|
2016-02-14 13:48:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-01 00:22:15 +02:00
|
|
|
pname = "btfs";
|
2020-08-13 06:30:00 +02:00
|
|
|
version = "2.22";
|
2016-02-14 13:48:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-04 18:51:44 +01:00
|
|
|
owner = "johang";
|
2019-05-01 00:22:15 +02:00
|
|
|
repo = pname;
|
2017-02-04 18:51:44 +01:00
|
|
|
rev = "v${version}";
|
2020-08-13 06:30:00 +02:00
|
|
|
sha256 = "1z88bk1z4sns3jdn56x83mvh06snxg0lr5h4v0c24lzlf5wbdifz";
|
2016-02-14 13:48:15 +01:00
|
|
|
};
|
2016-05-28 15:21:15 +02:00
|
|
|
|
2019-05-01 00:22:15 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2016-02-14 13:48:15 +01:00
|
|
|
buildInputs = [
|
2019-09-26 10:09:41 +02:00
|
|
|
boost fuse libtorrentRasterbar curl python3
|
2016-02-14 13:48:15 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A bittorrent filesystem based on FUSE";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/johang/btfs";
|
2016-02-14 13:48:15 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|