containers/apps/ci-os/packages/kube-linter/default.nix
Tommy Skaug 14a76a5d7c
Some checks failed
Build and Push Images with Kaniko / discover-dockerfiles (push) Successful in 59s
Build and Push Images with Kaniko / build-and-push (push) Failing after 4s
misc
2024-12-30 21:50:06 +01:00

19 lines
406 B
Nix

{ lib, pkgs }:
pkgs.buildGoModule rec {
pname = "kubelinter";
version = "v0.7.1";
# Fetch the source from the GitHub repository
src = pkgs.fetchFromGitHub {
owner = "stackrox";
repo = "kube-linter";
rev = "v0.7.1";
sha256 = "<replace-with-correct-sha256>";
};
# Vendor dependencies for reproducibility
vendorHash = "<replace-with-vendor-hash>";
subPackages = [ "." ];
}