summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-11-28 08:25:28 -0800
committerFrederik Rietdijk <fridh@fridh.nl>2019-12-01 18:43:58 +0100
commit605e88517b16bdfee891bc90c6dc2653e7eb0ec5 (patch)
tree0828c34e4a0a38604d5dbddc3ecfd2e52f245293
parent8413dbee82c42a8c8a9007ccbd9314a967d649e4 (diff)
downloadnixpkgs-605e88517b16bdfee891bc90c6dc2653e7eb0ec5.tar
nixpkgs-605e88517b16bdfee891bc90c6dc2653e7eb0ec5.tar.gz
nixpkgs-605e88517b16bdfee891bc90c6dc2653e7eb0ec5.tar.bz2
nixpkgs-605e88517b16bdfee891bc90c6dc2653e7eb0ec5.tar.lz
nixpkgs-605e88517b16bdfee891bc90c6dc2653e7eb0ec5.tar.xz
nixpkgs-605e88517b16bdfee891bc90c6dc2653e7eb0ec5.tar.zst
nixpkgs-605e88517b16bdfee891bc90c6dc2653e7eb0ec5.zip
paml: 4.9i -> 4.9j
-rw-r--r--pkgs/applications/science/biology/paml/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/science/biology/paml/default.nix b/pkgs/applications/science/biology/paml/default.nix
index fe6919656d9..731e31c588f 100644
--- a/pkgs/applications/science/biology/paml/default.nix
+++ b/pkgs/applications/science/biology/paml/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl}:
 
 stdenv.mkDerivation rec {
-  version = "4.9i";
+  version = "4.9j";
   pname = "paml";
   src = fetchurl {
     url = "http://abacus.gene.ucl.ac.uk/software/paml${version}.tgz";
-    sha256 = "1k5lcyls6c33ppp5fxl8ply2fy7i2k0gcqaifsl7gnc81d8ay4dw";
+    sha256 = "0qflf3i27x6jwks3c6q560m1q8r043ja96syah145113iz5wdalp";
   };
 
   preBuild = ''
@@ -29,6 +29,5 @@ stdenv.mkDerivation rec {
     longDescription = ''PAML is a package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. It is maintained and distributed for academic use free of charge by Ziheng Yang. ANSI C source codes are distributed for UNIX/Linux/Mac OSX, and executables are provided for MS Windows. PAML is not good for tree making. It may be used to estimate parameters and test hypotheses to study the evolutionary process, when you have reconstructed trees using other programs such as PAUP*, PHYLIP, MOLPHY, PhyML, RaxML, etc.'';
     license     = "non-commercial";
     homepage    = http://abacus.gene.ucl.ac.uk/software/paml.html;
-    broken = true;
   };
 }