summary refs log tree commit diff
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-25 16:22:12 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-25 16:22:12 +0000
commitc2d651ef68ff09efb67ca15f3ae1aae4baa4ce83 (patch)
tree8b67db2d66c8b8c78a364f3b209efbdae238bc51 /pkgs/tools/archivers
parent1e8fff0915597f38149ff5072ab5c22d9343b945 (diff)
downloadnixpkgs-c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83.tar
nixpkgs-c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83.tar.gz
nixpkgs-c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83.tar.bz2
nixpkgs-c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83.tar.lz
nixpkgs-c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83.tar.xz
nixpkgs-c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83.tar.zst
nixpkgs-c2d651ef68ff09efb67ca15f3ae1aae4baa4ce83.zip
Removing static compilation of the driver for cromfs, so the package works again in x86_64
svn path=/nixpkgs/trunk/; revision=15309
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/cromfs/default.nix4
1 files changed, 3 insertions, 1 deletions
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