From 69e816a6707fd031ab8e2225690f4214b4b8e1e6 Mon Sep 17 00:00:00 2001 From: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> Date: Tue, 26 May 2026 16:52:29 +0530 Subject: [PATCH 1/4] Revert "helvum: drop" Reverts NixOS/nixpkgs#493796 --- pkgs/by-name/he/helvum/package.nix | 63 ++++++++++++++++++++++++++++++ pkgs/top-level/aliases.nix | 1 - 2 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 pkgs/by-name/he/helvum/package.nix diff --git a/pkgs/by-name/he/helvum/package.nix b/pkgs/by-name/he/helvum/package.nix new file mode 100644 index 000000000000..0815bab941e1 --- /dev/null +++ b/pkgs/by-name/he/helvum/package.nix @@ -0,0 +1,63 @@ +{ + lib, + cargo, + desktop-file-utils, + fetchFromGitLab, + glib, + gtk4, + libadwaita, + meson, + ninja, + pipewire, + pkg-config, + rustPlatform, + rustc, + stdenv, + wrapGAppsHook4, +}: + +stdenv.mkDerivation rec { + pname = "helvum"; + version = "0.5.1"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + owner = "pipewire"; + repo = "helvum"; + rev = version; + hash = "sha256-9vlzLPpyZ9qtCEbCDvYhWDcV+8T63ukdos1l2U6fD+E="; + }; + + cargoDeps = rustPlatform.fetchCargoVendor { + inherit pname version src; + hash = "sha256-rwhhbEaUg7IiszmJUFh4vQV7cYyyh3tqr1z4QgmwIDY="; + }; + + nativeBuildInputs = [ + meson + ninja + pkg-config + rustPlatform.cargoSetupHook + cargo + rustc + rustPlatform.bindgenHook + wrapGAppsHook4 + ]; + + buildInputs = [ + desktop-file-utils + glib + gtk4 + libadwaita + pipewire + ]; + + meta = { + description = "GTK patchbay for pipewire"; + homepage = "https://gitlab.freedesktop.org/pipewire/helvum"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fufexan ]; + platforms = lib.platforms.linux; + mainProgram = "helvum"; + }; +} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index c498269dad82..c742dc0a7772 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -946,7 +946,6 @@ mapAliases { haxe_4_0 = throw "'haxe_4_0' has been removed as it reached its end of life. Migrate to 'haxe_4_3'."; haxe_4_1 = throw "'haxe_4_1' has been removed as it reached its end of life. Migrate to 'haxe_4_3'."; helix-gpt = throw "helix-gpt was deprecated in January 2026 and has been since removed"; # Added 2026-02-05 - helvum = throw "'helvum' has been removed as it was unmaintained upstream and relied on a vulnerable dependency. Consider using 'crosspipe' instead."; # Added 2026-03-04 HentaiAtHome = throw "'HentaiAtHome' has been renamed to/replaced by 'hentai-at-home'"; # Converted to throw 2025-10-27 hiawatha = throw "hiawatha has been removed, since it is no longer actively supported upstream, nor well maintained in nixpkgs"; # Added 2025-09-10 hibernate = throw "hibernate has been removed due to lack of maintenance"; # Added 2025-09-10 From 60893277085e4b58b6932d7228a316dbf8963a8b Mon Sep 17 00:00:00 2001 From: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> Date: Tue, 26 May 2026 17:13:19 +0530 Subject: [PATCH 2/4] maintainers: add LuminarLeaf Signed-off-by: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index a3649faceb2d..2b02b077a178 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -16271,6 +16271,11 @@ githubId = 26020062; name = "lumi"; }; + luminarleaf = { + github = "LuminarLeaf"; + githubId = 80571430; + name = "Luminar Leaf"; + }; luna_1024 = { email = "contact@luna.computer"; github = "luna-1024"; From 5c2ee35d35fad1f39b7e89a9667cda848a72f989 Mon Sep 17 00:00:00 2001 From: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> Date: Tue, 26 May 2026 17:04:09 +0530 Subject: [PATCH 3/4] helvum: 0.5.1 -> 0.6.2 Signed-off-by: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> --- pkgs/by-name/he/helvum/package.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/he/helvum/package.nix b/pkgs/by-name/he/helvum/package.nix index 0815bab941e1..b282d26ea748 100644 --- a/pkgs/by-name/he/helvum/package.nix +++ b/pkgs/by-name/he/helvum/package.nix @@ -18,19 +18,19 @@ stdenv.mkDerivation rec { pname = "helvum"; - version = "0.5.1"; + version = "0.6.2"; src = fetchFromGitLab { domain = "gitlab.freedesktop.org"; owner = "pipewire"; repo = "helvum"; rev = version; - hash = "sha256-9vlzLPpyZ9qtCEbCDvYhWDcV+8T63ukdos1l2U6fD+E="; + hash = "sha256-fDsVYFJ2fm5dLpcCp7Pm4s3+jqTx4r9IQokoVQ0sM04="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-rwhhbEaUg7IiszmJUFh4vQV7cYyyh3tqr1z4QgmwIDY="; + hash = "sha256-cpRPJap/U20vkfShuTav10IoPIxDKueviFKTDM4jrGs="; }; nativeBuildInputs = [ @@ -56,7 +56,10 @@ stdenv.mkDerivation rec { description = "GTK patchbay for pipewire"; homepage = "https://gitlab.freedesktop.org/pipewire/helvum"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ fufexan ]; + maintainers = with lib.maintainers; [ + fufexan + luminarleaf + ]; platforms = lib.platforms.linux; mainProgram = "helvum"; }; From 6d1f0e0e7397d8bd41faa93e424d74ed3bf46302 Mon Sep 17 00:00:00 2001 From: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> Date: Tue, 26 May 2026 17:44:31 +0530 Subject: [PATCH 4/4] helvum: add nix-update-script Signed-off-by: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> --- pkgs/by-name/he/helvum/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/he/helvum/package.nix b/pkgs/by-name/he/helvum/package.nix index b282d26ea748..d171c3c4e9a5 100644 --- a/pkgs/by-name/he/helvum/package.nix +++ b/pkgs/by-name/he/helvum/package.nix @@ -14,6 +14,7 @@ rustc, stdenv, wrapGAppsHook4, + nix-update-script, }: stdenv.mkDerivation rec { @@ -52,6 +53,8 @@ stdenv.mkDerivation rec { pipewire ]; + passthru.updateScript = nix-update-script { }; + meta = { description = "GTK patchbay for pipewire"; homepage = "https://gitlab.freedesktop.org/pipewire/helvum";