nixpkgs/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 12:48:15 +00:00
stdenv.mkDerivation rec {
pname = "btfs";
2020-05-25 09:13:22 +00:00
version = "2.21";
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}";
2020-05-25 09:13:22 +00:00
sha256 = "0zqkzfc49jl9kn3m0cg7q0156xyzrdl5w4v70p16sqxdly86mwb0";
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";
homepage = "https://github.com/johang/btfs";
2016-02-14 12:48:15 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}