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 18:12:22 +01: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 19:43:35 +01:00
|
|
|
url = "https://bisqwit.iki.fi/src/arch/${name}.tar.bz2";
|
2014-10-08 18:12:22 +01: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 17:22:12 +01: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 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fuse perl ];
|
2012-02-19 16:58:40 +00:00
|
|
|
|
2018-08-15 19:20:43 +01: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 19:20:43 +01: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
|
|
|
}
|