vhd2vl: apply linting suggestions

(cherry picked from commit e7235d863c397c51715a1588865f1996ecc63608)
This commit is contained in:
Jörg Thalheim 2021-06-01 07:29:13 +02:00 committed by github-actions[bot]
parent 0c6243e00f
commit d6aa85f7ff

View File

@ -30,16 +30,17 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ nativeBuildInputs = [
bison bison
flex flex
which
]; ];
buildInputs = [ buildInputs = [
verilog verilog
which
]; ];
installPhase = '' installPhase = ''
mkdir -p $out/bin runHook preInstall
cp src/vhd2vl $out/bin/ install -D -m755 src/vhd2vl $out/bin/vdh2vl
runHook postInstall
''; '';
meta = with lib; { meta = with lib; {