ocamlPackages.opam-file-format: 2.1.2 -> 2.1.3

This commit is contained in:
superherointj 2021-06-05 21:00:15 -03:00 committed by sterni
parent 48cc7f1d1c
commit b38adedf52

View file

@ -1,22 +1,22 @@
{ lib, buildDunePackage, fetchFromGitHub }: { lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec { buildDunePackage rec {
version = "2.1.2";
pname = "opam-file-format"; pname = "opam-file-format";
version = "2.1.3";
useDune2 = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ocaml"; owner = "ocaml";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "19xppn2s3yjid8jc1wh8gdf5mgmlpzby2cf2slmnbyrgln3vj6i2"; sha256 = "1fxhppdmrysr2nb5z3c448h17np48f3ga9jih33acj78r4rdblcs";
}; };
meta = { useDune2 = true;
meta = with lib; {
description = "Parser and printer for the opam file syntax"; description = "Parser and printer for the opam file syntax";
license = lib.licenses.lgpl21; license = licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ]; maintainers = with maintainers; [ vbgl ];
inherit (src.meta) homepage; homepage = "https://github.com/ocaml/opam-file-format/";
}; };
} }