mergerfs: 2.16.1 -> 2.22.1

This commit is contained in:
Johannes Frankenau 2017-06-28 14:32:13 +02:00
parent 32e492251b
commit 8461e31dc9
2 changed files with 8 additions and 5 deletions

@ -247,6 +247,7 @@
jensbin = "Jens Binkert <jensbin@protonmail.com>";
jerith666 = "Matt McHenry <github@matt.mchenryfamily.org>";
jfb = "James Felix Black <james@yamtime.com>";
jfrankenau = "Johannes Frankenau <johannes@frankenau.net>";
jgeerds = "Jascha Geerds <jascha@jgeerds.name>";
jgertm = "Tim Jaeger <jger.tm@gmail.com>";
jgillich = "Jakob Gillich <jakob@gillich.me>";

@ -1,18 +1,20 @@
{ stdenv, fetchgit, fuse, pkgconfig, which, attr, pandoc, git }:
{ stdenv, fetchgit, autoconf, automake, pkgconfig, gettext, libtool, git, pandoc, which, attr, libiconv }:
stdenv.mkDerivation rec {
name = "mergerfs-${version}";
version = "2.16.1";
version = "2.22.1";
# not using fetchFromGitHub because of changelog being built with git log
src = fetchgit {
url = "https://github.com/trapexit/mergerfs";
rev = "refs/tags/${version}";
sha256 = "12fqgk54fnnibqiq82p4g2k6qnw3iy6dd64csmlf73yi67za5iwf";
sha256 = "12dm64l74wyagbwxsz57p8j3dwl9hgi0j3b6i0pn9m5ar7qrnv00";
deepClone = true;
leaveDotGit = true;
};
buildInputs = [ fuse pkgconfig which attr pandoc git ];
nativeBuildInputs = [ autoconf automake pkgconfig gettext libtool git pandoc which ];
buildInputs = [ attr libiconv ];
makeFlags = [ "PREFIX=$(out)" "XATTR_AVAILABLE=1" ];
@ -21,6 +23,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/trapexit/mergerfs;
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ makefu ];
maintainers = with stdenv.lib.maintainers; [ jfrankenau makefu ];
};
}