nixpkgs/pkgs/tools/archivers/cromfs/default.nix

32 lines
818 B
Nix
Raw Normal View History

2016-02-25 00:55:53 +00:00
{ stdenv, fetchurl, pkgconfig, fuse, perl }:
stdenv.mkDerivation rec {
name = "cromfs-1.5.10.2";
2016-02-25 00:55:53 +00:00
src = fetchurl {
url = "https://bisqwit.iki.fi/src/arch/${name}.tar.bz2";
sha256 = "0xy2x1ws1qqfp7hfj6yzm80zhrxzmhn0w2yns77im1lmd2h18817";
};
2016-02-25 00:55:53 +00:00
postPatch = "patchShebangs configure";
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
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse perl ];
2018-08-15 18:20:43 +00:00
meta = with stdenv.lib; {
description = "FUSE Compressed ROM filesystem with lzma";
homepage = https://bisqwit.iki.fi/source/cromfs.html;
2018-08-15 18:20:43 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.viric ];
platforms = platforms.linux;
};
}