nixpkgs/pkgs/tools/filesystems/mergerfs/tools.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

2018-07-14 21:31:01 +00:00
{ stdenv, fetchFromGitHub, coreutils, makeWrapper
, rsync, python3, pythonPackages }:
stdenv.mkDerivation rec {
2019-05-16 17:50:51 +00:00
pname = "mergerfs-tools";
version = "20190411";
2018-07-14 21:31:01 +00:00
src = fetchFromGitHub {
owner = "trapexit";
2019-05-16 17:50:51 +00:00
repo = pname;
rev = "6e41fc5848c7cc4408caea86f3991c8cc2ac85a1";
sha256 = "0izswg6bya13scvb37l3gkl7mvi8q7l11p4hp4phdlcwh9jvdzcj";
2018-07-14 21:31:01 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python3 ];
makeFlags = [
"INSTALL=${coreutils}/bin/install"
2019-05-16 17:50:51 +00:00
"PREFIX=${placeholder "out"}"
2018-07-14 21:31:01 +00:00
];
postInstall = with stdenv.lib; ''
wrapProgram $out/bin/mergerfs.balance --prefix PATH : ${makeBinPath [ rsync ]}
wrapProgram $out/bin/mergerfs.dup --prefix PATH : ${makeBinPath [ rsync ]}
wrapProgram $out/bin/mergerfs.mktrash --prefix PATH : ${makeBinPath [ pythonPackages.xattr ]}
'';
meta = with stdenv.lib; {
description = "Optional tools to help manage data in a mergerfs pool";
2019-05-16 17:50:51 +00:00
homepage = "https://github.com/trapexit/mergerfs-tools";
2018-07-14 21:31:01 +00:00
license = licenses.isc;
platforms = platforms.linux;
maintainers = with maintainers; [ jfrankenau ];
};
}