Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 25 lines 663 B view raw
1{ lib, fetchFromGitHub, buildDunePackage 2, stdlib-shims 3}: 4 5buildDunePackage rec { 6 pname = "integers"; 7 version = "0.7.0"; 8 9 src = fetchFromGitHub { 10 owner = "ocamllabs"; 11 repo = "ocaml-integers"; 12 rev = version; 13 sha256 = "sha256-zuUgP1jOiVT0q6GisGpkqx7nybWbARgnAcU8NYqvCzA="; 14 }; 15 16 propagatedBuildInputs = [ stdlib-shims ]; 17 18 meta = { 19 description = "Various signed and unsigned integer types for OCaml"; 20 license = lib.licenses.mit; 21 homepage = "https://github.com/ocamllabs/ocaml-integers"; 22 changelog = "https://github.com/ocamllabs/ocaml-integers/raw/${version}/CHANGES.md"; 23 maintainers = [ lib.maintainers.vbgl ]; 24 }; 25}