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

33 lines
836 B
Nix
Raw Normal View History

2016-05-28 13:21:15 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
2016-02-14 12:48:15 +00:00
python, boost, fuse, libtorrentRasterbar, curl }:
stdenv.mkDerivation rec {
name = "btfs-${version}";
2017-02-04 17:51:44 +00:00
version = "2.13";
2016-02-14 12:48:15 +00:00
src = fetchFromGitHub {
2017-02-04 17:51:44 +00:00
owner = "johang";
repo = "btfs";
rev = "v${version}";
sha256 = "1nd021xbxrikd8p0w9816xjwlrs9m1nc6954q23qxfw2jbmszlk2";
2016-02-14 12:48:15 +00:00
};
2016-05-28 13:21:15 +00:00
2016-02-14 12:48:15 +00:00
buildInputs = [
2016-05-28 13:21:15 +00:00
boost autoreconfHook pkgconfig
2016-02-14 12:48:15 +00:00
fuse libtorrentRasterbar curl
];
2016-05-28 13:21:15 +00:00
preInstall = ''
2016-02-14 12:48:15 +00:00
substituteInPlace scripts/btplay \
2016-02-28 01:39:05 +00:00
--replace "/usr/bin/env python" "${python}/bin/python"
2016-02-14 12:48:15 +00:00
'';
meta = with stdenv.lib; {
description = "A bittorrent filesystem based on FUSE";
homepage = "https://github.com/johang/btfs";
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}