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
1 changed files with 2 additions and 2 deletions

View File

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