about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-05-20 13:22:15 +0000
committerGitHub <noreply@github.com>2020-05-20 13:22:15 +0000
commitb811d52b9cde5fb1b3a91162999c0f96a730e328 (patch)
treee2ac71cb4007d2c3611bed36007a2bb12f2eca9d
parentfa65afd3ee6fffc909793c939273b629e85984b5 (diff)
parentd0e171395a08b83f0eed5fd233a98865c20af6e7 (diff)
downloadnixlib-b811d52b9cde5fb1b3a91162999c0f96a730e328.tar
nixlib-b811d52b9cde5fb1b3a91162999c0f96a730e328.tar.gz
nixlib-b811d52b9cde5fb1b3a91162999c0f96a730e328.tar.bz2
nixlib-b811d52b9cde5fb1b3a91162999c0f96a730e328.tar.lz
nixlib-b811d52b9cde5fb1b3a91162999c0f96a730e328.tar.xz
nixlib-b811d52b9cde5fb1b3a91162999c0f96a730e328.tar.zst
nixlib-b811d52b9cde5fb1b3a91162999c0f96a730e328.zip
Merge pull request #88428 from timokau/nauty-27r1
nauty: 26r12 -> 27r1
-rw-r--r--pkgs/applications/science/math/nauty/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/nauty/default.nix b/pkgs/applications/science/math/nauty/default.nix
index 64cc4a9aa003..c1d408213b98 100644
--- a/pkgs/applications/science/math/nauty/default.nix
+++ b/pkgs/applications/science/math/nauty/default.nix
@@ -4,10 +4,10 @@
 }:
 stdenv.mkDerivation rec {
   pname = "nauty";
-  version = "26r12";
+  version = "27r1";
   src = fetchurl {
     url = "http://pallini.di.uniroma1.it/nauty${version}.tar.gz";
-    sha256 = "1p4mxf8q5wm47nxyskxbqwa5p1vvkycv1zgswvnk9nsn6vff0al6";
+    sha256 = "1nym0p2djws8ylkpr0kgpxfa6fxdlh46cmvz0gn5vd02jzgs0aww";
   };
   outputs = [ "out" "dev" ];
   configureFlags = {
@@ -37,6 +37,10 @@ stdenv.mkDerivation rec {
     license = licenses.asl20;
     maintainers = with maintainers; [ raskin timokau ];
     platforms = platforms.unix;
+    # I'm not sure if the filename will remain the same for future changelog or
+    # if it will track changes to minor releases. Lets see. Better than nothing
+    # in any case.
+    changelog = "http://pallini.di.uniroma1.it/changes24-27.txt";
     homepage = "http://pallini.di.uniroma1.it/";
   };
 }