Skip to content

Commit

Permalink
python-gst-python: fix pygi overrides dir path
Browse files Browse the repository at this point in the history
Before it created a lib directory inside the lib directory.

(cherry picked from commit 23cc97f)
  • Loading branch information
rycee authored and FRidh committed Sep 8, 2017
1 parent 8926c06 commit 399101c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/gst-python/default.nix
Expand Up @@ -24,9 +24,9 @@ stdenv.mkDerivation rec {
# XXX: in the Libs.private field of python3.pc
buildInputs = [ ncurses ];

preConfigure = ''
export configureFlags="$configureFlags --with-pygi-overrides-dir=$out/lib/${python.sitePackages}/gi/overrides"
'';
configureFlags = [
"--with-pygi-overrides-dir=$(out)/${python.sitePackages}/gi/overrides"
];

propagatedBuildInputs = [ gst-plugins-base pygobject3 ];

Expand Down

0 comments on commit 399101c

Please sign in to comment.