2019-04-30 22:22:15 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
|
|
, python3, boost, fuse, libtorrentRasterbar, curl }:
|
2016-02-14 12:48:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-30 22:22:15 +00:00
|
|
|
pname = "btfs";
|
|
|
|
version = "2.19";
|
2016-02-14 12:48:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-04 17:51:44 +00:00
|
|
|
owner = "johang";
|
2019-04-30 22:22:15 +00:00
|
|
|
repo = pname;
|
2017-02-04 17:51:44 +00:00
|
|
|
rev = "v${version}";
|
2019-04-30 22:22:15 +00:00
|
|
|
sha256 = "1b58zqha2hpnk4ysp9870wd9pkyy6l106ghp0z0x655q70npj0wn";
|
2016-02-14 12:48:15 +00:00
|
|
|
};
|
2016-05-28 13:21:15 +00:00
|
|
|
|
2019-04-30 22:22:15 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2016-02-14 12:48:15 +00:00
|
|
|
buildInputs = [
|
2019-04-30 22:22:15 +00:00
|
|
|
boost fuse libtorrentRasterbar curl
|
2016-02-14 12:48:15 +00:00
|
|
|
];
|
|
|
|
|
2016-05-28 13:21:15 +00:00
|
|
|
preInstall = ''
|
2016-02-14 12:48:15 +00:00
|
|
|
substituteInPlace scripts/btplay \
|
2018-06-02 13:45:42 +00:00
|
|
|
--replace "/usr/bin/env python" "${python3.interpreter}"
|
2016-02-14 12:48:15 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A bittorrent filesystem based on FUSE";
|
2018-01-13 02:52:23 +00: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;
|
|
|
|
};
|
|
|
|
}
|