mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
28 lines
723 B
Nix
28 lines
723 B
Nix
{
|
|
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;
|
|
};
|
|
}
|