about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/base/default.nix
blob: 4c92c7f1ca1be75f94613ada447e8f122847bfd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, ocaml, jbuilder, findlib }:

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

  src = fetchurl {
    url = http://ocaml.janestreet.com/ocaml-core/v0.9/files/base-v0.9.0.tar.gz;
    sha256 = "0pdpa3hflbqn978ppvv5y08cjya0k8xpf1h0kcak6bdrmnmiwlyx";
  };

  buildInputs = [ ocaml jbuilder findlib ];

  inherit (jbuilder) installPhase;

  meta = {
    license = stdenv.lib.licenses.asl20;
    inherit (ocaml.meta) platforms;
    homepage = https://github.com/janestreet/base;
    description = "Full standard library replacement for OCaml";
  };
}