lol
0
fork

Configure Feed

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

ocaml-custom_printf: add initial version (112.24.00) to the system

+25
+23
pkgs/development/ocaml-modules/custom_printf/default.nix
··· 1 + {stdenv, buildOcaml, fetchurl, type_conv, sexplib, pa_ounit}: 2 + 3 + buildOcaml rec { 4 + name = "custom_printf"; 5 + version = "112.24.00"; 6 + 7 + minimumSupportedOcamlVersion = "4.02"; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/janestreet/custom_printf/archive/${version}.tar.gz"; 11 + sha256 = "dad3aface92c53e8fbcc12cc9358c4767cb1cb09857d4819a10ed98eccaca8f9"; 12 + }; 13 + 14 + buildInputs = [ pa_ounit ]; 15 + propagatedBuildInputs = [ type_conv sexplib ]; 16 + 17 + meta = with stdenv.lib; { 18 + homepage = https://github.com/janestreet/custom_printf; 19 + description = "Syntax extension for printf format strings"; 20 + license = licenses.asl20; 21 + maintainers = [ maintainers.ericbmerritt ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 4124 4124 4125 4125 csv = callPackage ../development/ocaml-modules/csv { }; 4126 4126 4127 + custom_printf = callPackage ../development/ocaml-modules/custom_printf { }; 4128 + 4127 4129 deriving = callPackage ../development/tools/ocaml/deriving { }; 4128 4130 4129 4131 dolog = callPackage ../development/ocaml-modules/dolog { };