Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5}:
6
7buildDunePackage rec {
8 pname = "miou";
9 version = "0.3.1";
10
11 minimalOCamlVersion = "5.0.0";
12
13 src = fetchurl {
14 url = "https://github.com/robur-coop/miou/releases/download/v${version}/miou-${version}.tbz";
15 hash = "sha256-K3otUuwFmRVrbnxYYZDMmd2WTYQHmXY/byQHu4PjlHE=";
16 };
17
18 meta = {
19 description = "Composable concurrency primitives for OCaml";
20 homepage = "https://git.robur.coop/robur/miou";
21 changelog = "https://git.robur.coop/robur/miou/src/tag/v${version}/CHANGES.md";
22 license = lib.licenses.mit;
23 maintainers = [ ];
24 };
25}