From a7d6810c93411e3e70f28442bd0e1c4bcdf5fda9 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Sat, 15 Mar 2025 13:34:31 +0100 Subject: [PATCH] Specify phases in nix-store-fuzzy-find package expression explicitly --- packages/nix-store-fuzzy-find/package.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/packages/nix-store-fuzzy-find/package.nix b/packages/nix-store-fuzzy-find/package.nix index 98d8bcd..6230900 100644 --- a/packages/nix-store-fuzzy-find/package.nix +++ b/packages/nix-store-fuzzy-find/package.nix @@ -10,14 +10,9 @@ mkDerivation { pname = "nix-store-fuzzy-find" ; version = "2025-03-09" ; - dontUnpack = true ; - dontPatch = true ; - dontConfigure = true ; - dontBuild = true ; + phases = [ "installPhase" ] ; installPhase = '' - runHook preInstall - mkdir -p $out/bin cat <<- EOF > $out/bin/nix-store-fuzzy-find @@ -28,7 +23,5 @@ mkDerivation { # TODO: Check if Nix does this for us chmod +x $out/bin/* - - runHook postInstall '' ; }