pkgs: diff-flake: do not set 'phases'

This commit is contained in:
Bruno BELANYI 2021-08-31 19:01:18 +02:00
parent 99462199bd
commit 60e977611c

View file

@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec {
src = ./diff-flake; src = ./diff-flake;
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
buildInputs = [ buildInputs = [
makeWrapper makeWrapper
shellcheck shellcheck
]; ];
dontUnpack = true;
buildPhase = '' buildPhase = ''
shellcheck $src shellcheck $src
''; '';