Merge pull request #125133 from sophrosyne97/fix_vhd2vl

vhd2vl: fix build error

authored by Jörg Thalheim and committed by GitHub 5ec2eafb 9924d923

+5 -2
+5 -2
pkgs/applications/science/electronics/vhd2vl/default.nix
··· 4 , bison 5 , flex 6 , verilog 7 }: 8 9 stdenv.mkDerivation rec { ··· 29 nativeBuildInputs = [ 30 bison 31 flex 32 ]; 33 34 buildInputs = [ ··· 36 ]; 37 38 installPhase = '' 39 - mkdir -p $out/bin 40 - cp src/vhd2vl $out/bin/ 41 ''; 42 43 meta = with lib; {
··· 4 , bison 5 , flex 6 , verilog 7 + , which 8 }: 9 10 stdenv.mkDerivation rec { ··· 30 nativeBuildInputs = [ 31 bison 32 flex 33 + which 34 ]; 35 36 buildInputs = [ ··· 38 ]; 39 40 installPhase = '' 41 + runHook preInstall 42 + install -D -m755 src/vhd2vl $out/bin/vdh2vl 43 + runHook postInstall 44 ''; 45 46 meta = with lib; {