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

Commits on Apr 3, 2020

  1. Copy the full SHA
    09022cb View commit details

Commits on Apr 4, 2020

  1. Merge pull request #84228 from marsam/update-ocamlformat

    ocamlformat: 0.13.0 -> 0.14.0
    marsam authored Apr 4, 2020

    Verified

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

with ocamlPackages; buildDunePackage rec {
pname = "ocamlformat";
version = "0.13.0";
version = "0.14.0";

minimumOCamlVersion = "4.06";

useDune2 = true;

src = fetchurl {
url = "https://github.com/ocaml-ppx/ocamlformat/releases/download/${version}/ocamlformat-${version}-2.tbz";
sha256 = "0ki2flqi3xkhw9mfridivb6laxm7gml8rj9qz42vqmy9yx76jjxq";
url = "https://github.com/ocaml-ppx/ocamlformat/releases/download/${version}/ocamlformat-${version}.tbz";
sha256 = "070c0x6z5y0lyls56zm34g8lyc093wkr0jfp50dvrkr9fk1sx2wi";
};

buildInputs = [
@@ -20,6 +22,8 @@ with ocamlPackages; buildDunePackage rec {
stdio
uuseg
uutf
fix
menhir
];

meta = {