mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ocaml-custom_printf: add initial version (112.24.00) to the system
This commit is contained in:
parent
12c3b11bf4
commit
8a9d5637bc
2 changed files with 25 additions and 0 deletions
23
pkgs/development/ocaml-modules/custom_printf/default.nix
Normal file
23
pkgs/development/ocaml-modules/custom_printf/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{stdenv, buildOcaml, fetchurl, type_conv, sexplib, pa_ounit}:
|
||||||
|
|
||||||
|
buildOcaml rec {
|
||||||
|
name = "custom_printf";
|
||||||
|
version = "112.24.00";
|
||||||
|
|
||||||
|
minimumSupportedOcamlVersion = "4.02";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/janestreet/custom_printf/archive/${version}.tar.gz";
|
||||||
|
sha256 = "dad3aface92c53e8fbcc12cc9358c4767cb1cb09857d4819a10ed98eccaca8f9";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pa_ounit ];
|
||||||
|
propagatedBuildInputs = [ type_conv sexplib ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/janestreet/custom_printf;
|
||||||
|
description = "Syntax extension for printf format strings";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.ericbmerritt ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4124,6 +4124,8 @@ let
|
||||||
|
|
||||||
csv = callPackage ../development/ocaml-modules/csv { };
|
csv = callPackage ../development/ocaml-modules/csv { };
|
||||||
|
|
||||||
|
custom_printf = callPackage ../development/ocaml-modules/custom_printf { };
|
||||||
|
|
||||||
deriving = callPackage ../development/tools/ocaml/deriving { };
|
deriving = callPackage ../development/tools/ocaml/deriving { };
|
||||||
|
|
||||||
dolog = callPackage ../development/ocaml-modules/dolog { };
|
dolog = callPackage ../development/ocaml-modules/dolog { };
|
||||||
|
|
Loading…
Reference in a new issue