depot/third_party/nixpkgs/pkgs/os-specific/linux/btfs/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
733 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, python3, boost, fuse, libtorrent-rasterbar, curl }:
stdenv.mkDerivation rec {
pname = "btfs";
version = "2.23";
src = fetchFromGitHub {
owner = "johang";
repo = pname;
rev = "v${version}";
sha256 = "1cfjhyn9cjyyxyd0f08b2ra258pzkljwvkj0iwrjpd0nrbl6wkq5";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [
boost fuse libtorrent-rasterbar curl python3
];
meta = with lib; {
description = "A bittorrent filesystem based on FUSE";
homepage = "https://github.com/johang/btfs";
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}