nixpkgs/pkgs/tools/graphics/icoutils/default.nix
Lluís Batlle i Rossell 855e8f45a4 Fixing a typo in the icoutils file.
svn path=/nixpkgs/trunk/; revision=31267
2012-01-04 09:47:22 +00:00

20 lines
499 B
Nix

{ stdenv, fetchurl, libpng }:
stdenv.mkDerivation rec {
name = "icoutils-0.29.1";
src = fetchurl {
url = "mirror://savannah/icoutils/${name}.tar.bz2";
sha256 = "180yqv41yc3fi6ggx7azhmaciqzadj0ir87wajigmcpgxkjk6v34";
};
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;
};
}