parent
2bbcce6e25
commit
9eb2d97d6d
|
@ -56,6 +56,7 @@ in rec {
|
|||
go-modvendor = callPackage ./pkgs/go-modvendor { };
|
||||
cc-test-reporter = callPackage ./pkgs/cc-test-reporter { };
|
||||
codecov-cli = callPackage ./pkgs/codecov-cli { };
|
||||
go-generate-fast = callPackage ./pkgs/go-generate-fast { };
|
||||
|
||||
gomobile = (prev.gomobile.overrideAttrs (old: {
|
||||
patches = [
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
{ buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "go-generate-fast";
|
||||
version = "0.3.0";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
src = fetchFromGitHub rec {
|
||||
owner = "oNaiPs";
|
||||
repo = "go-generate-fast";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-NMGXOI3y3PGt+hrHhOsugACL8c5LIzpwwdt+Ne0MkY8=";
|
||||
};
|
||||
vendorHash = "sha256-8nmnTuDZvnFEPQAxOv19gUgHy6FpI3HLRtqLLob+zrE=";
|
||||
}
|
|
@ -21,7 +21,7 @@ in pkgs.mkShell {
|
|||
|
||||
buildInputs = with pkgs; [
|
||||
git jq which
|
||||
go golangci-lint go-junit-report gopls go-bindata gomobileMod codecov-cli
|
||||
go golangci-lint go-junit-report gopls go-bindata gomobileMod codecov-cli go-generate-fast
|
||||
mockgen protobuf3_20 protoc-gen-go gotestsum go-modvendor openjdk cc-test-reporter
|
||||
] ++ lib.optionals (stdenv.isDarwin) [ xcodeWrapper ];
|
||||
|
||||
|
|
Loading…
Reference in New Issue