From c547b0d10bdf20d9d5a1e4d3cdf49b01ed866148 Mon Sep 17 00:00:00 2001 From: Jeremy Stucki Date: Tue, 12 May 2026 13:48:31 +0200 Subject: [PATCH 1/2] maintainers: add jeremystucki --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 2e12985a6319..e5283f3771ea 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -12511,6 +12511,12 @@ githubId = 5741620; name = "Jeremy Schlatter"; }; + jeremystucki = { + email = "dev@jeremystucki.ch"; + github = "jeremystucki"; + githubId = 7629727; + name = "Jeremy Stucki"; + }; jerith666 = { email = "github@matt.mchenryfamily.org"; github = "jerith666"; From 9b556d8f14f87012ce74d6f54eaea0c6bbbdc655 Mon Sep 17 00:00:00 2001 From: Jeremy Stucki Date: Tue, 12 May 2026 13:48:31 +0200 Subject: [PATCH 2/2] license-plist: init at 3.27.7 --- pkgs/by-name/li/license-plist/package.nix | 46 +++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 pkgs/by-name/li/license-plist/package.nix diff --git a/pkgs/by-name/li/license-plist/package.nix b/pkgs/by-name/li/license-plist/package.nix new file mode 100644 index 000000000000..95ade33eaca5 --- /dev/null +++ b/pkgs/by-name/li/license-plist/package.nix @@ -0,0 +1,46 @@ +{ + lib, + stdenvNoCC, + fetchzip, + versionCheckHook, + nix-update-script, +}: + +stdenvNoCC.mkDerivation (finalAttrs: { + pname = "license-plist"; + version = "3.27.7"; + + __structuredAttrs = true; + strictDeps = true; + + src = fetchzip { + url = "https://github.com/mono0926/LicensePlist/releases/download/${finalAttrs.version}/portable_licenseplist.zip"; + hash = "sha256-Z8jDFRZj0s6X+edexNZ0Qx2qUC8Bm2GC9uOrKWbXtCI="; + stripRoot = false; + }; + + dontConfigure = true; + dontBuild = true; + + installPhase = '' + runHook preInstall + install -Dm755 license-plist $out/bin/license-plist + runHook postInstall + ''; + + doInstallCheck = true; + nativeInstallCheckInputs = [ versionCheckHook ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "License list generator for iOS application dependencies"; + homepage = "https://github.com/mono0926/LicensePlist"; + changelog = "https://github.com/mono0926/LicensePlist/releases/tag/${finalAttrs.version}"; + license = lib.licenses.mit; + mainProgram = "license-plist"; + maintainers = with lib.maintainers; [ jeremystucki ]; + platforms = lib.platforms.darwin; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + }; +})