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