mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
21 lines
598 B
Nix
21 lines
598 B
Nix
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "miou";
|
|
version = "0.3.0";
|
|
|
|
minimalOCamlVersion = "5.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/robur-coop/miou/releases/download/v${version}/miou-${version}.tbz";
|
|
hash = "sha256-kjGAbm1glF427gYOXKSogb+HpgUQqK5fqL9F06FtC4Q=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Composable concurrency primitives for OCaml";
|
|
homepage = "https://git.robur.coop/robur/miou";
|
|
changelog = "https://git.robur.coop/robur/miou/src/tag/v${version}/CHANGES.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|