2007-03-05 18:52:31 +00:00
|
|
|
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser
|
2008-12-02 12:27:17 +00:00
|
|
|
, iconnamingutils, gettext, intltool
|
2007-03-05 18:52:31 +00:00
|
|
|
}:
|
2005-02-26 23:45:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (input) name src;
|
2008-12-02 12:27:17 +00:00
|
|
|
buildInputs = [intltool pkgconfig perl perlXMLParser iconnamingutils gettext ];
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2008-12-02 12:27:17 +00:00
|
|
|
# the ln line can be removed because pkgconfig adds both locations
|
2007-03-05 18:52:31 +00:00
|
|
|
postInstall = "
|
|
|
|
ensureDir $out/lib
|
|
|
|
ln -s $out/share/pkgconfig $out/lib/pkgconfig # WTF?
|
|
|
|
";
|
2005-02-26 23:45:19 +00:00
|
|
|
}
|