mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
cromfs: use default gcc
This commit is contained in:
parent
c677109fcd
commit
56ceca9d46
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, fuse, perl, gcc48 }:
|
||||
{ stdenv, fetchurl, pkgconfig, fuse, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cromfs-1.5.10.2";
|
||||
@ -8,10 +8,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0xy2x1ws1qqfp7hfj6yzm80zhrxzmhn0w2yns77im1lmd2h18817";
|
||||
};
|
||||
|
||||
patchPhase = ''sed -i 's@/bin/bash@/bin/sh@g' configure'';
|
||||
|
||||
# Removing the static linking, as it doesn't compile in x86_64.
|
||||
makeFlags = "cromfs-driver util/mkcromfs util/unmkcromfs util/cvcromfs";
|
||||
postPatch = "patchShebangs configure";
|
||||
|
||||
installPhase = ''
|
||||
install -d $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";
|
||||
|
Loading…
Reference in New Issue
Block a user