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 22:22:15 +00:00
|
|
|
pname = "btfs";
|
2021-02-16 21:44:08 +00:00
|
|
|
version = "2.24";
|
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}";
|
2021-02-16 21:44:08 +00:00
|
|
|
sha256 = "sha256-fkS0U/MqFRQNi+n7NE4e1cnNICvfST2IQ9FMoJUyj6w=";
|
2016-02-14 12:48:15 +00:00
|
|
|
};
|
2016-05-28 13:21:15 +00: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 01:11:51 +00:00
|
|
|
homepage = "https://github.com/johang/btfs";
|
2016-02-14 12:48:15 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
2021-03-25 16:35:19 +00:00
|
|
|
platforms = platforms.unix;
|
2016-02-14 12:48:15 +00:00
|
|
|
};
|
|
|
|
}
|