11 stdenv.mkDerivation rec {
13 version = "unstable-2022-12-26";
15 src = fetchFromGitHub {
18 rev = "869d442987dff6b9730bc90563ede89c1abfd28f";
19 sha256 = "sha256-Hz2XkT5m4ri5wVR2ciL9Gx73zr+RdW5snjWnUg300c8=";
32 # the "translate" target both (a) builds the software and (b) runs
33 # the tests (without validating the results)
34 buildTargets = [ "translate" ];
36 # the "diff" target examines the test results
41 install -D -m755 src/vhd2vl $out/bin/vhd2vl
46 description = "VHDL to Verilog converter";
47 mainProgram = "vhd2vl";
48 homepage = "https://github.com/ldoolitt/vhd2vl";
49 license = licenses.gpl2Plus;
50 maintainers = with maintainers; [ matthuszagh ];