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

33 lines
848 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, python3, boost, fuse, libtorrentRasterbar, curl }:
2016-02-14 13:48:15 +01:00
stdenv.mkDerivation rec {
pname = "btfs";
version = "2.19";
2016-02-14 13:48:15 +01:00
src = fetchFromGitHub {
2017-02-04 18:51:44 +01:00
owner = "johang";
repo = pname;
2017-02-04 18:51:44 +01:00
rev = "v${version}";
sha256 = "1b58zqha2hpnk4ysp9870wd9pkyy6l106ghp0z0x655q70npj0wn";
2016-02-14 13:48:15 +01:00
};
2016-05-28 15:21:15 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2016-02-14 13:48:15 +01:00
buildInputs = [
boost fuse libtorrentRasterbar curl
2016-02-14 13:48:15 +01:00
];
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;
};
}