Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3dbfa915ab5d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c2db123b2199
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Apr 14, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    vbgl Vincent Laporte
    Copy the full SHA
    c2db123 View commit details
33 changes: 33 additions & 0 deletions pkgs/development/ocaml-modules/mirage-crypto/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{ lib, fetchurl, buildDunePackage, ounit, cstruct, ocplib-endian
, cpuid, dune-configurator, cpuAcceleration ? false }:

buildDunePackage rec {
minimumOCamlVersion = "4.07";

pname = "mirage-crypto";
version = "0.6.2";

src = fetchurl {
url = "https://github.com/mirage/mirage-crypto/releases/download/v${version}/mirage-crypto-v${version}.tbz";
sha256 = "08xq49cxn66yi0gfajzi8czcxfx24rd191rvf7s10wfkz304sa72";
};

useDune2 = true;

preBuild = ''
MIRAGE_CRYPTO_ACCELERATE=${lib.boolToString cpuAcceleration}
'';

doCheck = true;
checkInputs = [ ounit ];

nativeBuildInputs = [ cpuid dune-configurator ];
propagatedBuildInputs = [ cstruct ocplib-endian ];

meta = with lib; {
homepage = "https://github.com/mirage/mirage-crypto";
description = "Simple symmetric cryptography for the modern age";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}
19 changes: 19 additions & 0 deletions pkgs/development/ocaml-modules/mirage-crypto/pk.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ buildDunePackage, ounit, randomconv, mirage-crypto, mirage-crypto-rng
, cstruct, sexplib, ppx_sexp_conv, zarith, eqaf, rresult, gmp }:

buildDunePackage {
pname = "mirage-crypto-pk";

inherit (mirage-crypto) version src useDune2 minimumOCamlVersion;

buildInputs = [ gmp ];
propagatedBuildInputs = [ cstruct mirage-crypto mirage-crypto-rng
zarith eqaf rresult sexplib ppx_sexp_conv ];

doCheck = true;
checkInputs = [ ounit randomconv ];

meta = mirage-crypto.meta // {
description = "Simple public-key cryptography for the modern age";
};
}
16 changes: 16 additions & 0 deletions pkgs/development/ocaml-modules/mirage-crypto/rng.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{ buildDunePackage, mirage-crypto, ounit, randomconv, cstruct }:

buildDunePackage {
pname = "mirage-crypto-rng";

inherit (mirage-crypto) version src nativeBuildInputs useDune2 minimumOCamlVersion;

doCheck = true;
checkInputs = [ ounit randomconv ];

propagatedBuildInputs = [ cstruct mirage-crypto ];

meta = mirage-crypto.meta // {
description = "A cryptographically secure PRNG";
};
}
6 changes: 6 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
@@ -538,6 +538,12 @@ let

mirage-clock = callPackage ../development/ocaml-modules/mirage-clock { };

mirage-crypto = callPackage ../development/ocaml-modules/mirage-crypto { };

mirage-crypto-pk = callPackage ../development/ocaml-modules/mirage-crypto/pk.nix { };

mirage-crypto-rng = callPackage ../development/ocaml-modules/mirage-crypto/rng.nix { };

mirage-device = callPackage ../development/ocaml-modules/mirage-device { };

mirage-flow = callPackage ../development/ocaml-modules/mirage-flow { };