From 283ef8edc69d5a578169a83f9cf739e7560a0116 Mon Sep 17 00:00:00 2001 From: Lee Bousfield Date: Tue, 11 Nov 2025 09:16:27 -0600 Subject: [PATCH 1/3] maintainers: add PlasmaPower --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index f9e18e1cd249..13e9869f021a 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -20600,6 +20600,13 @@ github = "plamper"; githubId = 59016721; }; + PlasmaPower = { + name = "Lee Bousfield"; + github = "PlasmaPower"; + githubId = 6006498; + email = "ljbousfield+nix@gmail.com"; + matrix = "@plasmapower:matrix.org"; + }; plchldr = { email = "mail@oddco.de"; github = "plchldr"; From f46ecab30917a11ce8dd2678b37ee9c7a8d32c5f Mon Sep 17 00:00:00 2001 From: Lee Bousfield Date: Tue, 11 Nov 2025 09:18:30 -0600 Subject: [PATCH 2/3] libbytesize: adopt by PlasmaPower --- pkgs/by-name/li/libbytesize/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/li/libbytesize/package.nix b/pkgs/by-name/li/libbytesize/package.nix index d0a91f8d9dcc..e83def645769 100644 --- a/pkgs/by-name/li/libbytesize/package.nix +++ b/pkgs/by-name/li/libbytesize/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Tiny library providing a C 'class' for working with arbitrary big sizes in bytes"; license = lib.licenses.lgpl2Plus; mainProgram = "bscalc"; - maintainers = [ ]; + maintainers = [ lib.maintainers.PlasmaPower ]; platforms = lib.platforms.linux; }; }) From 5417584e11677a957bf08b2f5fdc1377ee4d32f0 Mon Sep 17 00:00:00 2001 From: Lee Bousfield Date: Tue, 11 Nov 2025 09:18:45 -0600 Subject: [PATCH 3/3] libbytesize: add update script --- pkgs/by-name/li/libbytesize/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/li/libbytesize/package.nix b/pkgs/by-name/li/libbytesize/package.nix index e83def645769..dd0f0e59dbca 100644 --- a/pkgs/by-name/li/libbytesize/package.nix +++ b/pkgs/by-name/li/libbytesize/package.nix @@ -9,6 +9,7 @@ gtk-doc, libxslt, mpfr, + nix-update-script, pcre2, pkg-config, python3Packages, @@ -67,6 +68,8 @@ stdenv.mkDerivation (finalAttrs: { pythonImportsCheck = [ "bytesize" ]; + passthru.updateScript = nix-update-script { }; + meta = { homepage = "https://github.com/storaged-project/libbytesize"; description = "Tiny library providing a C 'class' for working with arbitrary big sizes in bytes";