added ngspice

svn path=/nixpkgs/trunk/; revision=12686
This commit is contained in:
Marc Weber 2008-08-21 20:43:53 +00:00
parent a98da2c748
commit 2d354aa6f1
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,17 @@
args:
args.stdenv.mkDerivation {
name = "ng-spice-rework-15c";
src = args.fetchurl {
url = mirror://sourceforge/ngspice/ng-spice-rework-15c.tar.gz;
sha256 = "0v0pbdc54ra0s98dz6mhj80n333ggbn4xpf53vi66sd02hcjblmg";
};
buildInputs =(with args; [readline]);
meta = {
description = "The Next Generation Spice (Electronic Circuit Simulator).";
homepage = http://ngspice.sourceforge.net;
license = ["BSD" "GPLv2"];
};
}

View File

@ -7195,6 +7195,12 @@ let pkgs = rec {
inherit fetchurl stdenv ocaml ncurses;
};
### SCIENCE / ELECTRONICS
ngspice = import ../applications/science/electronics/ngspice {
inherit fetchurl stdenv readline;
};
### MISC
atari800 = import ../misc/emulators/atari800 {