nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

ocaml-syslog: init at 1.5

authored by

Cedric Cellier and committed by
Vincent Laporte
913e3389 c5c886f0

+29
+27
pkgs/development/ocaml-modules/syslog/default.nix
··· 1 + { stdenv, fetchFromGitHub, ocaml, findlib }: 2 + 3 + assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.03.0"; 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "ocaml${ocaml.version}-syslog"; 7 + version = "1.5"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "rixed"; 11 + repo = "ocaml-syslog"; 12 + rev = "v${version}"; 13 + sha256 = "1kqpc55ppzv9n555qgqpda49n7nvkqimzisyjx2a7338r7q4r5bw"; 14 + }; 15 + 16 + buildInputs = [ ocaml findlib ]; 17 + 18 + createFindlibDestdir = true; 19 + 20 + meta = with stdenv.lib; { 21 + homepage = https://github.com/rixed/ocaml-syslog; 22 + description = "Simple wrapper to access the system logger from OCaml"; 23 + license = licenses.lgpl21Plus; 24 + platforms = ocaml.meta.platforms or []; 25 + maintainers = [ maintainers.rixed ]; 26 + }; 27 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 522 522 523 523 ocaml_sqlite3 = callPackage ../development/ocaml-modules/sqlite3 { }; 524 524 525 + syslog = callPackage ../development/ocaml-modules/syslog { }; 526 + 525 527 ocaml_text = callPackage ../development/ocaml-modules/ocaml-text { }; 526 528 527 529 ocf = callPackage ../development/ocaml-modules/ocf { };