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}";
2016-09-30 00:23:16 +01:00
version = "2.12";
2016-02-14 12:48:15 +00:00
src = fetchFromGitHub {
owner = "johang";
repo = "btfs";
2016-09-30 00:23:16 +01:00
rev = "daeb2fd43795f0bb9a4861279b6064b35186ff25";
sha256 = "1apvf1gp5973s4wlzwndxp711yd9pj9zf2ypdssfxv2a3rihly2b";
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;
};
}