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