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

View file

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