2012-01-04 01:42:38 -08:00
|
|
|
{ stdenv, fetchurl, libpng }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-15 14:52:40 -08:00
|
|
|
name = "icoutils-0.31.0";
|
2012-01-04 01:42:38 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/icoutils/${name}.tar.bz2";
|
2013-12-15 14:52:40 -08:00
|
|
|
sha256 = "0wdgyfb1clrn3maq84vi4vkwjydy72p5hzk6kb9nb3a19bbxk5d8";
|
2012-01-04 01:42:38 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libpng ];
|
|
|
|
|
|
|
|
meta = {
|
2012-01-04 01:47:22 -08:00
|
|
|
homepage = http://www.nongnu.org/icoutils/;
|
|
|
|
description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2012-01-04 01:42:38 -08:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|