20 lines
520 B
Nix
20 lines
520 B
Nix
{ stdenv, fetchurl, libpng, jasper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libicns-0.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/icns/${name}.tar.gz";
|
|
sha256 = "1hjm8lwap7bjyyxsyi94fh5817xzqhk4kb5y0b7mb6675xw10prk";
|
|
};
|
|
|
|
buildInputs = [ libpng jasper ];
|
|
|
|
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;
|
|
};
|
|
}
|