mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
20 lines
519 B
Nix
20 lines
519 B
Nix
{ 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 = stdenv.lib.licenses.gpl3Plus;
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|