3
0
Fork 0
forked from mirrors/nixpkgs

Fix tarball

I don't know what nbd is, I just followed the complaints in the log

svn path=/nixpkgs/trunk/; revision=32310
This commit is contained in:
Shea Levy 2012-02-16 02:21:17 +00:00
parent 75d4746680
commit dfda68af54

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation {
patches = [ ./0001-properly-check-for-HAVE_FALLOC_PH-in-both-occurrence.patch ];
buildInputs = [ pkgconfig glib ] ++ stdenv.lib.optional stdenv.isLinux stdenv.glibc.kernelHeaders;
buildInputs = [ pkgconfig glib ] ++ stdenv.lib.optional (stdenv ? glibc) stdenv.glibc.kernelHeaders;
postInstall = ''install -D -m 444 README "$out/share/doc/nbd/README"'';