Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions nix/packages/gatekeeper.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{ pkgs, ... }:
let

go124 = pkgs.go_1_24;
buildGoModule124 = pkgs.buildGoModule.override { go = go124; };

upstream-gatekeeper = buildGoModule124 {
upstream-gatekeeper = pkgs.buildGoModule {
pname = "jit-db-gatekeeper";
version = "1.0.5";
src = pkgs.fetchFromGitHub {
Expand Down
6 changes: 1 addition & 5 deletions nix/packages/supascan.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{ pkgs, lib, ... }:
let
# Use Go 1.24 for the scanner which requires Go >= 1.23.2
go124 = pkgs.go_1_24;
buildGoModule124 = pkgs.buildGoModule.override { go = go124; };

# Package GOSS - server validation spec runner
goss = pkgs.buildGoModule rec {
pname = "goss";
Expand All @@ -28,7 +24,7 @@ let
};

# Main supascan CLI - consolidated tool for baseline generation and validation
supascan = buildGoModule124 {
supascan = pkgs.buildGoModule {
pname = "supascan";
version = "1.0.0";

Expand Down
Loading