Use conventional Nix formatting

Also always end comments with a full stop, and bump package versions.
This commit is contained in:
Reinout Meliesie 2026-04-29 16:09:15 +02:00
commit 99885b2be2
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
4 changed files with 36 additions and 36 deletions

View file

@ -1,16 +1,16 @@
{ pkgs , stdenv } :
{ pkgs, stdenv }:
with pkgs ;
with stdenv ;
with pkgs;
with stdenv;
mkDerivation {
pname = "nix-store-fuzzy-find" ;
version = "2025-03-09" ;
pname = "nix-store-fuzzy-find";
version = "2026-04-29";
phases = [ "createSourcesPhase" "installPhase" ] ;
phases = [ "createSourcesPhase" "installPhase" ];
createSourcesPhase = ''
# Same directory structure that `unpackPhase` would use
# Same directory structure that `unpackPhase` would use.
mkdir -p /build/source
cat <<- EOF > /build/source/nix-store-fuzzy-find
@ -18,7 +18,7 @@ mkDerivation {
exec ${findutils}/bin/find /nix/store -maxdepth 1 -type d -name "*-\$1-*"
EOF
'' ;
'';
installPhase = ''
mkdir -p $out/bin
@ -26,5 +26,5 @@ mkDerivation {
cp /build/source/nix-store-fuzzy-find $out/bin/
chmod +x $out/bin/nix-store-fuzzy-find
'' ;
'';
}