mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
29 lines
707 B
Nix
29 lines
707 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
dune-configurator,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "miou";
|
|
version = "0.8.0";
|
|
|
|
minimalOCamlVersion = "5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/robur-coop/miou/releases/download/v${finalAttrs.version}/miou-${finalAttrs.version}.tbz";
|
|
hash = "sha256-jMBfd6I2gKUqMAjUYa/tOyEMKcbMzazREyMsQbq3ifo=";
|
|
};
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
meta = {
|
|
description = "Composable concurrency primitives for OCaml";
|
|
homepage = "https://git.robur.coop/robur/miou";
|
|
changelog = "https://git.robur.coop/robur/miou/src/tag/v${finalAttrs.version}/CHANGES.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
})
|