2018-03-22 21:58:57 +00:00
|
|
|
{stdenv, fetchurl, bison, flex, fftw}:
|
|
|
|
|
|
|
|
# Note that this does not provide the ngspice command-line utility. For that see
|
|
|
|
# the ngspice derivation.
|
2019-01-03 21:16:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libngspice";
|
2019-12-24 00:35:21 +00:00
|
|
|
version = "31";
|
2018-03-22 21:58:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-03 21:16:51 +00:00
|
|
|
url = "mirror://sourceforge/ngspice/ngspice-${version}.tar.gz";
|
2019-12-24 00:35:21 +00:00
|
|
|
sha256 = "10n2lnfrpsv4vyrirkphr4jwjjhy7i617g6za78dwirfjq63npw4";
|
2018-03-22 21:58:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
buildInputs = [ fftw ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-ngshared" "--enable-xspice" "--enable-cider" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The Next Generation Spice (Electronic Circuit Simulator)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ngspice.sourceforge.net";
|
2018-11-29 11:12:41 +00:00
|
|
|
license = with licenses; [ bsd3 gpl2Plus lgpl2Plus ]; # See https://sourceforge.net/p/ngspice/ngspice/ci/master/tree/COPYING
|
2018-03-22 21:58:57 +00:00
|
|
|
maintainers = with maintainers; [ bgamari ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|