nixpkgs/pkgs/desktops/gnome/gnome-icon-theme.nix
Marc Weber 48f11e576b update of gnomeicontheme
svn path=/nixpkgs/trunk/; revision=13548
2008-12-02 12:27:17 +00:00

15 lines
408 B
Nix

{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser
, iconnamingutils, gettext, intltool
}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [intltool pkgconfig perl perlXMLParser iconnamingutils gettext ];
# the ln line can be removed because pkgconfig adds both locations
postInstall = "
ensureDir $out/lib
ln -s $out/share/pkgconfig $out/lib/pkgconfig # WTF?
";
}