mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Committing patch adding verilog from Antonio Vargas Gonzalez
From his original, I adapted some spacing, and removed the release.nix reference (superfluous having set meta.platforms) svn path=/nixpkgs/trunk/; revision=24860
This commit is contained in:
parent
5b89031ff5
commit
4018d18e96
20
pkgs/applications/science/electronics/verilog/default.nix
Normal file
20
pkgs/applications/science/electronics/verilog/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{stdenv, fetchurl, gperf, flex, bison}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "verilog-0.9.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforce/${name}.tar.gz";
|
||||||
|
sha256 = "dd68c8ab874a93805d1e93fa76ee1e91fc0c7b20822ded3e57b6536cd8c0d1ba";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ gperf flex bison ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Icarus Verilog compiler";
|
||||||
|
homepage = http://www.icarus.com;
|
||||||
|
license = "GPLv2+";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [winden];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
@ -21,5 +21,6 @@
|
|||||||
simons = "Peter Simons <simons@cryp.to>";
|
simons = "Peter Simons <simons@cryp.to>";
|
||||||
urkud = "Yury G. Kudryashov <urkud+nix@ya.ru>";
|
urkud = "Yury G. Kudryashov <urkud+nix@ya.ru>";
|
||||||
viric = "Lluís Batlle i Rossell <viriketo@gmail.com>";
|
viric = "Lluís Batlle i Rossell <viriketo@gmail.com>";
|
||||||
|
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
||||||
z77z = "Marco Maggesi <maggesi@math.unifi.it>";
|
z77z = "Marco Maggesi <maggesi@math.unifi.it>";
|
||||||
}
|
}
|
||||||
|
@ -1257,6 +1257,8 @@ let
|
|||||||
inherit pciutils libx86 zlib;
|
inherit pciutils libx86 zlib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
verilog = callPackage ../applications/science/electronics/verilog {};
|
||||||
|
|
||||||
viking = callPackage ../applications/misc/viking { };
|
viking = callPackage ../applications/misc/viking { };
|
||||||
|
|
||||||
vncrec = builderDefsPackage ../tools/video/vncrec {
|
vncrec = builderDefsPackage ../tools/video/vncrec {
|
||||||
|
Loading…
Reference in New Issue
Block a user