nixpkgs/pkgs/tools/archivers/cromfs/default.nix
Lluís Batlle i Rossell 783e78372d Updating cromfs, and adding me as a maintainer.
svn path=/nixpkgs/trunk/; revision=19084
2009-12-23 19:56:57 +00:00

32 lines
940 B
Nix

{stdenv, fetchurl, pkgconfig, fuse, perl}:
stdenv.mkDerivation rec {
name = "cromfs-1.5.9";
src = fetchurl {
url = "http://bisqwit.iki.fi/src/arch/${name}.tar.bz2";
sha256 = "0vdpgx0g6yrhqsg50fhksdaaid4gf2gifrxd0xs3idhwg4jmg4ik";
};
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;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
# 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];
}