mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
0522e55f99
* ocamlPackages.ppxlib: 0.23.0 -> 0.24.0 * ocamlPackages.bls12-381{,-unix}: 0.4.2 -> 1.1.0 - Update to version 1.1.0 - Use the same revision tag used in the opam repository, as the release tarbal seems to be unavailable - Does not depend on bls12-381-gen and rust anymore * ocamlPackages.bls12-381-{gen: 0.4.2 -> 0.4.4,legacy: init at 0.4.4} - Update bls12-381-gen to version 0.4.4 - Add new package bls12-381-legacy * ocamlPackages.tezos-*: 10.2 -> 11.0 - Update tezos to version 11.0 - Add new packages: tezos-base-test-helpers tezos-embedded-protocol-demo-noops tezos-event-logging-test-helpers tezos-protocol-alpha tezos-protocol-demo-noops tezos-protocol-plugin-alpha tezos-protocol-demo-noops tezos-protocol-plugin-alpha tezos-shell-services-test-helpers - Remove old package: tezos-test-services * ocamlPackages.repr: 0.4.0 -> 0.5.0 * ocamlPackages.hacl-star-raw: 0.3.2 -> 0.4.5 * ocamlPackages.arp: 2.3.2 -> 3.0.0 * ocamlPackages.index: 1.4.1 -> 1.5.0 * ocamlPackages.digestif: 1.0.0 -> 1.1.0 * ocamlPackages.ethernet: 2.2.0 -> 3.0.0 * ocamlPackages.httpaf: 0.6.6 -> 0.7.1 * ocamlPackages.mirage-nat: 2.2.3 -> 2.2.5 * ocamlPackages.tcpip: 6.2.0 -> 7.0.1 * ocamlPackages.paf: 0.0.6 -> 0.0.8 * ocamlPackages.ppx_irmin: 2.7.2 -> 2.9.1 * ocamlPackages.tezos-*: add missing packages, needed by ligo-0.34 * ocamlPackages.ocaml-recovery-parser: init at 0.2.2 * ligo: 0.27.0 -> 0.34.0
71 lines
1.0 KiB
Nix
71 lines
1.0 KiB
Nix
{ buildDunePackage
|
|
, lib
|
|
, fetchurl
|
|
, fetchpatch
|
|
, mirage-stack
|
|
, mirage-time
|
|
, h2
|
|
, tls-mirage
|
|
, mimic
|
|
, ke
|
|
, bigstringaf
|
|
, faraday
|
|
, tls
|
|
, lwt
|
|
, logs
|
|
, fmt
|
|
, mirage-crypto-rng
|
|
, tcpip
|
|
, mirage-time-unix
|
|
, ptime
|
|
, uri
|
|
, alcotest-lwt
|
|
, cstruct
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "paf";
|
|
version = "0.0.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dinosaure/paf-le-chien/releases/download/${version}/paf-${version}.tbz";
|
|
sha256 = "CyIIV11G7oUPPHuhov52LP4Ih4pY6bcUApD23/9q39k=";
|
|
};
|
|
|
|
useDune2 = true;
|
|
minimumOCamlVersion = "4.08";
|
|
|
|
propagatedBuildInputs = [
|
|
mirage-stack
|
|
mirage-time
|
|
h2
|
|
tls-mirage
|
|
mimic
|
|
ke
|
|
bigstringaf
|
|
faraday
|
|
tls
|
|
cstruct
|
|
tcpip
|
|
];
|
|
|
|
doCheck = false;
|
|
checkInputs = [
|
|
lwt
|
|
logs
|
|
fmt
|
|
mirage-crypto-rng
|
|
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";
|
|
};
|
|
}
|