Merge pull request #53478 from bgamari/bump-ngspice

ngspice: 29 -> 30
This commit is contained in:
markuskowa 2019-01-10 20:17:54 +01:00 committed by GitHub
commit b70a4b2b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 8 deletions

View File

@ -1,12 +1,13 @@
{stdenv, fetchurl, bison, flex
, readline, libX11, libICE, libXaw, libXmu, libXext, libXt, fftw }:
stdenv.mkDerivation {
name = "ngspice-29";
stdenv.mkDerivation rec {
name = "ngspice-${version}";
version = "30";
src = fetchurl {
url = "mirror://sourceforge/ngspice/ngspice-29.tar.gz";
sha256 = "0jjwz73naq7l9yhwdqbpnrfckywp2ffkppivxjv8w92zq7xhyvcd";
url = "mirror://sourceforge/ngspice/ngspice-${version}.tar.gz";
sha256 = "15v0jdfy2a2zxp8dmy04fdp7w7a4vwvffcwa688r81b86wphxzh8";
};
nativeBuildInputs = [ flex bison ];

View File

@ -2,12 +2,13 @@
# Note that this does not provide the ngspice command-line utility. For that see
# the ngspice derivation.
stdenv.mkDerivation {
name = "libngspice-29";
stdenv.mkDerivation rec {
name = "libngspice-${version}";
version = "30";
src = fetchurl {
url = "mirror://sourceforge/ngspice/ngspice-29.tar.gz";
sha256 = "0jjwz73naq7l9yhwdqbpnrfckywp2ffkppivxjv8w92zq7xhyvcd";
url = "mirror://sourceforge/ngspice/ngspice-${version}.tar.gz";
sha256 = "15v0jdfy2a2zxp8dmy04fdp7w7a4vwvffcwa688r81b86wphxzh8";
};
nativeBuildInputs = [ flex bison ];