vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / os-specific / linux / btfs / default.nix
blob04a3e104c1cf271416ba99473a7137e410f7ef4c
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
2 , python3, boost, fuse, libtorrent-rasterbar, curl }:
4 stdenv.mkDerivation rec {
5   pname = "btfs";
6   version = "2.24";
8   src = fetchFromGitHub {
9     owner  = "johang";
10     repo   = pname;
11     rev    = "v${version}";
12     sha256 = "sha256-fkS0U/MqFRQNi+n7NE4e1cnNICvfST2IQ9FMoJUyj6w=";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config ];
16   buildInputs = [
17     boost fuse libtorrent-rasterbar curl python3
18   ];
20   meta = with lib; {
21     description = "Bittorrent filesystem based on FUSE";
22     homepage    = "https://github.com/johang/btfs";
23     license     = licenses.gpl3;
24     maintainers = with maintainers; [ rnhmjoj ];
25     platforms   = platforms.unix;
26   };