summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-25 00:55:53 +0000
committerRobin Gloster <mail@glob.in>2016-02-25 00:58:02 +0000
commit56ceca9d46bd5d7001141df360742543c6204200 (patch)
tree5627a0cd3e10b4b5302352c87b6b21f356ac8e89
parentc677109fcd897e3b7ce797df1097ca80b6ccb841 (diff)
cromfs: use default gcc
-rw-r--r--pkgs/tools/archivers/cromfs/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/tools/archivers/cromfs/default.nix b/pkgs/tools/archivers/cromfs/default.nix
index cd151698f250..042880b39c9b 100644
--- a/pkgs/tools/archivers/cromfs/default.nix
+++ b/pkgs/tools/archivers/cromfs/default.nix
@@ -1,18 +1,15 @@
-{ stdenv, fetchurl, pkgconfig, fuse, perl, gcc48 }:
+{ stdenv, fetchurl, pkgconfig, fuse, perl }:
stdenv.mkDerivation rec {
name = "cromfs-1.5.10.2";
-
+
src = fetchurl {
url = "http://bisqwit.iki.fi/src/arch/${name}.tar.bz2";
sha256 = "0xy2x1ws1qqfp7hfj6yzm80zhrxzmhn0w2yns77im1lmd2h18817";
};
- patchPhase = ''sed -i 's@/bin/bash@/bin/sh@g' configure'';
+ postPatch = "patchShebangs configure";
- # 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
@@ -21,7 +18,7 @@ stdenv.mkDerivation rec {
install util/unmkcromfs $out/bin
'';
- buildInputs = [ pkgconfig fuse perl gcc48 ];
+ buildInputs = [ pkgconfig fuse perl ];
meta = {
description = "FUSE Compressed ROM filesystem with lzma";