summaryrefslogtreecommitdiff
path: root/nix/default-arm64.nix
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-11-09 15:54:28 +0100
committerGitHub <noreply@github.com>2021-11-09 15:54:28 +0100
commitc996d9f11ea1b480e7041426b70878ca75fc5519 (patch)
tree05baa42de51391eaf95beab34b41099efac7d51f /nix/default-arm64.nix
parentd4953c0185dc467517cc52ebcb99a62a8e26a84b (diff)
parentd0b502fceabe0c98a3d2392af6ddb241b80dea61 (diff)
downloadpodman-c996d9f11ea1b480e7041426b70878ca75fc5519.tar.gz
podman-c996d9f11ea1b480e7041426b70878ca75fc5519.tar.bz2
podman-c996d9f11ea1b480e7041426b70878ca75fc5519.zip
Merge pull request #12235 from saschagrunert/fix-static-build
Exclude already built sources for static build
Diffstat (limited to 'nix/default-arm64.nix')
-rw-r--r--nix/default-arm64.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/default-arm64.nix b/nix/default-arm64.nix
index bb958a193..fa076f27d 100644
--- a/nix/default-arm64.nix
+++ b/nix/default-arm64.nix
@@ -59,7 +59,8 @@ let
self = with pkgs; buildGoModule rec {
name = "podman";
- src = ./..;
+ src = builtins.filterSource
+ (path: type: !(type == "directory" && baseNameOf path == "bin")) ./..;
vendorSha256 = null;
doCheck = false;
enableParallelBuilding = true;