mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
ocamlPackages.mirage-protocols: init at 4.0.1
This commit is contained in:
parent
81fa88504b
commit
66ffbf57c3
22
pkgs/development/ocaml-modules/mirage-protocols/default.nix
Normal file
22
pkgs/development/ocaml-modules/mirage-protocols/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildDunePackage, fetchurl, duration, ipaddr, mirage-device, mirage-flow }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "mirage-protocols";
|
||||
version = "4.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/mirage-protocols/releases/download/v${version}/mirage-protocols-v${version}.tbz";
|
||||
sha256 = "188m8x6xdw1bllwrpa8f8bqbdqy20kjfk7q8p8jf8j0daf7kl3mi";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ duration ipaddr mirage-device mirage-flow ];
|
||||
|
||||
meta = {
|
||||
description = "MirageOS signatures for network protocols";
|
||||
homepage = "https://github.com/mirage/mirage-protocols";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -540,6 +540,8 @@ let
|
||||
|
||||
mirage-flow = callPackage ../development/ocaml-modules/mirage-flow { };
|
||||
|
||||
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
|
||||
|
||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||
|
||||
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
||||
|
Loading…
Reference in New Issue
Block a user