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

28 lines
729 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, python3, boost, fuse, libtorrentRasterbar, curl }:
2016-02-14 12:48:15 +00:00
stdenv.mkDerivation rec {
pname = "btfs";
version = "2.20";
2016-02-14 12:48:15 +00:00
src = fetchFromGitHub {
2017-02-04 17:51:44 +00:00
owner = "johang";
repo = pname;
2017-02-04 17:51:44 +00:00
rev = "v${version}";
sha256 = "1xil18nmivakdv6rz4sd3203gzfisdvj79spni59kv7dby64rxdz";
2016-02-14 12:48:15 +00:00
};
2016-05-28 13:21:15 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2016-02-14 12:48:15 +00:00
buildInputs = [
2019-09-26 08:09:41 +00:00
boost fuse libtorrentRasterbar curl python3
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;
};
}