2016-07-05 17:47:34 +02:00
|
|
|
{ stdenv, fetchurl, libpng, perl, perlPackages, makeWrapper }:
|
2012-01-04 10:42:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-15 23:52:40 +01:00
|
|
|
name = "icoutils-0.31.0";
|
2012-01-04 10:42:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/icoutils/${name}.tar.bz2";
|
2013-12-15 23:52:40 +01:00
|
|
|
sha256 = "0wdgyfb1clrn3maq84vi4vkwjydy72p5hzk6kb9nb3a19bbxk5d8";
|
2012-01-04 10:42:38 +01:00
|
|
|
};
|
|
|
|
|
2016-07-05 17:47:34 +02:00
|
|
|
buildInputs = [ makeWrapper libpng perl ];
|
|
|
|
propagatedBuildInputs = [ perlPackages.LWP ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs extresso/extresso
|
|
|
|
patchShebangs extresso/extresso.in
|
|
|
|
patchShebangs extresso/genresscript
|
|
|
|
patchShebangs extresso/genresscript.in
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
wrapProgram $out/bin/extresso --prefix PERL5LIB : $PERL5LIB
|
|
|
|
wrapProgram $out/bin/genresscript --prefix PERL5LIB : $PERL5LIB
|
|
|
|
'';
|
2012-01-04 10:42:38 +01:00
|
|
|
|
|
|
|
meta = {
|
2012-01-04 10:47:22 +01:00
|
|
|
homepage = http://www.nongnu.org/icoutils/;
|
2016-07-05 17:47:34 +02:00
|
|
|
description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2012-01-04 10:42:38 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|