pipewire: apply patch providing absolute path to pipewire-media-session

So pipewire-daemon is able to locate pipewire-media-session (which it's
executing).

Context: https://github.com/NixOS/nixpkgs/issues/89528#issuecomment-640013433
This commit is contained in:
Florian Klink 2020-06-06 10:55:27 +02:00
parent 9ad9ad86a4
commit 2d544307e5

View file

@ -1,5 +1,6 @@
{ stdenv
, fetchFromGitLab
, fetchpatch
, meson
, ninja
, pkgconfig
@ -44,6 +45,13 @@ stdenv.mkDerivation rec {
sha256 = "0g149vyaigf4gzm764fcgxxci9niw19z0af9afs4diwq5xzr1qd3";
};
patches = [ (fetchpatch {
# Brought by https://gitlab.freedesktop.org/pipewire/pipewire/-/merge_requests/263,
# should be part of > 0.3.6
url = "https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/d1162f28efd502fcb973e172867970f5cc8d7a6b.patch";
sha256 = "0ng34yin5726cvv0nll1b2xigyq6mj6j516l3xi0ys1i2g2fyby9";
})];
nativeBuildInputs = [
doxygen
graphviz