summary refs log tree commit diff
path: root/pkgs/applications/science/math
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-17 02:02:11 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-03-17 02:02:11 -0500
commite2d12274c27205e7847ea1e02664119371aa3e22 (patch)
treeb5ea6f9e1e8c641e4fb43772e009cb9dd4e6dba4 /pkgs/applications/science/math
parent9c8137ca81fec5db81e0b9dc28055fa02548eeae (diff)
downloadnixlib-e2d12274c27205e7847ea1e02664119371aa3e22.tar
nixlib-e2d12274c27205e7847ea1e02664119371aa3e22.tar.gz
nixlib-e2d12274c27205e7847ea1e02664119371aa3e22.tar.bz2
nixlib-e2d12274c27205e7847ea1e02664119371aa3e22.tar.lz
nixlib-e2d12274c27205e7847ea1e02664119371aa3e22.tar.xz
nixlib-e2d12274c27205e7847ea1e02664119371aa3e22.tar.zst
nixlib-e2d12274c27205e7847ea1e02664119371aa3e22.zip
jags: 4.1.0 -> 4.3.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 4.3.0 with grep in /nix/store/aw897502z5bcn6dw6rp7jca90flfrjab-JAGS-4.3.0
Diffstat (limited to 'pkgs/applications/science/math')
-rw-r--r--pkgs/applications/science/math/jags/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/jags/default.nix b/pkgs/applications/science/math/jags/default.nix
index a30343dd0b9e..2925e601e32b 100644
--- a/pkgs/applications/science/math/jags/default.nix
+++ b/pkgs/applications/science/math/jags/default.nix
@@ -1,10 +1,10 @@
 {stdenv, fetchurl, gfortran, openblas}:
 
 stdenv.mkDerivation rec {
-  name = "JAGS-4.1.0";
+  name = "JAGS-4.3.0";
   src = fetchurl {
     url = "mirror://sourceforge/mcmc-jags/${name}.tar.gz";
-    sha256 = "08pmrnbwibc0brgn5cx860jcl0s2xaw4amw7g45649r1bcdz7v25";
+    sha256 = "1z3icccg2ic56vmhyrpinlsvpq7kcaflk1731rgpvz9bk1bxvica";
   };
   buildInputs = [gfortran openblas];
   configureFlags = [ "--with-blas=-lopenblas" "--with-lapack=-lopenblas" ];