2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchurl, bison, flex, fftw}:
|
2018-03-22 21:58:57 +00:00
|
|
|
|
|
|
|
# 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";
|
2021-02-05 04:42:25 +00:00
|
|
|
version = "34";
|
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";
|
2021-02-05 04:42:25 +00:00
|
|
|
sha256 = "sha256-ImP//GaUdUlyr3By7wHP5irHkIANrWUbwpC/yueb17U=";
|
2018-03-22 21:58:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
buildInputs = [ fftw ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-ngshared" "--enable-xspice" "--enable-cider" ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-03-22 21:58:57 +00:00
|
|
|
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 ];
|
2020-08-15 17:53:54 +01:00
|
|
|
platforms = platforms.unix;
|
2018-03-22 21:58:57 +00:00
|
|
|
};
|
|
|
|
}
|