Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fa65afd3ee6f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b811d52b9cde
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on May 20, 2020

  1. nauty: add meta.changelog

    timokau committed May 20, 2020
    Copy the full SHA
    a276c44 View commit details
  2. Copy the full SHA
    d0e1713 View commit details
  3. Merge pull request #88428 from timokau/nauty-27r1

    nauty: 26r12 -> 27r1
    timokau authored May 20, 2020
    Copy the full SHA
    b811d52 View commit details
Showing with 6 additions and 2 deletions.
  1. +6 −2 pkgs/applications/science/math/nauty/default.nix
8 changes: 6 additions & 2 deletions pkgs/applications/science/math/nauty/default.nix
Original file line number Diff line number Diff line change
@@ -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/";
};
}