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

Commits on Jun 15, 2017

  1. Copy the full SHA
    901069c View commit details
  2. Merge pull request #26597 from Zimmi48/update_ppx_tools_versioned

    ocamlPackages.ppx_tools_versioned: 5.0alpha -> 5.0.1
    Mic92 authored Jun 15, 2017
    Copy the full SHA
    9698439 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.0alpha";
version = "5.0.1";

minimumSupportedOcamlVersion = "4.02";

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

propagatedBuildInputs = [ ocaml-migrate-parsetree ];