lol

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

authored by

quantenzitrone and committed by
GitHub
6e18225c c59a9d29

+27
+27
pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitea, 5 + }: 6 + rustPlatform.buildRustPackage rec { 7 + pname = "xdg-terminal-exec-mkhl"; 8 + version = "0.2.0"; 9 + 10 + src = fetchFromGitea { 11 + domain = "codeberg.org"; 12 + owner = "mkhl"; 13 + repo = "xdg-terminal-exec"; 14 + rev = "v${version}"; 15 + hash = "sha256-iVp+tg+OujMMddKsQ/T9wyqh/Jk/j/jQgsl23uQA/iM="; 16 + }; 17 + 18 + cargoHash = "sha256-x2oEPFx2KRhnKPX3QjGBM16nkYGclxR5mELGYvxjtMA="; 19 + 20 + meta = { 21 + description = "Alternative rust-based implementation of the proposed XDG Default Terminal Execution Specification"; 22 + license = lib.licenses.gpl3Plus; 23 + mainProgram = "xdg-terminal-exec"; 24 + maintainers = with lib.maintainers; [ quantenzitrone ]; 25 + platforms = lib.platforms.unix; 26 + }; 27 + }