From c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 25 Apr 2009 16:22:12 +0000 Subject: [PATCH] Removing static compilation of the driver for cromfs, so the package works again in x86_64 svn path=/nixpkgs/trunk/; revision=15309 --- pkgs/tools/archivers/cromfs/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/archivers/cromfs/default.nix b/pkgs/tools/archivers/cromfs/default.nix index 4d09d9aace3..5164d45b612 100644 --- a/pkgs/tools/archivers/cromfs/default.nix +++ b/pkgs/tools/archivers/cromfs/default.nix @@ -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