xdg-terminal-exec-mkhl: init at 0.2.0 (#310740)

This commit is contained in:
quantenzitrone 2024-05-13 08:20:04 +00:00 committed by GitHub
parent c59a9d297b
commit 6e18225ca6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,27 @@
{
lib,
rustPlatform,
fetchFromGitea,
}:
rustPlatform.buildRustPackage rec {
pname = "xdg-terminal-exec-mkhl";
version = "0.2.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "mkhl";
repo = "xdg-terminal-exec";
rev = "v${version}";
hash = "sha256-iVp+tg+OujMMddKsQ/T9wyqh/Jk/j/jQgsl23uQA/iM=";
};
cargoHash = "sha256-x2oEPFx2KRhnKPX3QjGBM16nkYGclxR5mELGYvxjtMA=";
meta = {
description = "Alternative rust-based implementation of the proposed XDG Default Terminal Execution Specification";
license = lib.licenses.gpl3Plus;
mainProgram = "xdg-terminal-exec";
maintainers = with lib.maintainers; [ quantenzitrone ];
platforms = lib.platforms.unix;
};
}