c6db5c80f9
svn path=/nixpkgs/trunk/; revision=8190
14 lines
319 B
Nix
14 lines
319 B
Nix
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser
|
|
, iconnamingutils, gettext
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig perl perlXMLParser iconnamingutils gettext];
|
|
|
|
postInstall = "
|
|
ensureDir $out/lib
|
|
ln -s $out/share/pkgconfig $out/lib/pkgconfig # WTF?
|
|
";
|
|
}
|