Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 34 lines 668 B view raw
1{ 2 lib, 3 buildDunePackage, 4 decoders, 5 ezxmlm, 6 containers, 7}: 8 9buildDunePackage rec { 10 pname = "decoders-ezxmlm"; 11 12 # sub-package built separately from the same source 13 inherit (decoders) src version; 14 15 minimalOCamlVersion = "4.03.0"; 16 17 propagatedBuildInputs = [ 18 decoders 19 ezxmlm 20 ]; 21 22 doCheck = true; 23 checkInputs = [ 24 containers 25 ]; 26 27 meta = { 28 description = "Ezxmlm backend for decoders"; 29 homepage = "https://github.com/mattjbray/ocaml-decoders"; 30 changelog = "https://github.com/mattjbray/ocaml-decoders/blob/${version}/CHANGES.md"; 31 license = lib.licenses.isc; 32 maintainers = with lib.maintainers; [ infinidoge ]; 33 }; 34}