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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
731 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, python3, boost, fuse, libtorrent-rasterbar, curl }:
2016-02-14 13:48:15 +01:00
stdenv.mkDerivation rec {
pname = "btfs";
2021-02-16 22:44:08 +01:00
version = "2.24";
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}";
2021-02-16 22:44:08 +01:00
sha256 = "sha256-fkS0U/MqFRQNi+n7NE4e1cnNICvfST2IQ9FMoJUyj6w=";
2016-02-14 13:48:15 +01:00
};
2016-05-28 15:21:15 +02:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2016-02-14 13:48:15 +01:00
buildInputs = [
boost fuse libtorrent-rasterbar curl python3
2016-02-14 13:48:15 +01:00
];
meta = with lib; {
2016-02-14 13:48:15 +01:00
description = "A bittorrent filesystem based on FUSE";
homepage = "https://github.com/johang/btfs";
2016-02-14 13:48:15 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
2021-03-25 17:35:19 +01:00
platforms = platforms.unix;
2016-02-14 13:48:15 +01:00
};
}