mergiraf: init at 0.2.0 (#354870)

This commit is contained in:
Jonas Chevalier 2024-11-13 10:52:48 +01:00 committed by GitHub
parent 6da9bf9e5e
commit 6733601f45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1629 additions and 0 deletions

1588
pkgs/by-name/me/mergiraf/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,41 @@
{
stdenv,
lib,
fetchFromGitea,
rustPlatform,
# native check inputs
git,
}:
rustPlatform.buildRustPackage rec {
pname = "mergiraf";
version = "0.2.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "mergiraf";
repo = "mergiraf";
rev = "refs/tags/v${version}";
hash = "sha256-egtX2daCbPXi5rX2OxbEZA/VI9R4HMj5LRKbUEBFo+E=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"tree-sitter-go-0.23.1" = "sha256-elPqkvVYs0vADOuN/umDteWP5hqcXhQAoSkqYDtTxaU=";
"tree-sitter-xml-0.7.0" = "sha256-RTWvOUAs3Uql9DKsP1jf9FZZHaZORE40GXd+6g6RQZw=";
"tree-sitter-yaml-0.6.1" = "sha256-gS+SjOnGl/86U9VV/y1ca7naYIe7DAOvOv++jCRLTKo=";
};
};
nativeCheckInputs = [ git ];
meta = {
description = "Syntax-aware git merge driver for a growing collection of programming languages and file formats";
mainProgram = "mergiraf";
homepage = "https://mergiraf.org/";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ zimbatm ];
};
}