diff options
author | Thomas Gerbet <thomas@gerbet.me> | 2022-01-28 15:55:42 +0100 |
---|---|---|
committer | Thomas Gerbet <thomas@gerbet.me> | 2022-01-28 15:55:42 +0100 |
commit | 51f76a11195f67ec5160b2a799f23fc9b6b1bf2b (patch) | |
tree | e813585ef1a3ba96c5790d7e8fcf5f2455a70b0f /pkgs | |
parent | c8206d353431ef247cdfaf044323c28ddc4c2954 (diff) |
xplayer: fix the build
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/applications/video/xplayer/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/xplayer/default.nix b/pkgs/applications/video/xplayer/default.nix index a4b03e91501d..9d6a5e18ad5d 100644 --- a/pkgs/applications/video/xplayer/default.nix +++ b/pkgs/applications/video/xplayer/default.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { # the gstreamer toolsdir points to the wrong derivation output postPatch = '' substituteInPlace configure.ac \ - --replace '$gst10_toolsdir/gst-inspect-1.0' '${gstreamer.dev}/bin/gst-inspect-1.0' \ + --replace '$gst10_toolsdir/gst-inspect-1.0' '${gstreamer}/bin/gst-inspect-1.0' \ ''; preBuild = '' |