Removing static compilation of the driver for cromfs, so the package works again in x86_64

svn path=/nixpkgs/trunk/; revision=15309
This commit is contained in:
Lluís Batlle i Rossell 2009-04-25 16:22:12 +00:00
parent 1e8fff0915
commit c2d651ef68

View File

@ -14,11 +14,13 @@ stdenv.mkDerivation {
description = "FUSE Compressed ROM filesystem with lzma" ;
homepage = http://bisqwit.iki.fi/source/cromfs.html;
};
# Removing the static linking, as it doesn't compile in x86_64.
makeFlags = "cromfs-driver util/mkcromfs util/unmkcromfs util/cvcromfs";
installPhase = ''
install -d $out/bin
install cromfs-driver $out/bin
install cromfs-driver-static $out/bin
install util/cvcromfs $out/bin
install util/mkcromfs $out/bin
install util/unmkcromfs $out/bin