nixpkgs/pkgs/development/ocaml-modules/seq/default.nix
2018-09-05 17:12:13 +00:00

26 lines
671 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild }:
stdenv.mkDerivation rec {
version = "0.1";
name = "ocaml${ocaml.version}-seq-${version}";
src = fetchFromGitHub {
owner = "c-cube";
repo = "seq";
rev = version;
sha256 = "1cjpsc7q76yfgq9iyvswxgic4kfq2vcqdlmxjdjgd4lx87zvcwrv";
};
buildInputs = [ ocaml findlib ocamlbuild ];
createFindlibDestdir = true;
meta = {
description = "Compatibility package for OCamls standard iterator type starting from 4.07";
license = stdenv.lib.licenses.lgpl21;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (src.meta) homepage;
inherit (ocaml.meta) platforms;
};
}