pkgs: bw-pass: do not set 'phases'

This commit is contained in:
Bruno BELANYI 2021-08-31 18:59:05 +02:00
parent 878c92b67e
commit 02ffbcf970

View file

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