summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-10-28 17:27:13 +0100
committerPeter Simons <simons@cryp.to>2012-10-28 17:27:13 +0100
commit29035e15a4f73f954975844e5110d7edc08797db (patch)
tree025b6cf1bf13245e4018b1e22c0af474e66b570a /pkgs/applications/science
parentb0cafe41cecb2d22042c00be51abcb77bb996de6 (diff)
downloadnixlib-29035e15a4f73f954975844e5110d7edc08797db.tar
nixlib-29035e15a4f73f954975844e5110d7edc08797db.tar.gz
nixlib-29035e15a4f73f954975844e5110d7edc08797db.tar.bz2
nixlib-29035e15a4f73f954975844e5110d7edc08797db.tar.lz
nixlib-29035e15a4f73f954975844e5110d7edc08797db.tar.xz
nixlib-29035e15a4f73f954975844e5110d7edc08797db.tar.zst
nixlib-29035e15a4f73f954975844e5110d7edc08797db.zip
ng-spice-rework: update to version 24
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/electronics/ngspice/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/science/electronics/ngspice/default.nix b/pkgs/applications/science/electronics/ngspice/default.nix
index c7ddceb6b87d..70153eee61b4 100644
--- a/pkgs/applications/science/electronics/ngspice/default.nix
+++ b/pkgs/applications/science/electronics/ngspice/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, readline, bison, libX11, libICE, libXaw, libXext}:
 
 stdenv.mkDerivation {
-  name = "ng-spice-rework-21";
+  name = "ng-spice-rework-24";
 
   src = fetchurl {
-    url = mirror://sourceforge/ngspice/ng-spice-rework-21.tar.gz;
-    sha256 = "1hmvfl33dszy8xgbixx0zmiz4rdzjhl7lwlwm953jibd4dgx42j5";
+    url = "mirror://sourceforge/ngspice/ngspice-24.tar.gz";
+    sha256 = "0rgh75hbqrsljz767whbj65wi6369yc286v0qk8jxnv2da7p9ll6";
   };
 
   buildInputs = [ readline libX11 bison libICE libXaw libXext ];
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
 
   meta = {
     description = "The Next Generation Spice (Electronic Circuit Simulator).";
-    homepage = http://ngspice.sourceforge.net;
+    homepage = "http://ngspice.sourceforge.net";
     license = ["BSD" "GPLv2"];
     maintainers = with stdenv.lib.maintainers; [viric];
     platforms = with stdenv.lib.platforms; linux;