My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/opam-file-format/default.nix

22 lines
530 B

{ lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec {
pname = "opam-file-format";
version = "2.1.3";
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
rev = version;
sha256 = "1fxhppdmrysr2nb5z3c448h17np48f3ga9jih33acj78r4rdblcs";
};
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/";
};
}