nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5 perl,
6 librsvg,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "icon-naming-utils";
11 version = "0.8.90";
12
13 src = fetchurl {
14 url = "http://tango.freedesktop.org/releases/${pname}-${version}.tar.gz";
15 sha256 = "071fj2jm5kydlz02ic5sylhmw6h2p3cgrm3gwdfabinqkqcv4jh4";
16 };
17
18 buildInputs = [
19 librsvg
20 (perl.withPackages (p: [ p.XMLSimple ]))
21 ];
22
23 meta = {
24 homepage = "https://tango.freedesktop.org/Standard_Icon_Naming_Specification";
25 platforms = with lib.platforms; linux ++ darwin;
26 license = lib.licenses.gpl2;
27 };
28}