about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/icon-naming-utils
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-20 12:49:35 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-20 12:49:35 +0000
commitc61c9dc35b873d5d26df47a8240ef6c20aa6c948 (patch)
treec07b55f14419f0a50b5705512e9eb277fef8dae0 /pkgs/development/tools/misc/icon-naming-utils
parent2cbc76177988f125c818c10e0a3fd8c018621dc8 (diff)
* Drop the "perl" prefix from Perl attribute names. It's redundant
  now that Perl packages are in their own namespace
  (perlPackages.<pkg>).

svn path=/nixpkgs/trunk/; revision=15176
Diffstat (limited to 'pkgs/development/tools/misc/icon-naming-utils')
-rw-r--r--pkgs/development/tools/misc/icon-naming-utils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/icon-naming-utils/default.nix b/pkgs/development/tools/misc/icon-naming-utils/default.nix
index fb8a863968a63..edf8b30563f4e 100644
--- a/pkgs/development/tools/misc/icon-naming-utils/default.nix
+++ b/pkgs/development/tools/misc/icon-naming-utils/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, perl, perlXMLSimple}:
+{stdenv, fetchurl, perl, XMLSimple}:
 
 stdenv.mkDerivation {
   name = "icon-naming-utils-0.8.7";
@@ -6,11 +6,11 @@ stdenv.mkDerivation {
     url = http://tango.freedesktop.org/releases/icon-naming-utils-0.8.7.tar.gz;
     sha256 = "1lj0lffdg7fjfinhrn0vsq1kj010dxlxlix4jfc969j6l3k9rd0w";
   };
-  buildInputs = [perl perlXMLSimple];
+  buildInputs = [perl XMLSimple];
   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';
+        --replace '/bin/perl' '/bin/perl -I${XMLSimple}/lib/site_perl';
     ensureDir $out/lib
     ln -s $out/share/pkgconfig $out/lib/pkgconfig # WTF?
   ";