summary refs log tree commit diff
path: root/pkgs/build-support/docker/default.nix
diff options
context:
space:
mode:
authorAntoine Eiche <lewo@abesis.fr>2018-05-24 10:33:18 +0200
committerRobin Gloster <mail@glob.in>2018-05-24 15:33:52 +0200
commit8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d (patch)
tree2768137c1eab68839f69472e8c4ba46ea3cef51b /pkgs/build-support/docker/default.nix
parente22d072c641bdd4f615932b8afb06aed518867d5 (diff)
downloadnixpkgs-8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d.tar
nixpkgs-8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d.tar.gz
nixpkgs-8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d.tar.bz2
nixpkgs-8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d.tar.lz
nixpkgs-8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d.tar.xz
nixpkgs-8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d.tar.zst
nixpkgs-8f71ce7e80caad32bfd4e85fb67c4e9fbca5a82d.zip
skopeo: 0.1.29 -> 0.1.30
Skopeo used by our docker tools was patched to work in the build
sandbox (it used /var/tmp which is not available in the sandbox).
Since this temporary directory can now be set at build time, we remove
the patch from our docker tools.
Diffstat (limited to 'pkgs/build-support/docker/default.nix')
-rw-r--r--pkgs/build-support/docker/default.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix
index 374b71d42a3..0aded149dd2 100644
--- a/pkgs/build-support/docker/default.nix
+++ b/pkgs/build-support/docker/default.nix
@@ -52,15 +52,7 @@ rec {
       outputHashAlgo = "sha256";
       outputHash = sha256;
 
-      # One of the dependencies of Skopeo uses a hardcoded /var/tmp for storing
-      # big image files, which is not available in sandboxed builds.
-      nativeBuildInputs = lib.singleton (pkgs.skopeo.overrideAttrs (drv: {
-        postPatch = (drv.postPatch or "") + ''
-          sed -i -e 's!/var/tmp!/tmp!g' \
-            vendor/github.com/containers/image/storage/storage_image.go \
-            vendor/github.com/containers/image/internal/tmpdir/tmpdir.go
-        '';
-      }));
+      nativeBuildInputs = lib.singleton (pkgs.skopeo);
       SSL_CERT_FILE = "${pkgs.cacert.out}/etc/ssl/certs/ca-bundle.crt";
 
       sourceURL = "docker://${imageName}@${imageDigest}";