Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{lib, stdenv, fetchurl, perl, librsvg}:
2
3stdenv.mkDerivation rec {
4 pname = "icon-naming-utils";
5 version = "0.8.90";
6
7 src = fetchurl {
8 url = "http://tango.freedesktop.org/releases/${pname}-${version}.tar.gz";
9 sha256 = "071fj2jm5kydlz02ic5sylhmw6h2p3cgrm3gwdfabinqkqcv4jh4";
10 };
11
12 buildInputs = [ librsvg (perl.withPackages (p: [ p.XMLSimple ])) ];
13
14 meta = with lib; {
15 homepage = "http://tango.freedesktop.org/Standard_Icon_Naming_Specification";
16 platforms = with platforms; linux ++ darwin;
17 license = licenses.gpl2;
18 };
19}