mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
073cc84c9b
Signed-off-by: Rudi Grinberg <me@rgrinberg.com>
24 lines
669 B
Nix
24 lines
669 B
Nix
{ lib, fetchurl, buildDunePackage, csexp, sexplib0 }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocamlformat-rpc-lib";
|
|
version = "0.19.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml-ppx/ocamlformat/releases/download/${version}/ocamlformat-${version}.tbz";
|
|
sha256 = "sha256-YvxGqujwpKM85/jXcm1xCb/2Fepvy1DRSC8h0g7lD0Y=";
|
|
};
|
|
|
|
minimumOCamlVersion = "4.08";
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [ csexp sexplib0 ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ocaml-ppx/ocamlformat";
|
|
description = "Auto-formatter for OCaml code (RPC mode)";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Zimmi48 marsam ];
|
|
};
|
|
}
|