depot/third_party/nixpkgs/pkgs/development/ocaml-modules/opam-file-format/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

23 lines
613 B
Nix

{ lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec {
pname = "opam-file-format";
version = "2.1.4";
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
rev = version;
sha256 = "sha256-wnAnvLNOc9FRBdLIFR08OKVaIjSEqJrcCIn4hmtYtjY=";
};
useDune2 = true;
meta = with lib; {
description = "Parser and printer for the opam file syntax";
license = licenses.lgpl21;
maintainers = with maintainers; [ vbgl ];
homepage = "https://github.com/ocaml/opam-file-format/";
changelog = "https://github.com/ocaml/opam-file-format/raw/${version}/CHANGES";
};
}