.github/labeler-no-sync: fix backport labelling (#378567)
[NixPkgs.git] / pkgs / by-name / ic / iconnamingutils / package.nix
blobc85b060b4cc66b0476fb99d6a445aa438398367c
2   lib,
3   stdenv,
4   fetchurl,
5   perl,
6   librsvg,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "icon-naming-utils";
11   version = "0.8.90";
13   src = fetchurl {
14     url = "http://tango.freedesktop.org/releases/${pname}-${version}.tar.gz";
15     sha256 = "071fj2jm5kydlz02ic5sylhmw6h2p3cgrm3gwdfabinqkqcv4jh4";
16   };
18   buildInputs = [
19     librsvg
20     (perl.withPackages (p: [ p.XMLSimple ]))
21   ];
23   meta = with lib; {
24     homepage = "https://tango.freedesktop.org/Standard_Icon_Naming_Specification";
25     platforms = with platforms; linux ++ darwin;
26     license = licenses.gpl2;
27   };