about summary refs log tree commit diff
path: root/pkgs/applications/science/math/fricas/default.nix
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-14 08:04:41 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-14 08:04:41 -0700
commitbf06f445ddd4bb4252304fce7811bc2027cbbe61 (patch)
tree0d8668cd7fdf4ee5596e1236fa3a26a3583cb9f7 /pkgs/applications/science/math/fricas/default.nix
parentba816ee08721d0c2f5f7e6652091bed085ac7687 (diff)
fricas: 1.3.2 -> 1.3.3
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3/bin/fricas -h` got 0 exit code
- ran `/nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3/bin/fricas -h` and found version 1.3.3
- ran `/nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3/bin/efricas --help` got 0 exit code
- found 1.3.3 with grep in /nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3
Diffstat (limited to 'pkgs/applications/science/math/fricas/default.nix')
-rw-r--r--pkgs/applications/science/math/fricas/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/fricas/default.nix b/pkgs/applications/science/math/fricas/default.nix
index 7e5233180cc6a..553905c21957b 100644
--- a/pkgs/applications/science/math/fricas/default.nix
+++ b/pkgs/applications/science/math/fricas/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:
 
 let
-  version = "1.3.2";
+  version = "1.3.3";
   name = "fricas-" + version;
 in
 stdenv.mkDerivation {
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url    = "http://sourceforge.net/projects/fricas/files/fricas/${version}/${name}-full.tar.bz2";
-    sha256 = "17a3vfvsn2idydqslf5r6z3sk6a5bdgj6z1n3dmnwmpkc4z152vr";
+    sha256 = "1avp9mbl5yn192c7kz5c2d18k33hay9lwii363b0v5hj3qgq2hhl";
   };
 
   buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];