summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-18 13:40:49 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-18 22:40:49 +0200
commitd97f7d3b890086cae07bcbd778c6bd813f16f941 (patch)
tree1ae3beaed185808350f3efbf32e42b5c5d4631d0 /pkgs/applications
parentf8cef0d06e39728497f4109855f46b8cc6d4f7db (diff)
downloadnixlib-d97f7d3b890086cae07bcbd778c6bd813f16f941.tar
nixlib-d97f7d3b890086cae07bcbd778c6bd813f16f941.tar.gz
nixlib-d97f7d3b890086cae07bcbd778c6bd813f16f941.tar.bz2
nixlib-d97f7d3b890086cae07bcbd778c6bd813f16f941.tar.lz
nixlib-d97f7d3b890086cae07bcbd778c6bd813f16f941.tar.xz
nixlib-d97f7d3b890086cae07bcbd778c6bd813f16f941.tar.zst
nixlib-d97f7d3b890086cae07bcbd778c6bd813f16f941.zip
raxml: 8.2.11 -> 8.2.12 (#41964)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/RAxML/versions.

These checks were done:

- built on NixOS
- /nix/store/w8iy7fvdwhjw7zx1dkga3v56fz59s7r8-RAxML-8.2.12/bin/raxmlHPC-PTHREADS-SSE3 passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 8.2.12 with grep in /nix/store/w8iy7fvdwhjw7zx1dkga3v56fz59s7r8-RAxML-8.2.12
- directory tree listing: https://gist.github.com/8a2b70b299e53bfee9f18d2ab8cd5f9f
- du listing: https://gist.github.com/02803409663f19671adc6be233a327fd
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/biology/raxml/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/biology/raxml/default.nix b/pkgs/applications/science/biology/raxml/default.nix
index 0bac6c778049..efe19a4e2b6e 100644
--- a/pkgs/applications/science/biology/raxml/default.nix
+++ b/pkgs/applications/science/biology/raxml/default.nix
@@ -7,14 +7,14 @@
 
 stdenv.mkDerivation rec {
   pname = "RAxML";
-  version = "8.2.11";
+  version = "8.2.12";
   name = "${pname}-${version}";
 
   src = fetchFromGitHub {
     owner = "stamatak";
     repo = "standard-${pname}";
     rev = "v${version}";
-    sha256 = "08fmqrr7y5a2fmmrgfz2p0hmn4mn71l5yspxfcwwsqbw6vmdfkhg";
+    sha256 = "1jqjzhch0rips0vp04prvb8vmc20c5pdmsqn8knadcf91yy859fh";
   };
 
   buildInputs = if mpi then [ pkgs.openmpi ] else [];