* More Gnome stuff.

svn path=/nixpkgs/trunk/; revision=8190
This commit is contained in:
Eelco Dolstra
2007-03-05 18:52:31 +00:00
parent fb6d590e50
commit c6db5c80f9
13 changed files with 116 additions and 722 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl, perl, perlXMLSimple}:
stdenv.mkDerivation {
name = "icon-naming-utils-0.8.2";
src = fetchurl {
url = http://tango-project.org/releases/icon-naming-utils-0.8.2.tar.gz;
sha256 = "0ml00nrnd7bkdm09wdj592axwg6v6lcb9yvazc540ls8by6kkzl7";
};
buildInputs = [perl perlXMLSimple];
postInstall = "
# Add XML::Simple to the runtime search path.
substituteInPlace $out/libexec/icon-name-mapping \\
--replace '/bin/perl' '/bin/perl -I${perlXMLSimple}/lib/site_perl';
ensureDir $out/lib
ln -s $out/share/pkgconfig $out/lib/pkgconfig # WTF?
";
}