forked from mirrors/nixpkgs
added ngspice
svn path=/nixpkgs/trunk/; revision=12686
This commit is contained in:
parent
a98da2c748
commit
2d354aa6f1
17
pkgs/applications/science/electronics/ngspice/default.nix
Normal file
17
pkgs/applications/science/electronics/ngspice/default.nix
Normal 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"];
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue