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