chore(deps): update renovate/renovate docker tag to v37.68.4 #218
3 changed files with 29 additions and 0 deletions
|
@ -148,6 +148,7 @@
|
|||
(vault-push-approle-envs self { })
|
||||
(vault-push-approles self { })
|
||||
fast-repl
|
||||
v.weave-gitops
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -3,6 +3,8 @@ _final: prev: {
|
|||
v = {
|
||||
glitch-soc = prev.callPackage ./glitch-soc { };
|
||||
|
||||
weave-gitops = prev.callPackage ./weave-gitops { };
|
||||
|
||||
unbound = prev.unbound.override {
|
||||
withSystemd = true;
|
||||
withDoH = true;
|
||||
|
|
26
nixos/pkgs/weave-gitops/default.nix
Normal file
26
nixos/pkgs/weave-gitops/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
buildGoModule rec {
|
||||
pname = "weave-gitops";
|
||||
version = "0.23.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "weaveworks";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-nXFR+X63yp9IFTeW41ncBt77bCD3QFTs4phJMMLWrxs=";
|
||||
};
|
||||
|
||||
ldflags = [ "-s" "-w" "-X github.com/weaveworks/weave-gitops/cmd/gitops/version.Version=${version}" ];
|
||||
|
||||
vendorSha256 = "sha256-3CgR9F3Bz4k1MVOufaF/E2GD6+bTOnnUqOXkNO9ZFrc=";
|
||||
|
||||
subPackages = [ "cmd/gitops" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/weaveworks/weave-gitops";
|
||||
description = "Weave Gitops CLI";
|
||||
license = licenses.mpl20;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nullx76 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue