summary refs log tree commit diff
path: root/pkgs/tools/graphics/icoutils/default.nix
blob: 10cd9adf2b3cfd43b497fb2641ea1cb944231545 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, libpng }:

stdenv.mkDerivation rec {
  name = "icoutils-0.31.0";

  src = fetchurl {
    url = "mirror://savannah/icoutils/${name}.tar.bz2";
    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;
  };
}