fix dependecy names in flake
Some checks failed
Build and Publish / build-release (push) Failing after 27s

This commit is contained in:
2026-04-07 13:47:26 -05:00
parent da5d944430
commit 14463a5dbe

View File

@@ -3,19 +3,19 @@
inputs = { inputs = {
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
nixpkgs-unstable.url = "nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
}; };
outputs = { self, nixpkgs-unstable, flake-utils }: outputs = { self, nixpkgs, flake-utils, }:
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system:
let let
pkgs = nixpkgs-unstable.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
package = pkgs.buildGoModule { package = pkgs.buildGoModule {
pname = "zitadel-k8s-operator"; pname = "zitadel-k8s-operator";
version = "0.0.0"; version = "0.0.0";
src = ../.; src = ../.;
doCheck = false; doCheck = false;
vendorHash = "sha256-HEXIHASdDC7chG9uF56frpvZPVbxYs/fWFytDz6CAf4="; vendorHash = "sha256-j8In3lKJ3ZpxI5i1HxasM2uqQ/j1Mmkh+VgoC2tNSGc=";
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall