lol

ocaml-sodium: init at 0.6.0

authored by

Cedric Cellier and committed by
Vincent Laporte
359e6446 f0ad5838

+29
+27
pkgs/development/ocaml-modules/sodium/default.nix
··· 1 + { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, ctypes, libsodium }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "ocaml${ocaml.version}-sodium"; 5 + version = "0.6.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "dsheets"; 9 + repo = "ocaml-sodium"; 10 + rev = version; 11 + sha256 = "124gpi1jhac46x05gp5viykyrafnlp03v1cmkl13c6pgcs8w04pv"; 12 + }; 13 + 14 + buildInputs = [ ocaml findlib ocamlbuild ]; 15 + propagatedBuildInputs = [ ctypes libsodium ]; 16 + 17 + createFindlibDestdir = true; 18 + 19 + hardeningDisable = stdenv.lib.optional stdenv.isDarwin "strictoverflow"; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = https://github.com/dsheets/ocaml-sodium; 23 + description = "Binding to libsodium 1.0.9+"; 24 + platforms = ocaml.meta.platforms or []; 25 + maintainers = [ maintainers.rixed ]; 26 + }; 27 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 755 755 756 756 sedlex = callPackage ../development/ocaml-modules/sedlex { }; 757 757 758 + sodium = callPackage ../development/ocaml-modules/sodium { }; 759 + 758 760 spelll = callPackage ../development/ocaml-modules/spelll { }; 759 761 760 762 sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };