fix dependecy names in flake
Some checks failed
Build and Publish / build-release (push) Failing after 27s
Some checks failed
Build and Publish / build-release (push) Failing after 27s
This commit is contained in:
@@ -3,19 +3,19 @@
|
||||
|
||||
inputs = {
|
||||
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:
|
||||
let
|
||||
pkgs = nixpkgs-unstable.legacyPackages.${system};
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
package = pkgs.buildGoModule {
|
||||
pname = "zitadel-k8s-operator";
|
||||
version = "0.0.0";
|
||||
src = ../.;
|
||||
doCheck = false;
|
||||
vendorHash = "sha256-HEXIHASdDC7chG9uF56frpvZPVbxYs/fWFytDz6CAf4=";
|
||||
vendorHash = "sha256-j8In3lKJ3ZpxI5i1HxasM2uqQ/j1Mmkh+VgoC2tNSGc=";
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
|
||||
Reference in New Issue
Block a user