mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Fixed pkgconfig support for poppler-qt4
This commit is contained in:
parent
552d66cd9e
commit
7fec0b5832
|
@ -66,7 +66,11 @@ let
|
|||
propagatedBuildInputs = [ qt4 poppler_glib ];
|
||||
patches = qtcairo_patches;
|
||||
NIX_LDFLAGS = "-lpoppler";
|
||||
postConfigure = "cd qt4";
|
||||
postConfigure = ''
|
||||
mkdir -p "$out/lib/pkgconfig"
|
||||
install -c -m 644 poppler-qt4.pc "$out/lib/pkgconfig"
|
||||
cd qt4
|
||||
'';
|
||||
};
|
||||
|
||||
in { inherit poppler_glib poppler_qt4; } // poppler_glib
|
||||
|
|
Loading…
Reference in a new issue