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 13:48:15 +01:00
stdenv.mkDerivation rec {
pname = "btfs";
version = "2.20";
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}";
sha256 = "1xil18nmivakdv6rz4sd3203gzfisdvj79spni59kv7dby64rxdz";
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";
2018-01-13 03:52:23 +01:00
homepage = https://github.com/johang/btfs;
2016-02-14 13:48:15 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}