lol
0
fork

Configure Feed

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

feat: add package ocamlPackages.nice_parser

authored by

Tiago Ferreira and committed by
Vincent Laporte
f4e3a80f 43febf85

+32
+30
pkgs/development/ocaml-modules/nice_parser/default.nix
··· 1 + { 2 + lib, 3 + buildDunePackage, 4 + fetchFromGitHub, 5 + stdio, 6 + }: 7 + 8 + buildDunePackage rec { 9 + pname = "nice_parser"; 10 + version = "1.0.0"; 11 + minimalOCamlVersion = "4.07"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "smolkaj"; 15 + repo = "nice-parser"; 16 + tag = version; 17 + hash = "sha256-h1rqdv19tUH3CsL3OLsTmKir7YCYt4PaW19ymotEvIY="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + stdio 22 + ]; 23 + 24 + meta = { 25 + inherit (src.meta) homepage; 26 + description = "Nice parsers without the boilerplate"; 27 + license = lib.licenses.mit; 28 + maintainers = [ lib.maintainers.tiferrei ]; 29 + }; 30 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1269 1269 1270 1270 netchannel = callPackage ../development/ocaml-modules/netchannel { }; 1271 1271 1272 + nice_parser = callPackage ../development/ocaml-modules/nice_parser { }; 1273 + 1272 1274 ninja_utils = callPackage ../development/ocaml-modules/ninja_utils { }; 1273 1275 1274 1276 nonstd = callPackage ../development/ocaml-modules/nonstd { };