Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions pkgs/by-name/gn/gnome-control-center/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
lib,
stdenv,
replaceVars,
fetchpatch,
accountsservice,
adwaita-icon-theme,
blueprint-compiler,
Expand Down Expand Up @@ -89,6 +90,15 @@ stdenv.mkDerivation (finalAttrs: {
inherit glibc tzdata shadow;
inherit cups networkmanagerapplet;
})

# fix https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/issues/39
(fetchpatch {
name = "fix-duplicated-virtual-sinks.patch";
url = "https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/commit/3e68238ed7c9d3f26f8bfaf03780f79ce7c7043e.patch";
hash = "sha256-miOtI0Y/dUCLtTU5Wckp34k1JEJ87wyoDWAt8Cc1BOI=";
stripLen = 1;
extraPrefix = "subprojects/gvc/";
})
];

nativeBuildInputs = [
Expand Down
9 changes: 9 additions & 0 deletions pkgs/by-name/gn/gnome-settings-daemon/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ stdenv.mkDerivation (finalAttrs: {
stripLen = 1;
extraPrefix = "subprojects/gvc/";
})

# fix https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/issues/39
(fetchpatch {
name = "fix-duplicated-virtual-sinks.patch";
url = "https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/commit/3e68238ed7c9d3f26f8bfaf03780f79ce7c7043e.patch";
hash = "sha256-miOtI0Y/dUCLtTU5Wckp34k1JEJ87wyoDWAt8Cc1BOI=";
stripLen = 1;
extraPrefix = "subprojects/gvc/";
})
];

depsBuildBuild = [
Expand Down
9 changes: 9 additions & 0 deletions pkgs/by-name/gn/gnome-shell/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,15 @@ stdenv.mkDerivation (finalAttrs: {
stripLen = 1;
extraPrefix = "subprojects/gvc/";
})

# fix https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/issues/39
(fetchpatch {
name = "fix-duplicated-virtual-sinks.patch";
url = "https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/commit/3e68238ed7c9d3f26f8bfaf03780f79ce7c7043e.patch";
hash = "sha256-miOtI0Y/dUCLtTU5Wckp34k1JEJ87wyoDWAt8Cc1BOI=";
stripLen = 1;
extraPrefix = "subprojects/gvc/";
})
Comment on lines +123 to +131
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is included in #490335 so this can be removed.

I'll test if the other 2 patches are needed when #490335 reaches nixos-unstable.

Mark this PR as draft for now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR seems not needed after #490335. Closing.

];

nativeBuildInputs = [
Expand Down
Loading