lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 25 lines 691 B view raw
1# Version can be selected with the 'version' argument, see generic.nix. 2{ lib, callPackage, buildDunePackage, menhir, ... }@args: 3 4let inherit (callPackage ./generic.nix args) src version library_deps; 5 6in assert (lib.versionAtLeast version "0.25.1"); 7 8buildDunePackage { 9 pname = "ocamlformat-lib"; 10 inherit src version; 11 12 minimalOCamlVersion = "4.08"; 13 duneVersion = "3"; 14 15 nativeBuildInputs = [ menhir ]; 16 17 propagatedBuildInputs = library_deps; 18 19 meta = { 20 homepage = "https://github.com/ocaml-ppx/ocamlformat"; 21 description = "Auto-formatter for OCaml code (library)"; 22 maintainers = with lib.maintainers; [ Zimmi48 marsam Julow ]; 23 license = lib.licenses.mit; 24 }; 25}