lol

nix-script: remove phases (#130742)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Felix Bühler
Sandro
and committed by
GitHub
6cafd781 2e09265a

+8 -1
+8 -1
pkgs/tools/nix/nix-script/default.nix
··· 15 15 (haskellPackages.ghcWithPackages (hs: with hs; [ posix-escape ])) 16 16 ]; 17 17 18 - phases = [ "buildPhase" "installPhase" "fixupPhase" ]; 19 18 buildPhase = '' 19 + runHook preBuild 20 + 20 21 mkdir -p $out/bin 21 22 ghc -O2 $src/nix-script.hs -o $out/bin/nix-script -odir . -hidir . 23 + 24 + runHook postBuild 22 25 ''; 23 26 installPhase = '' 27 + runHook preInstall 28 + 24 29 ln -s $out/bin/nix-script $out/bin/nix-scripti 30 + 31 + runHook postInstall 25 32 ''; 26 33 27 34 meta = with lib; {