Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / easy-format / default.nix
blob6a3566fda2b611f30e6b9c6e3056273fb88c79ae
1 { lib, stdenv, fetchzip, ocaml, findlib }:
2 let
3   pname = "easy-format";
4   version = "1.2.0";
5 in
6 stdenv.mkDerivation {
8   name = "${pname}-${version}";
10   src = fetchzip {
11     url = "https://github.com/mjambon/${pname}/archive/v${version}.tar.gz";
12     sha256 = "00ga7mrlycjc99gzp3bgx6iwhf7i6j8856f8xzrf1yas7zwzgzm9";
13   };
15   buildInputs = [ ocaml findlib ];
17   createFindlibDestdir = true;
19   doCheck = true;
20   checkTarget = "test";
22   meta = with lib; {
23     description = "A high-level and functional interface to the Format module of the OCaml standard library";
24     homepage = "https://github.com/ocaml-community/${pname}";
25     license = licenses.bsd3;
26     maintainers = [ maintainers.vbgl ];
27   };