bonfire/packages/wezterm/default.nix
L-Nafaryus 44338f20c5
All checks were successful
nix / check (push) Successful in 2m58s
Revert "packages.wezterm: own derivation build (incomplete)"
This reverts commit f68d7a7e3a.
2024-09-22 22:04:39 +05:00

17 lines
353 B
Nix

{
lib,
weztermPkgs,
...
}:
weztermPkgs.default.overrideAttrs (old: {
pname = "wezterm";
meta =
old.meta
// {
homepage = "https://github.com/wez/wezterm";
description = "A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust";
license = lib.licenses.mit;
};
})