partclone: fix build - requires automake and autoconf

This commit is contained in:
Matthias C. M. Troffaes 2015-12-07 15:13:25 +00:00
parent e8d97ef4f5
commit 0d3db2477b

View File

@ -1,6 +1,6 @@
{stdenv, fetchFromGitHub {stdenv, fetchFromGitHub
, pkgconfig, libuuid , pkgconfig, libuuid
, e2fsprogs , e2fsprogs, automake, autoconf
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "partclone-stable"; name = "partclone-stable";
@ -13,7 +13,7 @@ stdenv.mkDerivation {
sha256 = "0q3brjmnldpr89nhbiajxg3gncz0nagc34n7q2723lpz7bn28w3z"; sha256 = "0q3brjmnldpr89nhbiajxg3gncz0nagc34n7q2723lpz7bn28w3z";
}; };
buildInputs = [e2fsprogs pkgconfig libuuid]; buildInputs = [e2fsprogs pkgconfig libuuid automake autoconf];
installPhase = ''make INSTPREFIX=$out install''; installPhase = ''make INSTPREFIX=$out install'';