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

Commits on Mar 30, 2018

  1. ocamlPackages.ocaml_extlib: 1.7.2 -> 1.7.4

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools.
    
    This update was made based on information from https://repology.org/metapackage/ocaml-extlib/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 1.7.4 with grep in /nix/store/dvi3qa5d9bkfr31vdwf1q87bh79jjh0n-ocaml-extlib-1.7.4
    - directory tree listing: https://gist.github.com/7757241c8441089d6d514b9245f26bfd
    ryantm authored and globin committed Mar 30, 2018
    Copy the full SHA
    5fabc51 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/ocaml-modules/extlib/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/ocaml-modules/extlib/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11";

stdenv.mkDerivation {
name = "ocaml-extlib-1.7.2";
name = "ocaml-extlib-1.7.4";

src = fetchurl {
url = http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.2.tar.gz;
sha256 = "0r7mhfgh6n5chj9r12s2x1fxrzvh6nm8h80ykl1mr75j86za41bm";
url = http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.4.tar.gz;
sha256 = "18jb4rvkk6p3mqnkamwb41x8q49shgn43h020bs4cp4vac7nrhnr";
};

buildInputs = [ ocaml findlib cppo ];