We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.gitignore
1 parent f8854e8 commit cc657c2Copy full SHA for cc657c2
nix/derivation-bpf.nix
@@ -1,7 +1,8 @@
1
{ pkgs, buildGoModule, arch ? "x86" }:
2
with pkgs; buildGo122Module rec {
3
name = "security-profiles-operator";
4
- src = ./..;
+ # Use Pure to avoid exuding the .git directory
5
+ src = nix-gitignore.gitignoreSourcePure [ ../.gitignore ] ./..;
6
vendorHash = null;
7
doCheck = false;
8
outputs = [ "out" ];
nix/derivation.nix
{ pkgs, buildGoModule }:
0 commit comments