nixpkgs-suyu/pkgs/os-specific/linux/btfs/default.nix

28 lines
731 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, python3, boost, fuse, libtorrentRasterbar, curl }:
2016-02-14 13:48:15 +01:00
stdenv.mkDerivation rec {
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";
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
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";
homepage = "https://github.com/johang/btfs";
2016-02-14 13:48:15 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}