lol
fork

Configure Feed

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

at 22.05-pre 26 lines 793 B view raw
1{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg 2, astring, fmt, fpath, logs, rresult 3}: 4 5stdenv.mkDerivation rec { 6 name = "ocaml${ocaml.version}-bos-${version}"; 7 version = "0.2.0"; 8 src = fetchurl { 9 url = "https://erratique.ch/software/bos/releases/bos-${version}.tbz"; 10 sha256 = "1s10iqx8rgnxr5n93lf4blwirjf8nlm272yg5sipr7lsr35v49wc"; 11 }; 12 13 nativeBuildInputs = [ ocaml findlib ocamlbuild ]; 14 buildInputs = [ findlib topkg ]; 15 propagatedBuildInputs = [ astring fmt fpath logs rresult ]; 16 17 inherit (topkg) buildPhase installPhase; 18 19 meta = { 20 description = "Basic OS interaction for OCaml"; 21 homepage = "https://erratique.ch/software/bos"; 22 license = lib.licenses.isc; 23 maintainers = [ lib.maintainers.vbgl ]; 24 inherit (ocaml.meta) platforms; 25 }; 26}