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:
parent
9ad9ad86a4
commit
2d544307e5
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue