This commit is contained in:
Vivian 2023-06-20 11:20:10 +02:00
parent c2b0afaf14
commit d98724ce74
4 changed files with 52 additions and 80 deletions

View file

@ -3,8 +3,6 @@ _final: prev: {
v = {
glitch-soc = prev.callPackage ./glitch-soc { };
weave-gitops = prev.callPackage ./weave-gitops { };
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;

View file

@ -1,26 +0,0 @@
{ 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 ];
};
}