Unverified Commit daffacbd authored by Ulrik Strid's avatar Ulrik Strid Committed by GitHub
Browse files

Merge pull request #258870 from Alizter/ps/branch/ocamlpackages_pp__1_1_2____1_2_0

ocamlPackages.pp: 1.1.2 -> 1.2.0
parents 2cddf70d 3e758865
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
{ buildDunePackage
, fetchurl
, ppx_expect
, lib
}:
{ buildDunePackage, fetchurl, ppx_expect, lib }:

buildDunePackage rec {
  pname = "pp";
  version = "1.1.2";
  version = "1.2.0";

  src = fetchurl {
    url = "https://github.com/ocaml-dune/pp/releases/download/${version}/pp-${version}.tbz";
    hash = "sha256-5KTpjZaxu3aVD81tpOk4yG2YnfTX5I8C96RFlfWvHVY=";
    url =
      "https://github.com/ocaml-dune/pp/releases/download/${version}/pp-${version}.tbz";
    hash = "sha256-pegiVzxVr7Qtsp7FbqzR8qzY9lzy3yh44pHeN0zmkJw=";
  };

  duneVersion = "3";
@@ -20,7 +17,8 @@ buildDunePackage rec {
  doCheck = true;

  meta = with lib; {
    description = "A an alternative pretty printing library to the Format module of the OCaml standard library";
    description =
      "A an alternative pretty printing library to the Format module of the OCaml standard library";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ ];