Commit 787af0f
committed
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;
})
```1 parent aafa2b2 commit 787af0f
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
| 103 | + | |
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
| |||
109 | 109 | | |
110 | 110 | | |
111 | 111 | | |
112 | | - | |
| 112 | + | |
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
| |||
0 commit comments