patches and low-level development discussion
 help / color / mirror / code / Atom feed
* [PATCH 01/13] pkgs: gtk3: backport fix for unset XDG_RUNTIME_DIR
@ 2025-11-26 21:33 Alyssa Ross
  2025-11-26 21:33 ` [PATCH 02/13] pkgs: s6: backport s6-softlimit -P Alyssa Ross
                   ` (12 more replies)
  0 siblings, 13 replies; 31+ messages in thread
From: Alyssa Ross @ 2025-11-26 21:33 UTC (permalink / raw)
  To: devel

As part of running services as different users we'll be giving
services dedicated places to put their sockets, rather than a single
shared directory they all need to be able to write to.

Signed-off-by: Alyssa Ross <hi@alyssa.is>
---
 pkgs/gtk3/default.nix | 13 +++++++++++++
 pkgs/overlay.nix      |  2 ++
 2 files changed, 15 insertions(+)
 create mode 100644 pkgs/gtk3/default.nix

diff --git a/pkgs/gtk3/default.nix b/pkgs/gtk3/default.nix
new file mode 100644
index 0000000..72445c9
--- /dev/null
+++ b/pkgs/gtk3/default.nix
@@ -0,0 +1,13 @@
+# SPDX-FileCopyrightText: 2025 Alyssa Ross <hi@alyssa.is>
+# SPDX-License-Identifier: MIT
+
+import ../../lib/overlay-package.nix [ "gtk3" ] ({ final, super }:
+
+super.gtk3.overrideAttrs ({ patches ? [], ... }: {
+  patches = patches ++ [
+    (final.fetchpatch {
+      url = "https://gitlab.gnome.org/GNOME/gtk/-/commit/8569e206badbee1b27ff0e27316391b8d8c3f987.patch";
+      hash = "sha256-OdBhCGtz+3HS8LRhp+GCj3dL4pntybiI9b3A3kc5+OY=";
+    })
+  ];
+}))
diff --git a/pkgs/overlay.nix b/pkgs/overlay.nix
index 0ca196c..0910bf3 100644
--- a/pkgs/overlay.nix
+++ b/pkgs/overlay.nix
@@ -4,5 +4,7 @@
 (final: super: {
   cloud-hypervisor = import ./cloud-hypervisor { inherit final super; };
 
+  gtk3 = import ./gtk3 { inherit final super; };
+
   skawarePackages = import ./skaware-packages { inherit final super; };
 })

base-commit: c43e5c63a028994d5f66a15db19f415bf3cb7736
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2025-12-02 12:31 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-26 21:33 [PATCH 01/13] pkgs: gtk3: backport fix for unset XDG_RUNTIME_DIR Alyssa Ross
2025-11-26 21:33 ` [PATCH 02/13] pkgs: s6: backport s6-softlimit -P Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:33 ` [PATCH 03/13] img/app: wayland-proxy-virtwl: move Wayland socket Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:33 ` [PATCH 04/13] img/app: wayland-proxy-virtwl: run as non-root Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:33 ` [PATCH 05/13] img/app: pipewire: move sockets out of XDG_RUNTIME_DIR Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:33 ` [PATCH 06/13] img/app: remove XDG_RUNTIME_DIR Alyssa Ross
2025-12-01  5:55   ` Demi Marie Obenour
2025-12-01 11:24     ` Alyssa Ross
2025-12-01 19:05       ` Demi Marie Obenour
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:34 ` [PATCH 07/13] img/app: wireplumber: run as non-root Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:34 ` [PATCH 08/13] img/app: pipewire: disable D-Bus Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:34 ` [PATCH 09/13] img/app: pipewire: stop fighting s6 over lockfiles Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:34 ` [PATCH 10/13] img/app: pipewire: run as non-root Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:34 ` [PATCH 11/13] img/app: dbus: create socket outside daemon Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:34 ` [PATCH 12/13] img/app: add application user Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-11-26 21:34 ` [PATCH 13/13] img/app: run applications as non-root Alyssa Ross
2025-12-01  5:58   ` Demi Marie Obenour
2025-12-01 11:31     ` Alyssa Ross
2025-12-02 12:30   ` Alyssa Ross
2025-12-02 12:30 ` [PATCH 01/13] pkgs: gtk3: backport fix for unset XDG_RUNTIME_DIR Alyssa Ross

Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/crosvm
	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/nixpkgs
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock
	https://spectrum-os.org/git/www

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).