Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitHub, 4 buildDunePackage, 5 qcheck-core, 6}: 7 8buildDunePackage rec { 9 pname = "bwd"; 10 version = "2.3.0"; 11 12 minimalOCamlVersion = "4.12"; 13 duneVersion = "3"; 14 15 src = fetchFromGitHub { 16 owner = "RedPRL"; 17 repo = "ocaml-bwd"; 18 rev = version; 19 hash = "sha256-rzn0U/D6kPNsH5hBTElc3d1jfKbgKbjA2JHicpaJtu4="; 20 }; 21 22 doCheck = true; 23 checkInputs = [ qcheck-core ]; 24 25 meta = { 26 description = "Backward Lists"; 27 homepage = "https://github.com/RedPRL/ocaml-bwd"; 28 changelog = "https://github.com/RedPRL/ocaml-bwd/blob/${version}/CHANGELOG.markdown"; 29 license = lib.licenses.asl20; 30 maintainers = [ lib.maintainers.vbgl ]; 31 }; 32}