nauty: 2.9.0 -> 2.9.1 (#441211)

authored by Mauricio Collares and committed by GitHub b5f88415 baa35658

+5 -7
+5 -7
pkgs/by-name/na/nauty/package.nix
··· 5 }: 6 stdenv.mkDerivation rec { 7 pname = "nauty"; 8 - version = "2.9.0"; 9 10 src = fetchurl { 11 url = "https://pallini.di.uniroma1.it/nauty${ 12 builtins.replaceStrings [ "." ] [ "_" ] version 13 }.tar.gz"; 14 - sha256 = "sha256-eziDTHzv4X0l4F7vHvOIL6nNGTP1grnrnedHdBGVYFM="; 15 }; 16 17 outputs = [ ··· 19 "dev" 20 ]; 21 22 - # HACK: starting from 2.9.0, the makefile tries to copy .libs/*.a files unconditionally 23 dontDisableStatic = true; 24 25 configureFlags = [ ··· 50 license = licenses.asl20; 51 teams = [ teams.sage ]; 52 platforms = platforms.unix; 53 - # I'm not sure if the filename will remain the same for future changelog or 54 - # if it will track changes to minor releases. Lets see. Better than nothing 55 - # in any case. 56 - changelog = "https://pallini.di.uniroma1.it/changes24-28.txt"; 57 homepage = "https://pallini.di.uniroma1.it/"; 58 }; 59 }
··· 5 }: 6 stdenv.mkDerivation rec { 7 pname = "nauty"; 8 + version = "2.9.1"; 9 10 src = fetchurl { 11 url = "https://pallini.di.uniroma1.it/nauty${ 12 builtins.replaceStrings [ "." ] [ "_" ] version 13 }.tar.gz"; 14 + sha256 = "sha256-SI+pBtEKNyxy0jZMXe5I4PcwcAT75SwrzlDFLejNhz4="; 15 }; 16 17 outputs = [ ··· 19 "dev" 20 ]; 21 22 + # HACK: starting from 2.8.9, the makefile tries to copy .libs/*.a files unconditionally 23 dontDisableStatic = true; 24 25 configureFlags = [ ··· 50 license = licenses.asl20; 51 teams = [ teams.sage ]; 52 platforms = platforms.unix; 53 + # The filename may change for future changelogs. Better than nothing in any case. 54 + changelog = "https://pallini.di.uniroma1.it/changes24-2${lib.versions.minor version}.txt"; 55 homepage = "https://pallini.di.uniroma1.it/"; 56 }; 57 }