2016-02-25 00:55:53 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, fuse, perl }:
|
2009-01-04 17:24:11 +00:00
|
|
|
|
2009-12-23 19:56:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-08 17:12:22 +00:00
|
|
|
name = "cromfs-1.5.10.2";
|
2016-02-25 00:55:53 +00:00
|
|
|
|
2009-01-04 17:24:11 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://bisqwit.iki.fi/src/arch/${name}.tar.bz2";
|
2014-10-08 17:12:22 +00:00
|
|
|
sha256 = "0xy2x1ws1qqfp7hfj6yzm80zhrxzmhn0w2yns77im1lmd2h18817";
|
2009-01-04 17:24:11 +00:00
|
|
|
};
|
|
|
|
|
2016-02-25 00:55:53 +00:00
|
|
|
postPatch = "patchShebangs configure";
|
2009-04-25 16:22:12 +00:00
|
|
|
|
2009-01-04 17:24:11 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fuse perl ];
|
2012-02-19 16:58:40 +00:00
|
|
|
|
2018-08-15 18:20:43 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-02-19 16:58:40 +00:00
|
|
|
description = "FUSE Compressed ROM filesystem with lzma";
|
2018-01-05 19:42:46 +00:00
|
|
|
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;
|
2012-02-19 16:58:40 +00:00
|
|
|
};
|
2009-01-04 17:24:11 +00:00
|
|
|
}
|