pkgs: comma: do not set 'phases'

This commit is contained in:
Bruno BELANYI 2021-08-31 19:00:46 +02:00
parent 4fe18ff4cd
commit 99462199bd
1 changed files with 2 additions and 2 deletions

View File

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