c2d651ef68
svn path=/nixpkgs/trunk/; revision=15309
31 lines
838 B
Nix
31 lines
838 B
Nix
{stdenv, fetchurl, pkgconfig, fuse, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cromfs-1.5.8.6";
|
|
src = fetchurl {
|
|
url = http://bisqwit.iki.fi/src/arch/cromfs-1.5.8.6.tar.bz2;
|
|
sha256 = "00m362q0b7z1688pjhvnbr14y3p1lgaymq5k9r42z3blzw8mgmay";
|
|
};
|
|
|
|
patchPhase = ''sed -i 's@/bin/bash@/bin/sh@g' configure; set -x'';
|
|
|
|
|
|
meta = {
|
|
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 util/cvcromfs $out/bin
|
|
install util/mkcromfs $out/bin
|
|
install util/unmkcromfs $out/bin
|
|
'';
|
|
|
|
buildInputs = [pkgconfig fuse perl];
|
|
}
|