From 799ed91e24b276d87c7504c6e82486ab77c26595 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Fri, 15 May 2026 14:14:53 +0200 Subject: [PATCH 1/2] Remove systemd from PKGBUILD deps as it's part of core --- journalctl-last-invocation/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/journalctl-last-invocation/PKGBUILD b/journalctl-last-invocation/PKGBUILD index d65a391..1637147 100644 --- a/journalctl-last-invocation/PKGBUILD +++ b/journalctl-last-invocation/PKGBUILD @@ -7,7 +7,7 @@ pkgdesc='Small utility to show systemd journal entries only for the last invocat arch=(any) url='https://kernelmaft.com/forgejo/zedfrigg/linux-utils' license=(GPL-3.0-only) -depends=(systemd zsh) +depends=(zsh) source=(journalctl-last-invocation) sha256sums=(SKIP) From e52b96a04845fef6c0c91e2e786ead24fba8f242 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Fri, 15 May 2026 14:18:47 +0200 Subject: [PATCH 2/2] Add PKGBUILD for nix-store-fuzzy-find --- nix-store-fuzzy-find/PKGBUILD | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nix-store-fuzzy-find/PKGBUILD diff --git a/nix-store-fuzzy-find/PKGBUILD b/nix-store-fuzzy-find/PKGBUILD new file mode 100644 index 0000000..f5a944c --- /dev/null +++ b/nix-store-fuzzy-find/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Reinout Meliesie + +pkgname=nix-store-fuzzy-find +pkgver=20260515 +pkgrel=1 +pkgdesc='Small utility to find Nix store entries by name.' +arch=(any) +url='https://kernelmaft.com/forgejo/zedfrigg/linux-utils' +license=(GPL-3.0-only) +depends=(nix zsh) +source=(nix-store-fuzzy-find) +sha256sums=(SKIP) + +package() { + mkdir -p "$pkgdir/usr/bin/" + install nix-store-fuzzy-find "$pkgdir/usr/bin/" +}