lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 28 lines 803 B view raw
1{ stdenv, lib, fetchurl, ocaml, findlib, cppo 2# De facto, option minimal seems to be the default. See the README. 3, minimal ? true 4}: 5 6stdenv.mkDerivation rec { 7 pname = "ocaml${ocaml.version}-extlib"; 8 version = "1.7.8"; 9 10 src = fetchurl { 11 url = "https://ygrek.org/p/release/ocaml-extlib/extlib-${version}.tar.gz"; 12 sha256 = "0npq4hq3zym8nmlyji7l5cqk6drx2rkcx73d60rxqh5g8dla8p4k"; 13 }; 14 15 buildInputs = [ ocaml findlib cppo ]; 16 17 createFindlibDestdir = true; 18 19 makeFlags = lib.optional minimal "minimal=1"; 20 21 meta = { 22 homepage = "https://github.com/ygrek/ocaml-extlib"; 23 description = "Enhancements to the OCaml Standard Library modules"; 24 license = lib.licenses.lgpl21Only; 25 platforms = ocaml.meta.platforms or []; 26 maintainers = [ lib.maintainers.sternenseemann ]; 27 }; 28}