nixpkgs/pkgs/development/ocaml-modules/seq/default.nix
sternenseemann 4e42cac49d ocamlPackages: stdenv.lib → lib
This change was produced by searching for remaining occurrences of
stdenv.lib and replacing them manually.

Reference #108938.
2021-01-12 16:33:18 +01:00

43 lines
997 B
Nix
Raw Permalink 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, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild }:
stdenv.mkDerivation ({
version = "0.1";
name = "ocaml${ocaml.version}-seq-0.1";
meta = {
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/c-cube/seq";
inherit (ocaml.meta) platforms;
};
} // (if lib.versionOlder ocaml.version "4.07" then {
src = fetchFromGitHub {
owner = "c-cube";
repo = "seq";
rev = "0.1";
sha256 = "1cjpsc7q76yfgq9iyvswxgic4kfq2vcqdlmxjdjgd4lx87zvcwrv";
};
buildInputs = [ ocaml findlib ocamlbuild ];
createFindlibDestdir = true;
meta.description = "Compatibility package for OCamls standard iterator type starting from 4.07";
} else {
src = ./src-base;
dontBuild = true;
installPhase = ''
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/seq
cp META $out/lib/ocaml/${ocaml.version}/site-lib/seq
'';
meta.description = "dummy backward-compatibility package for iterators";
}))