diff --git a/pkgs/tools/archivers/cromfs/default.nix b/pkgs/tools/archivers/cromfs/default.nix index 4d09d9aace32..5164d45b612b 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