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

Commits on Jan 23, 2020

  1. Copy the full SHA
    ab6eebb View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/ocaml-modules/batteries/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/ocaml-modules/batteries/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, qtest, num }:

let version = "2.10.0"; in
let version = "2.11.0"; in

stdenv.mkDerivation {
name = "ocaml${ocaml.version}-batteries-${version}";

src = fetchurl {
url = "https://github.com/ocaml-batteries-team/batteries-included/releases/download/v${version}/batteries-${version}.tar.gz";
sha256 = "08ghw87d56h1a6y1nnh3x2wy9xj25jqfk5sp6ma9nsyd37babb0h";
sha256 = "0swdnm9c3sd3yzzyg7yh1lkqhfikmga4fzx2416ja1q62nv26j53";
};

buildInputs = [ ocaml findlib ocamlbuild qtest ];