2016-05-28 06:21:15 -07:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
|
2016-02-14 04:48:15 -08:00
|
|
|
python, boost, fuse, libtorrentRasterbar, curl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "btfs-${version}";
|
2017-09-12 05:10:50 -07:00
|
|
|
version = "2.17";
|
2016-02-14 04:48:15 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-04 09:51:44 -08:00
|
|
|
owner = "johang";
|
|
|
|
repo = "btfs";
|
|
|
|
rev = "v${version}";
|
2017-09-12 05:10:50 -07:00
|
|
|
sha256 = "0v0mypwnx832f7vg52wmiw0lyz7rrkhqsgi7zc261ak1gfaw4nwd";
|
2016-02-14 04:48:15 -08:00
|
|
|
};
|
2016-05-28 06:21:15 -07:00
|
|
|
|
2017-09-14 12:24:37 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-02-14 04:48:15 -08:00
|
|
|
buildInputs = [
|
2017-09-14 12:24:37 -07:00
|
|
|
boost autoreconfHook
|
2016-02-14 04:48:15 -08:00
|
|
|
fuse libtorrentRasterbar curl
|
|
|
|
];
|
|
|
|
|
2016-05-28 06:21:15 -07:00
|
|
|
preInstall = ''
|
2016-02-14 04:48:15 -08:00
|
|
|
substituteInPlace scripts/btplay \
|
2016-02-27 17:39:05 -08:00
|
|
|
--replace "/usr/bin/env python" "${python}/bin/python"
|
2016-02-14 04:48:15 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A bittorrent filesystem based on FUSE";
|
|
|
|
homepage = "https://github.com/johang/btfs";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|