nixpkgs/pkgs/tools/graphics/icoutils/default.nix

33 lines
976 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libpng, perl, perlPackages, makeWrapper }:
stdenv.mkDerivation rec {
2017-04-14 13:13:10 +00:00
name = "icoutils-0.31.3";
src = fetchurl {
url = "mirror://savannah/icoutils/${name}.tar.bz2";
2017-04-14 13:13:10 +00:00
sha256 = "d4651de8e3f9e28d24b5343a2b7564f49754e5fe7d211c5d4dd60dcd65c8a152";
};
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
'';
meta = {
homepage = http://www.nongnu.org/icoutils/;
description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files";
license = stdenv.lib.licenses.gpl3Plus;
2017-04-21 00:50:10 +00:00
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}