Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 25 lines 608 B view raw
1{ lib, buildDunePackage, fetchurl 2, dune-configurator 3}: 4 5buildDunePackage rec { 6 pname = "vlq"; 7 version = "0.2.1"; 8 9 src = fetchurl { 10 url = "https://github.com/flowtype/ocaml-vlq/releases/download/v${version}/vlq-v${version}.tbz"; 11 sha256 = "02wr9ph4q0nxmqgbc67ydf165hmrdv9b655krm2glc3ahb6larxi"; 12 }; 13 14 useDune2 = true; 15 16 buildInputs = [ dune-configurator ]; 17 18 meta = { 19 description = "encoding variable-length quantities, in particular base64"; 20 license = lib.licenses.mit; 21 homepage = "https://github.com/flowtype/ocaml-vlq"; 22 maintainers = [ lib.maintainers.nomeata ]; 23 }; 24 25}