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

Commits on Mar 18, 2019

  1. dune: 1.6.2 -> 1.8.2

    vbgl committed Mar 18, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    vbgl Vincent Laporte
    Copy the full SHA
    9af5a9a View commit details

Commits on Mar 19, 2019

  1. Merge pull request #57844 from vbgl/dune-1.8.2

    dune: 1.6.2 -> 1.8.2
    ryantm authored Mar 19, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e4c9a02 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/ocaml/dune/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/ocaml/dune/default.nix
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@

stdenv.mkDerivation rec {
name = "dune-${version}";
version = "1.6.2";
version = "1.8.2";
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
sha256 = "1k675mfywmsj4v4z2f5a4vqinl1jbzzb7v5k6rzyfgvxzd7gil40";
sha256 = "1lbgnmzdgb3cp2k2wfhhm5zwlm6dbipab49lh308y2qmh1q6yk6a";
};

buildInputs = with ocamlPackages; [ ocaml findlib ];