python-gst-python: fix pygi overrides dir path
Before it created a lib directory inside the lib directory.
This commit is contained in:
parent
9e142e5a3e
commit
23cc97f16b
|
@ -24,9 +24,9 @@ stdenv.mkDerivation rec {
|
||||||
# XXX: in the Libs.private field of python3.pc
|
# XXX: in the Libs.private field of python3.pc
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
preConfigure = ''
|
configureFlags = [
|
||||||
export configureFlags="$configureFlags --with-pygi-overrides-dir=$out/lib/${python.sitePackages}/gi/overrides"
|
"--with-pygi-overrides-dir=$(out)/${python.sitePackages}/gi/overrides"
|
||||||
'';
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
|
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue