Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitLab, 4 buildDunePackage, 5}: 6 7buildDunePackage rec { 8 pname = "domain_shims"; 9 version = "0.1.0"; 10 11 src = fetchFromGitLab { 12 owner = "gasche"; 13 repo = "domain-shims"; 14 rev = version; 15 hash = "sha256-/5Cw+M0A1rnT7gFqzryd4Z0tylN0kZgSBXtn9jr8u1c="; 16 }; 17 18 minimalOCamlVersion = "4.12"; 19 20 meta = { 21 homepage = "https://gitlab.com/gasche/domain-shims/"; 22 description = "Non-parallel implementation of Domains compatible with OCaml 4"; 23 license = lib.licenses.mit; 24 maintainers = [ lib.maintainers.vbgl ]; 25 }; 26}