nixpkgs/pkgs/development/ocaml-modules/nocrypto/default.nix

51 lines
2.1 KiB
Nix
Raw Normal View History

2018-07-05 19:40:30 +00:00
{ stdenv, fetchurl, fetchpatch, ocaml, findlib, ocamlbuild, topkg
2017-03-22 22:53:28 +00:00
, cpuid, ocb-stubblr
2018-07-05 19:40:30 +00:00
, cstruct, zarith, ppx_sexp_conv
2017-11-27 19:08:40 +00:00
, cstruct-lwt ? null
2017-03-22 22:53:28 +00:00
}:
2016-11-03 00:09:54 +00:00
with stdenv.lib;
2017-11-27 19:08:40 +00:00
let withLwt = cstruct-lwt != null; in
2017-03-22 22:53:28 +00:00
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-nocrypto-${version}";
version = "0.5.4";
2016-11-03 00:09:54 +00:00
2018-07-05 19:40:30 +00:00
src = fetchurl {
url = "https://github.com/mirleft/ocaml-nocrypto/releases/download/v${version}/nocrypto-${version}.tbz";
sha256 = "0zshi9hlhcz61n5z1k6fx6rsi0pl4xgahsyl2jp0crqkaf3hqwlg";
};
2018-07-05 19:40:30 +00:00
patches = [
(fetchpatch {
url = "https://raw.githubusercontent.com/ocaml/opam-repository/master/packages/nocrypto/nocrypto.0.5.4-1/files/0001-add-missing-runtime-dependencies-in-_tags.patch";
sha256 = "1asybwj3rl07b4q4cxwy80a7j17j0i5vzz77p38hymilhc2ky7xn";
})
(fetchpatch {
url = "https://raw.githubusercontent.com/ocaml/opam-repository/master/packages/nocrypto/nocrypto.0.5.4-1/files/0002-add-ppx_sexp_conv-as-a-runtime-dependency-in-the-pac.patch";
sha256 = "0zmp64n5fgkawpkyw0vv0bg0i2c3xbsxqy17vwy92nf5rbardi1r";
})
(fetchpatch {
url = "https://raw.githubusercontent.com/ocaml/opam-repository/master/packages/nocrypto/nocrypto.0.5.4-1/files/0003-Auto-detect-ppx_sexp_conv-runtime-library.patch";
sha256 = "0lngbg5gyd5gs56lbjh6g86cps1y8x1xsqzi0vi1v28al1gn5dhw";
})
(fetchpatch {
url = "https://raw.githubusercontent.com/ocaml/opam-repository/master/packages/nocrypto/nocrypto.0.5.4-1/files/0004-pack-package-workaround-ocamlbuild-272.patch";
sha256 = "16k0w78plvqhl17qiqq1mckxhhcdysqgs94l54a1bn0l6fx3rvb9";
})
];
buildInputs = [ ocaml findlib ocamlbuild topkg cpuid ocb-stubblr ];
propagatedBuildInputs = [ cstruct ppx_sexp_conv zarith ] ++ optional withLwt cstruct-lwt;
2016-11-03 00:09:54 +00:00
2018-06-02 14:54:51 +00:00
buildPhase = "${topkg.buildPhase} --with-lwt ${boolToString withLwt}";
2017-03-22 22:53:28 +00:00
inherit (topkg) installPhase;
meta = {
homepage = https://github.com/mirleft/ocaml-nocrypto;
description = "Simplest possible crypto to support TLS";
license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}