From d0b502fceabe0c98a3d2392af6ddb241b80dea61 Mon Sep 17 00:00:00 2001
From: Sascha Grunert <sgrunert@redhat.com>
Date: Tue, 9 Nov 2021 09:41:42 +0100
Subject: [PATCH] Exclude already built sources for static build

We now do not copy the `bin` directory to the target nix sources to
avoid skipping the build because "everything is up to date".

Fixes https://github.com/containers/podman/issues/12198

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
---
 nix/default-arm64.nix | 3 ++-
 nix/default.nix       | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/nix/default-arm64.nix b/nix/default-arm64.nix
index bb958a193a..fa076f27d8 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;
diff --git a/nix/default.nix b/nix/default.nix
index 1dc6f92b6d..30ae215033 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -57,7 +57,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;