ocamlPackages.mirage-stack: init at 2.0.1
This commit is contained in:
parent
32feaeab83
commit
6edabf41b3
21
pkgs/development/ocaml-modules/mirage-stack/default.nix
Normal file
21
pkgs/development/ocaml-modules/mirage-stack/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, buildDunePackage, fetchurl, mirage-protocols }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "mirage-stack";
|
||||
version = "2.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/mirage-stack/releases/download/v${version}/mirage-stack-v${version}.tbz";
|
||||
sha256 = "1xdy59bxnki1r0jwm3s8fwarhhbxr0lsqqiag5b1j41hciiqp9jq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ mirage-protocols ];
|
||||
|
||||
meta = {
|
||||
description = "MirageOS signatures for network stacks";
|
||||
homepage = "https://github.com/mirage/mirage-stack";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
||||
|
@ -544,6 +544,8 @@ let
|
||||
|
||||
mirage-random = callPackage ../development/ocaml-modules/mirage-random { };
|
||||
|
||||
mirage-stack = callPackage ../development/ocaml-modules/mirage-stack { };
|
||||
|
||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||
|
||||
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
||||
|
Loading…
Reference in New Issue
Block a user