2016-05-28 15:21:15 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
|
2016-02-14 13:48:15 +01:00
|
|
|
python, boost, fuse, libtorrentRasterbar, curl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "btfs-${version}";
|
2016-08-14 22:48:56 +02:00
|
|
|
version = "2.11";
|
2016-02-14 13:48:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "johang";
|
|
|
|
repo = "btfs";
|
2016-08-14 22:48:56 +02:00
|
|
|
rev = "fe585ca285690579db50b1624cec81ae76279ba2";
|
|
|
|
sha256 = "1vqya2k8cx5x7jfapl9vmmb002brwbsz4j5xs4417kzv3j2bsms9";
|
2016-02-14 13:48:15 +01:00
|
|
|
};
|
2016-05-28 15:21:15 +02:00
|
|
|
|
2016-02-14 13:48:15 +01:00
|
|
|
buildInputs = [
|
2016-05-28 15:21:15 +02:00
|
|
|
boost autoreconfHook pkgconfig
|
2016-02-14 13:48:15 +01:00
|
|
|
fuse libtorrentRasterbar curl
|
|
|
|
];
|
|
|
|
|
2016-05-28 15:21:15 +02:00
|
|
|
preInstall = ''
|
2016-02-14 13:48:15 +01:00
|
|
|
substituteInPlace scripts/btplay \
|
2016-02-28 02:39:05 +01:00
|
|
|
--replace "/usr/bin/env python" "${python}/bin/python"
|
2016-02-14 13:48:15 +01: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;
|
|
|
|
};
|
|
|
|
}
|