mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
bdbf926017
Address: https://mail.gnome.org/archives/distributor-list/2020-September/msg00001.html gnome3.gnome-{control-center,settings-daemon,shell} ship within their tarball a copy of lignome-volume-control in the `subprojects/gvc/`. This commit makes them use an updated version of it, which supports Modern laptops with SOF for audio. Close #98470.
17 lines
490 B
Nix
17 lines
490 B
Nix
{ fetchFromGitLab }:
|
|
|
|
let
|
|
# We need a gvc different then that which is shipped in the source tarball of
|
|
# whatever package that imports this file
|
|
gvc-src-with-ucm = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "GNOME";
|
|
repo = "libgnome-volume-control";
|
|
rev = "7a621180b46421e356b33972e3446775a504139c";
|
|
sha256 = "07rkgh9f7qcmlpy6jqh944axzh3z38f47g48ii842f2i3a1mrbw9";
|
|
};
|
|
in
|
|
''
|
|
rm -r ./subprojects/gvc
|
|
cp -r ${gvc-src-with-ucm} ./subprojects/gvc
|
|
''
|