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