1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/os-specific/linux/btfs/default.nix

33 lines
859 B
Nix
Raw Normal View History

2016-05-28 14:21:15 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
2016-02-14 12:48:15 +00:00
python, boost, fuse, libtorrentRasterbar, curl }:
stdenv.mkDerivation rec {
name = "btfs-${version}";
version = "2.10";
2016-02-14 12:48:15 +00:00
src = fetchFromGitHub {
owner = "johang";
repo = "btfs";
rev = "2eac5e70a1ed22fa0761b6357c54fd90eea02de6";
sha256 = "146vgwn79dnbkkn35safga55lkwhvarkmilparmr26hjb56cs1dk";
2016-02-14 12:48:15 +00:00
};
2016-05-28 14:21:15 +01:00
2016-02-14 12:48:15 +00:00
buildInputs = [
2016-05-28 14:21:15 +01:00
boost autoreconfHook pkgconfig
2016-02-14 12:48:15 +00:00
fuse libtorrentRasterbar curl
];
2016-05-28 14:21:15 +01: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;
};
}