nixpkgs/pkgs/development/ocaml-modules/comparelib/default.nix
Ryan Mulligan 71ebb80f1b ocamlPackages.comparelib: 109.60.00 -> 113.00.00
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. 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 113.00.00 with grep in /nix/store/gdvngw3bv43p5ms1r0z6mfyz44pds5ck-ocaml-comparelib-113.00.00
- directory tree listing: https://gist.github.com/e2bf9625e7cfaca3ffe5d8077977c36c
2018-03-20 20:30:38 -07:00

23 lines
625 B
Nix

{stdenv, buildOcaml, fetchurl, type_conv}:
buildOcaml rec {
name = "comparelib";
version = "113.00.00";
minimumSupportedOcamlVersion = "4.00";
src = fetchurl {
url = "https://github.com/janestreet/comparelib/archive/${version}.tar.gz";
sha256 = "02l343drgi4200flfx73nzdk61zajwidsqjk9n80b2d37lvhazlf";
};
propagatedBuildInputs = [ type_conv ];
meta = with stdenv.lib; {
homepage = https://github.com/janestreet/comparelib;
description = "Syntax extension for deriving \"compare\" functions automatically";
license = licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}