2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, fuse, perl }:
|
2009-01-04 17:24:11 +00:00
|
|
|
|
2009-12-23 19:56:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-12 19:47:47 +00:00
|
|
|
pname = "cromfs";
|
|
|
|
version = "1.5.10.2";
|
2016-02-25 00:55:53 +00:00
|
|
|
|
2009-01-04 17:24:11 +00:00
|
|
|
src = fetchurl {
|
2021-08-12 19:47:47 +00:00
|
|
|
url = "https://bisqwit.iki.fi/src/arch/cromfs-${version}.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
|
|
|
|
'';
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ fuse perl ];
|
2012-02-19 16:58:40 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-02-19 16:58:40 +00:00
|
|
|
description = "FUSE Compressed ROM filesystem with lzma";
|
2020-04-01 01:11:51 +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
|
|
|
}
|