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

Commits on Jan 1, 2021

  1. ocamlPackages.jingoo: 1.4.1 -> 1.4.2

    also use dune 2 from now on.
    sternenseemann authored and vbgl committed Jan 1, 2021
    Copy the full SHA
    d5778bc View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/development/ocaml-modules/jingoo/default.nix
6 changes: 4 additions & 2 deletions pkgs/development/ocaml-modules/jingoo/default.nix
Original file line number Diff line number Diff line change
@@ -3,15 +3,17 @@

buildDunePackage rec {
pname = "jingoo";
version = "1.4.1";
version = "1.4.2";

useDune2 = true;

minimumOCamlVersion = "4.04";

src = fetchFromGitHub {
owner = "tategakibunko";
repo = "jingoo";
rev = "v${version}";
sha256 = "16wzggwi3ri13v93mjk8w7zxwp65qmi1rnng2kpk9vffx5g1kv6f";
sha256 = "0q947aik4i4z5wjllhwlkxh60qczwgra21yyrrzwhi9y5bnf8346";
};

buildInputs = [ menhir ];