5baef98dd9
svn path=/nixpkgs/branches/stdenv-updates/; revision=32400
33 lines
929 B
Nix
33 lines
929 B
Nix
{ stdenv, fetchurl, pkgconfig, fuse, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cromfs-1.5.10";
|
|
|
|
src = fetchurl {
|
|
url = "http://bisqwit.iki.fi/src/arch/${name}.tar.bz2";
|
|
sha256 = "1w079zb5scv6bj919ndr0fkiirq2bkyjrnmwqrr9yzwbyinzg73j";
|
|
};
|
|
|
|
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";
|
|
|
|
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 ];
|
|
|
|
meta = {
|
|
description = "FUSE Compressed ROM filesystem with lzma";
|
|
homepage = http://bisqwit.iki.fi/source/cromfs.html;
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|