Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchurl, 4 buildDunePackage, 5}: 6 7buildDunePackage rec { 8 pname = "pp_loc"; 9 version = "2.1.0"; 10 11 minimalOCamlVersion = "4.08"; 12 13 src = fetchurl { 14 url = "https://github.com/Armael/pp_loc/releases/download/v${version}/pp_loc-${version}.tbz"; 15 hash = "sha256-L3NlBdQx6BpP6FGtMQ/ynsTNIMj9N+8FDZ5vEFC6p8s="; 16 }; 17 18 doCheck = true; 19 20 meta = { 21 description = "Quote and highlight input fragments at a given source location"; 22 license = lib.licenses.mit; 23 maintainers = [ lib.maintainers.vbgl ]; 24 homepage = "https://armael.github.io/pp_loc/pp_loc/"; 25 }; 26}