nixpkgs/pkgs/development/libraries/libicns/default.nix

20 lines
520 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libpng, jasper }:
2012-10-07 22:22:30 +00:00
stdenv.mkDerivation rec {
name = "libicns-0.8.1";
src = fetchurl {
2012-10-07 22:22:30 +00:00
url = "mirror://sourceforge/icns/${name}.tar.gz";
sha256 = "1hjm8lwap7bjyyxsyi94fh5817xzqhk4kb5y0b7mb6675xw10prk";
};
buildInputs = [ libpng jasper ];
2018-10-17 18:45:44 +00:00
meta = with stdenv.lib; {
description = "Library for manipulation of the Mac OS icns resource format";
homepage = https://icns.sourceforge.io;
license = with licenses; [ gpl2 lgpl2 lgpl21 ];
platforms = platforms.unix;
};
}