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 '' ; }