nixpkgs/pkgs/development/ocaml-modules/miou/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
598 B
Nix
Raw Normal View History

2024-04-15 04:20:00 +00:00
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "miou";
2024-08-22 14:25:25 +00:00
version = "0.3.0";
2024-04-15 04:20:00 +00:00
minimalOCamlVersion = "5.0.0";
src = fetchurl {
url = "https://github.com/robur-coop/miou/releases/download/v${version}/miou-${version}.tbz";
2024-08-22 14:25:25 +00:00
hash = "sha256-kjGAbm1glF427gYOXKSogb+HpgUQqK5fqL9F06FtC4Q=";
2024-04-15 04:20:00 +00:00
};
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 = [ ];
2024-04-15 04:20:00 +00:00
};
}