2021-02-24 19:53:45 +00:00
|
|
|
{lib, stdenv, fetchurl, perl, librsvg}:
|
2007-03-05 18:52:31 +00:00
|
|
|
|
2009-11-04 21:44:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 10:34:30 +00:00
|
|
|
pname = "icon-naming-utils";
|
|
|
|
version = "0.8.90";
|
2009-04-22 23:04:18 +00:00
|
|
|
|
2007-03-05 18:52:31 +00:00
|
|
|
src = fetchurl {
|
2021-06-20 10:34:30 +00:00
|
|
|
url = "http://tango.freedesktop.org/releases/${pname}-${version}.tar.gz";
|
2009-11-04 21:44:01 +00:00
|
|
|
sha256 = "071fj2jm5kydlz02ic5sylhmw6h2p3cgrm3gwdfabinqkqcv4jh4";
|
2007-03-05 18:52:31 +00:00
|
|
|
};
|
2018-11-08 19:33:03 +00:00
|
|
|
|
2021-02-24 19:53:45 +00:00
|
|
|
buildInputs = [ librsvg (perl.withPackages (p: [ p.XMLSimple ])) ];
|
2009-11-04 21:44:01 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://tango.freedesktop.org/Standard_Icon_Naming_Specification";
|
2017-04-17 21:43:03 +00:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2018-11-08 19:33:03 +00:00
|
|
|
license = licenses.gpl2;
|
2009-11-04 21:44:01 +00:00
|
|
|
};
|
2007-03-05 18:52:31 +00:00
|
|
|
}
|