Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 30 lines 591 B view raw
1{ lib 2, buildDunePackage 3, fetchFromGitHub 4, alcotest 5, qcheck-core 6}: 7 8buildDunePackage rec { 9 pname = "algaeff"; 10 version = "1.1.0"; 11 12 minimalOCamlVersion = "5.0"; 13 14 src = fetchFromGitHub { 15 owner = "RedPRL"; 16 repo = pname; 17 rev = version; 18 hash = "sha256-7kwQmoT8rpQWPHc+BZQi9fcZhgHxS99158ebXAXlpQ8="; 19 }; 20 21 doCheck = true; 22 checkInputs = [ alcotest qcheck-core ]; 23 24 meta = { 25 description = "Reusable Effects-Based Components"; 26 homepage = "https://github.com/RedPRL/algaeff"; 27 license = lib.licenses.asl20; 28 maintainers = [ lib.maintainers.vbgl ]; 29 }; 30}