Updating ngspice
svn path=/nixpkgs/trunk/; revision=22364
This commit is contained in:
parent
74d75bdd6c
commit
99a94a777b
@ -1,17 +1,22 @@
|
||||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "ng-spice-rework-15c";
|
||||
{stdenv, fetchurl, readline, bison, libX11, libICE, libXaw, libXext}:
|
||||
|
||||
src = args.fetchurl {
|
||||
url = mirror://sourceforge/ngspice/ng-spice-rework-15c.tar.gz;
|
||||
sha256 = "0v0pbdc54ra0s98dz6mhj80n333ggbn4xpf53vi66sd02hcjblmg";
|
||||
stdenv.mkDerivation {
|
||||
name = "ng-spice-rework-21";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/ngspice/ng-spice-rework-21.tar.gz;
|
||||
sha256 = "1hmvfl33dszy8xgbixx0zmiz4rdzjhl7lwlwm953jibd4dgx42j5";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [readline]);
|
||||
buildInputs = [ readline libX11 bison libICE libXaw libXext ];
|
||||
|
||||
configureFlags = [ "--enable-x" "--with-x" "--with-readline" ];
|
||||
|
||||
meta = {
|
||||
description = "The Next Generation Spice (Electronic Circuit Simulator).";
|
||||
homepage = http://ngspice.sourceforge.net;
|
||||
license = ["BSD" "GPLv2"];
|
||||
description = "The Next Generation Spice (Electronic Circuit Simulator).";
|
||||
homepage = http://ngspice.sourceforge.net;
|
||||
license = ["BSD" "GPLv2"];
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
|
@ -9543,7 +9543,8 @@ let
|
||||
### SCIENCE / ELECTRONICS
|
||||
|
||||
ngspice = import ../applications/science/electronics/ngspice {
|
||||
inherit fetchurl stdenv readline;
|
||||
inherit fetchurl stdenv readline bison;
|
||||
inherit (xlibs) libX11 libICE libXaw libXext;
|
||||
};
|
||||
|
||||
gtkwave = import ../applications/science/electronics/gtkwave {
|
||||
|
Loading…
Reference in New Issue
Block a user