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