forked from mirrors/nixpkgs
gtk-vnc: fix .la file
This commit is contained in:
parent
4bc436ca3a
commit
1baf402f8a
|
@ -29,6 +29,11 @@ stdenv.mkDerivation rec {
|
|||
makeFlags = stdenv.lib.optionalString (!enableGTK3)
|
||||
"CODEGENDIR=${pygobject}/share/pygobject/2.0/codegen/ DEFSDIR=${pygtk}/share/pygtk/2.0/defs/";
|
||||
|
||||
# Fix broken .la files
|
||||
preFixup = ''
|
||||
sed 's,-lgpg-error,-L${libgpgerror}/lib -lgpg-error,' -i $out/lib/*.la
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A GTK VNC widget";
|
||||
maintainers = with maintainers; [ raskin offline ];
|
||||
|
|
Loading…
Reference in a new issue