cromfs: use default gcc

This commit is contained in:
Robin Gloster 2016-08-24 21:24:04 +00:00
parent f0b53ac245
commit 9cbb74484c

View File

@ -1,18 +1,18 @@
{ 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 +21,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";