summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-09-01 17:38:54 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-09-01 17:38:54 +0200
commit561fecb239022d58cb88c32241b2ee97f020b865 (patch)
tree39d6ccec0c4dc16927512820cbc7d4cdbb05d1d3
parentc30410e2dcf9d58facd7ccc09078cf0ec34cd3b7 (diff)
cromfs: use gcc 4.8 to fix build on i686 (ZHF)
-rw-r--r--pkgs/tools/archivers/cromfs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/archivers/cromfs/default.nix b/pkgs/tools/archivers/cromfs/default.nix
index 342c975fa1f5..cd151698f250 100644
--- a/pkgs/tools/archivers/cromfs/default.nix
+++ b/pkgs/tools/archivers/cromfs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, fuse, perl }:
+{ stdenv, fetchurl, pkgconfig, fuse, perl, gcc48 }:
stdenv.mkDerivation rec {
name = "cromfs-1.5.10.2";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
install util/unmkcromfs $out/bin
'';
- buildInputs = [ pkgconfig fuse perl ];
+ buildInputs = [ pkgconfig fuse perl gcc48 ];
meta = {
description = "FUSE Compressed ROM filesystem with lzma";