ocaml-nocrypto: init at 0.5.1
Simplest possible crypto to support TLS Homepage: https://github.com/mirleft/ocaml-nocrypto
This commit is contained in:
parent
9c61b4fe4d
commit
af21739688
|
@ -0,0 +1,33 @@
|
||||||
|
{ stdenv, fetchzip, ocaml, findlib, cstruct, type_conv, zarith, ounit }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.5.1";
|
||||||
|
ocaml_version = stdenv.lib.getVersion ocaml;
|
||||||
|
in
|
||||||
|
|
||||||
|
assert stdenv.lib.versionAtLeast ocaml_version "4.01";
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "ocaml-nocrypto-${version}";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://github.com/mirleft/ocaml-nocrypto/archive/${version}.tar.gz";
|
||||||
|
sha256 = "15gffvixk12ghsfra9amfszd473c8h188zfj03ngvblbdm0d80m0";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib type_conv ounit ];
|
||||||
|
propagatedBuildInputs = [ cstruct zarith ];
|
||||||
|
|
||||||
|
configureFlags = "--enable-tests";
|
||||||
|
doCheck = true;
|
||||||
|
checkTarget = "test";
|
||||||
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/mirleft/ocaml-nocrypto;
|
||||||
|
description = "Simplest possible crypto to support TLS";
|
||||||
|
platforms = ocaml.meta.platforms;
|
||||||
|
license = stdenv.lib.licenses.bsd2;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4475,6 +4475,8 @@ let
|
||||||
|
|
||||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||||
|
|
||||||
|
nocrypto = callPackage ../development/ocaml-modules/nocrypto { };
|
||||||
|
|
||||||
ocaml_batteries = callPackage ../development/ocaml-modules/batteries { };
|
ocaml_batteries = callPackage ../development/ocaml-modules/batteries { };
|
||||||
|
|
||||||
comparelib = callPackage ../development/ocaml-modules/comparelib { };
|
comparelib = callPackage ../development/ocaml-modules/comparelib { };
|
||||||
|
|
Loading…
Reference in New Issue