nixpkgs/pkgs/applications/terminal-emulators/kitty
Artturin 787af0f79f kitty: make possible to override goModules
go-modules name had to be changed to goModules so it becomes a env
var (bash vars can't contain -)

enables overriding the build without overriding configurePhase

```
pkgs.kitty.overrideAttrs (finalAttrs: previousAttrs: {
  name = "kitty-master";
  version = "master";
  src = pkgs.fetchFromGitHub {
    owner = "kovidgoyal";
    repo = "kitty";
    rev = "66a2efd191f98a1a5b3c2d4fdc9569204b445a2f";
    sha256 = "sha256-pJuhnJOjGBflHXOOYKrg9/e3c+VGEESZtfka84ARCd4=";
  };
  goModules = (pkgs.buildGoModule {
    pname = "kitty-go-modules";
    inherit (finalAttrs) src version;
    vendorHash = "sha256-eAovZ/7JnvXlnlFyt0skhYJ1Nrzy2XCpRlQvSmWCyaY=";
  }).go-modules;
})
```
2023-07-05 18:20:10 +03:00
..
default.nix kitty: make possible to override goModules 2023-07-05 18:20:10 +03:00
disable-test_ssh_bootstrap_with_different_launchers.patch
fix-test_ssh_env_vars.patch
themes.nix kitty-themes: unstable-2023-03-08 -> unstable-2023-06-01 2023-06-02 11:25:23 +00:00
zsh-compinit.patch