depot/third_party/nixpkgs/pkgs/applications/version-management/merge-fmt/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

29 lines
820 B
Nix

{ lib, fetchurl, buildDunePackage, cmdliner, base, stdio }:
buildDunePackage rec {
pname = "merge-fmt";
version = "0.3";
src = fetchurl {
url =
"https://github.com/hhugo/merge-fmt/releases/download/${version}/merge-fmt-${version}.tbz";
hash = "sha256-F+ds0ToWcKD4NJU3yYSVW4B3m2LBnhR+4QVTDO79q14=";
};
minimalOCamlVersion = "4.06";
duneVersion = "3";
buildInputs = [ cmdliner base stdio ];
meta = with lib; {
description = "Git mergetool leveraging code formatters";
homepage = "https://github.com/hhugo/merge-fmt";
license = licenses.mit;
longDescription = ''
`merge-fmt` is a small wrapper on top git commands to help resolve
conflicts by leveraging code formatters.
'';
maintainers = [ maintainers.alizter ];
mainProgram = "merge-fmt";
};
}