Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ngspice: 29 -> 30 #53478

Merged
merged 1 commit into from Jan 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions pkgs/applications/science/electronics/ngspice/default.nix
@@ -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 ];
Expand Down
9 changes: 5 additions & 4 deletions pkgs/development/libraries/libngspice/default.nix
Expand Up @@ -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 ];
Expand Down