summaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-29 11:51:19 -0500
committerGitHub <noreply@github.com>2021-01-29 11:51:19 -0500
commitb59848a2b92b1554c55f6bd33a105c0fef158b8a (patch)
tree430b8ada9ef6c3f8275a2ef21400c440edb1271e /nix
parent755d9b33ec9c6f0169d18c76cdf0d530bbcad31a (diff)
parent8d979e093e8a5d79f192f123dbcfc2c973d3bb21 (diff)
downloadpodman-b59848a2b92b1554c55f6bd33a105c0fef158b8a.tar.gz
podman-b59848a2b92b1554c55f6bd33a105c0fef158b8a.tar.bz2
podman-b59848a2b92b1554c55f6bd33a105c0fef158b8a.zip
Merge pull request #9143 from cevich/static_remote
Cirrus: Build static podman-remote
Diffstat (limited to 'nix')
-rw-r--r--nix/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nix/default.nix b/nix/default.nix
index 13b4585ea..7745d8b50 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -49,9 +49,11 @@ let
buildPhase = ''
patchShebangs .
make bin/podman
+ make bin/podman-remote
'';
installPhase = ''
install -Dm755 bin/podman $out/bin/podman
+ install -Dm755 bin/podman-remote $out/bin/podman-remote
'';
};
in self