Merge remote-tracking branch 'origin/main'
All checks were successful
Plex Update / update (push) Successful in 10s
Lint / lint (push) Successful in 2s

This commit is contained in:
Vivian 2023-06-21 13:22:07 +02:00
commit 5bf26e3a3f
4 changed files with 1 additions and 1652 deletions

1623
flake.lock

File diff suppressed because it is too large Load diff

View file

@ -5,7 +5,7 @@
# * https://github.com/Infinidoge/nix-minecraft
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable-small";
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs_stable.url = "nixpkgs/nixos-23.05";

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 ];
};
}