biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / pp / default.nix
blob5412f8955d76c59a8c644aab62b6530b36ad59cc
1 { buildDunePackage, fetchurl, ppx_expect, lib }:
3 buildDunePackage rec {
4   pname = "pp";
5   version = "1.2.0";
7   src = fetchurl {
8     url =
9       "https://github.com/ocaml-dune/pp/releases/download/${version}/pp-${version}.tbz";
10     hash = "sha256-pegiVzxVr7Qtsp7FbqzR8qzY9lzy3yh44pHeN0zmkJw=";
11   };
13   duneVersion = "3";
14   minimalOCamlVersion = "4.08";
16   checkInputs = [ ppx_expect ];
17   doCheck = true;
19   meta = with lib; {
20     description =
21       "A an alternative pretty printing library to the Format module of the OCaml standard library";
22     license = licenses.mit;
23     platforms = platforms.unix;
24     maintainers = with maintainers; [ ];
25   };