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

20 lines
499 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libpng }:
stdenv.mkDerivation rec {
2013-12-15 22:52:40 +00:00
name = "icoutils-0.31.0";
src = fetchurl {
url = "mirror://savannah/icoutils/${name}.tar.bz2";
2013-12-15 22:52:40 +00:00
sha256 = "0wdgyfb1clrn3maq84vi4vkwjydy72p5hzk6kb9nb3a19bbxk5d8";
};
buildInputs = [ libpng ];
meta = {
homepage = http://www.nongnu.org/icoutils/;
description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files";
license = "GPLv3+";
platforms = with stdenv.lib.platforms; linux;
};
}