mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
ocamlPackages.paf: init at 0.0.1
This commit is contained in:
parent
6c95bce8b6
commit
5955013253
2 changed files with 84 additions and 0 deletions
82
pkgs/development/ocaml-modules/paf/default.nix
Normal file
82
pkgs/development/ocaml-modules/paf/default.nix
Normal file
|
@ -0,0 +1,82 @@
|
|||
{ buildDunePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
, fetchpatch
|
||||
, mirage-stack
|
||||
, mirage-time
|
||||
, httpaf
|
||||
, tls-mirage
|
||||
, mimic
|
||||
, cohttp-lwt
|
||||
, letsencrypt
|
||||
, emile
|
||||
, ke
|
||||
, bigstringaf
|
||||
, domain-name
|
||||
, duration
|
||||
, faraday
|
||||
, ipaddr
|
||||
, tls
|
||||
, x509
|
||||
, lwt
|
||||
, logs
|
||||
, fmt
|
||||
, mirage-crypto-rng
|
||||
, tcpip
|
||||
, mirage-time-unix
|
||||
, ptime
|
||||
, uri
|
||||
, alcotest-lwt
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "paf";
|
||||
version = "0.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/dinosaure/paf-le-chien/releases/download/${version}/paf-${version}.tbz";
|
||||
sha256 = "7a794c21ce458bda302553b0f5ac128c067579fbb3b7b8fba9b410446c43e790";
|
||||
};
|
||||
|
||||
useDune2 = true;
|
||||
minimumOCamlVersion = "4.08";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
mirage-stack
|
||||
mirage-time
|
||||
httpaf
|
||||
tls-mirage
|
||||
mimic
|
||||
cohttp-lwt
|
||||
letsencrypt
|
||||
emile
|
||||
ke
|
||||
bigstringaf
|
||||
domain-name
|
||||
ipaddr
|
||||
duration
|
||||
faraday
|
||||
tls
|
||||
x509
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
checkInputs = [
|
||||
lwt
|
||||
logs
|
||||
fmt
|
||||
mirage-crypto-rng
|
||||
tcpip
|
||||
mirage-time-unix
|
||||
ptime
|
||||
uri
|
||||
alcotest-lwt
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "HTTP/AF and MirageOS";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.sternenseemann ];
|
||||
homepage = "https://github.com/dinosaure/paf-le-chien";
|
||||
};
|
||||
}
|
|
@ -944,6 +944,8 @@ let
|
|||
|
||||
ounit2 = callPackage ../development/ocaml-modules/ounit2 { };
|
||||
|
||||
paf = callPackage ../development/ocaml-modules/paf { };
|
||||
|
||||
parse-argv = callPackage ../development/ocaml-modules/parse-argv { };
|
||||
|
||||
path_glob = callPackage ../development/ocaml-modules/path_glob { };
|
||||
|
|
Loading…
Reference in a new issue