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

40 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, automake, autoconf, pkgconfig, gettext, libtool, pandoc, which, attr, libiconv }:
2016-09-28 11:21:50 +00:00
stdenv.mkDerivation rec {
name = "mergerfs-${version}";
version = "2.26.0";
2016-09-28 11:21:50 +00:00
src = fetchFromGitHub {
owner = "trapexit";
repo = "mergerfs";
rev = version;
sha256 = "1arq09rn1lmvv7gj3ymwdiygm620zdcx1jh2qpa1dxrdg8xrwqa9";
2016-09-28 11:21:50 +00:00
};
nativeBuildInputs = [
automake autoconf pkgconfig gettext libtool pandoc which
];
2017-06-28 12:32:13 +00:00
buildInputs = [ attr libiconv ];
2016-09-28 11:21:50 +00:00
preConfigure = ''
cat > src/version.hpp <<EOF
#pragma once
static const char MERGERFS_VERSION[] = "${version}";
EOF
'';
2016-09-28 11:21:50 +00:00
makeFlags = [ "PREFIX=$(out)" "XATTR_AVAILABLE=1" ];
2019-04-25 04:53:29 +00:00
postFixup = ''
ln -s $out/bin/mergerfs $out/bin/mount.fuse.mergerfs
'';
2016-09-28 11:21:50 +00:00
meta = {
description = "A FUSE based union filesystem";
homepage = https://github.com/trapexit/mergerfs;
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.linux;
2017-06-28 12:32:13 +00:00
maintainers = with stdenv.lib.maintainers; [ jfrankenau makefu ];
2016-09-28 11:21:50 +00:00
};
}