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

34 lines
864 B
Nix
Raw Normal View History

2016-05-28 15:21:15 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
2018-06-02 15:45:42 +02:00
python3, boost, fuse, libtorrentRasterbar, curl }:
2016-02-14 13:48:15 +01:00
stdenv.mkDerivation rec {
name = "btfs-${version}";
2018-01-13 03:52:23 +01:00
version = "2.18";
2016-02-14 13:48:15 +01:00
src = fetchFromGitHub {
2017-02-04 18:51:44 +01:00
owner = "johang";
repo = "btfs";
rev = "v${version}";
2018-01-13 03:52:23 +01:00
sha256 = "1cn21bxx43iqvac6scmwhkw0bql092sl48r6qfidbmhbw30xl5yf";
2016-02-14 13:48:15 +01:00
};
2016-05-28 15:21:15 +02:00
nativeBuildInputs = [ pkgconfig ];
2016-02-14 13:48:15 +01:00
buildInputs = [
boost autoreconfHook
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 \
2018-06-02 15:45:42 +02:00
--replace "/usr/bin/env python" "${python3.interpreter}"
2016-02-14 13:48:15 +01:00
'';
meta = with stdenv.lib; {
description = "A bittorrent filesystem based on FUSE";
2018-01-13 03:52:23 +01:00
homepage = https://github.com/johang/btfs;
2016-02-14 13:48:15 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;
};
}