Add PKGBUILD for nix-store-fuzzy-find

This commit is contained in:
Reinout Meliesie 2026-05-15 14:18:47 +02:00
commit e52b96a048
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6

View file

@ -0,0 +1,17 @@
# Maintainer: Reinout Meliesie <rei@kernelmaft.com>
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/"
}