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

28 lines
731 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, python3, boost, fuse, libtorrent-rasterbar, curl }:
2016-02-14 12:48:15 +00:00
stdenv.mkDerivation rec {
pname = "btfs";
2021-02-16 21:44:08 +00:00
version = "2.24";
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}";
2021-02-16 21:44:08 +00:00
sha256 = "sha256-fkS0U/MqFRQNi+n7NE4e1cnNICvfST2IQ9FMoJUyj6w=";
2016-02-14 12:48:15 +00:00
};
2016-05-28 13:21:15 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2016-02-14 12:48:15 +00:00
buildInputs = [
boost fuse libtorrent-rasterbar curl python3
2016-02-14 12:48:15 +00:00
];
meta = with lib; {
2016-02-14 12:48:15 +00:00
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 ];
2021-03-25 16:35:19 +00:00
platforms = platforms.unix;
2016-02-14 12:48:15 +00:00
};
}