mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
oyui: init at 0.2.1
This commit is contained in:
parent
7890ba0a99
commit
c7410cbde4
1 changed files with 34 additions and 0 deletions
34
pkgs/by-name/oy/oyui/package.nix
Normal file
34
pkgs/by-name/oy/oyui/package.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
__structuredAttrs = true;
|
||||
|
||||
pname = "oyui";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "emilien-jegou";
|
||||
repo = "oyui";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-Z69mBOZFHqslZLC2WutvkhcydxAmO9pppapJSTeHtiA=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-3XzTbrEDFzCf2rsvJu/foiDYEoO4lLMsr+4t9nDYv34=";
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Modern TUI merge tool and interactive diff editor for Jujutsu (jj) and Git";
|
||||
homepage = "https://github.com/emilien-jegou/oyui";
|
||||
changelog = "https://github.com/emilien-jegou/oyui/blob/${finalAttrs.src.tag}/CHANGELOG.md";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [
|
||||
adda
|
||||
];
|
||||
mainProgram = "oyui";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue