about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libicns/default.nix
blob: 298d6124505c12493a667df2d17c1d36a1e1f1b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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;
  };
}