summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-01-29 17:25:33 +0800
committerGitHub <noreply@github.com>2022-01-29 17:25:33 +0800
commit1d389b20d380bd08d406a1c77bb45fab660b6fc2 (patch)
treeba96cfd6e2dc78162084c305797b471bf09fc49a
parent8ed5c9e7b15b96a02f5fbbec9ca98f090b552534 (diff)
parent51f76a11195f67ec5160b2a799f23fc9b6b1bf2b (diff)
downloadnixpkgs-1d389b20d380bd08d406a1c77bb45fab660b6fc2.tar
nixpkgs-1d389b20d380bd08d406a1c77bb45fab660b6fc2.tar.gz
nixpkgs-1d389b20d380bd08d406a1c77bb45fab660b6fc2.tar.bz2
nixpkgs-1d389b20d380bd08d406a1c77bb45fab660b6fc2.tar.lz
nixpkgs-1d389b20d380bd08d406a1c77bb45fab660b6fc2.tar.xz
nixpkgs-1d389b20d380bd08d406a1c77bb45fab660b6fc2.tar.zst
nixpkgs-1d389b20d380bd08d406a1c77bb45fab660b6fc2.zip
Merge pull request #157153 from LeSuisse/xplayer-fix-build
xplayer: fix the build
-rw-r--r--pkgs/applications/video/xplayer/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/xplayer/default.nix b/pkgs/applications/video/xplayer/default.nix
index a4b03e91501..9d6a5e18ad5 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 = ''