mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
vhd2vl: init at unstable-2018-09-01
This commit is contained in:
parent
d3dc37ac77
commit
38aadfbbad
39
pkgs/applications/science/electronics/vhd2vl/default.nix
Normal file
39
pkgs/applications/science/electronics/vhd2vl/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, bison
|
||||
, flex
|
||||
, verilog
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vhd2vl";
|
||||
version = "unstable-2018-09-01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ldoolitt";
|
||||
repo = pname;
|
||||
rev = "37e3143395ce4e7d2f2e301e12a538caf52b983c";
|
||||
sha256 = "17va2pil4938j8c93anhy45zzgnvq3k71a7glj02synfrsv6fs8n";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
bison
|
||||
flex
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
verilog
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp src/vhd2vl $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "VHDL to Verilog converter";
|
||||
homepage = "https://github.com/ldoolitt/vhd2vl";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ matthuszagh ];
|
||||
};
|
||||
}
|
@ -7242,6 +7242,8 @@ in
|
||||
|
||||
verilog = callPackage ../applications/science/electronics/verilog {};
|
||||
|
||||
vhd2vl = callPackage ../applications/science/electronics/vhd2vl { };
|
||||
|
||||
video2midi = callPackage ../tools/audio/video2midi {
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user