Commit 96a608f3 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

kubescape: format with nixfmt

parent 4a398361
Loading
Loading
Loading
Loading
+16 −18
Original line number Diff line number Diff line
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, git
, installShellFiles
, kubescape
, testers
{
  lib,
  stdenv,
  buildGoModule,
  fetchFromGitHub,
  git,
  installShellFiles,
  kubescape,
  testers,
}:

buildGoModule rec {
@@ -22,17 +23,11 @@ buildGoModule rec {

  vendorHash = "sha256-WPa6IKPjdBtoHYKA2yYtaI1LCbkyv374fcThxbSEKxo=";

  subPackages = [
    "."
  ];
  subPackages = [ "." ];

  nativeBuildInputs = [
    installShellFiles
  ];
  nativeBuildInputs = [ installShellFiles ];

  nativeCheckInputs = [
    git
  ];
  nativeCheckInputs = [ git ];

  ldflags = [
    "-s"
@@ -89,7 +84,10 @@ buildGoModule rec {
      Jenkins, CircleCI and Github workflows.
    '';
    license = licenses.asl20;
    maintainers = with maintainers; [ fab jk ];
    maintainers = with maintainers; [
      fab
      jk
    ];
    mainProgram = "kubescape";
    broken = stdenv.isDarwin;
  };