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: 8dd875c32477
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 160972a91877
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 21, 2018

  1. ocamlPackages.ppx_tools_versioned: 5.0.1 -> 5.1

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 5.1 with grep in /nix/store/6bf2nw21lnwsmdy72z7vcwsx7ipvsmmy-ocaml-ppx_tools_versioned-5.1
    - directory tree listing: https://gist.github.com/769030f036fe6d5816eb1c77cdd9ecd0
    ryantm committed Mar 21, 2018
    Copy the full SHA
    6de74b0 View commit details

Commits on Apr 9, 2018

  1. Merge pull request #37531 from ryantm/auto-update/ocaml-ppx_tools_ver…

    …sioned
    
    ocamlPackages.ppx_tools_versioned: 5.0.1 -> 5.1
    matthewbauer authored Apr 9, 2018
    Copy the full SHA
    160972a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

buildOcaml rec {
name = "ppx_tools_versioned";
version = "5.0.1";
version = "5.1";

minimumSupportedOcamlVersion = "4.02";

src = fetchFromGitHub {
owner = "let-def";
repo = "ppx_tools_versioned";
rev = version;
sha256 = "1rpbxbhk3k7f61h7lr4qkllkc12gjpq0rg52q7i6hcrg2dxkhwh6";
sha256 = "1c7kvca67qpyr4hiy492yik5x31lmkhyhy5wpl0l0fbx7fr7l624";
};

propagatedBuildInputs = [ ocaml-migrate-parsetree ];