2016-02-22 20:53:14 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.5.2";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "genromfs";
|
2016-02-22 20:53:14 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/romfs/genromfs/${version}/${pname}-${version}.tar.gz";
|
2016-02-22 20:53:14 +01:00
|
|
|
sha256 = "0q6rpq7cmclmb4ayfyknvzbqysxs4fy8aiahlax1sb2p6k3pzwrh";
|
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
2016-08-12 05:18:38 +02:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "prefix = /usr" "prefix = $out" \
|
|
|
|
--replace "gcc" "cc"
|
2016-02-22 20:53:14 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://romfs.sourceforge.net/";
|
2016-02-22 20:53:14 +01:00
|
|
|
description = "Tool for creating romfs file system images";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pxc ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|