summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-09-20 22:22:53 +0200
committerDaiderd Jordan <daiderd@gmail.com>2018-09-20 22:22:53 +0200
commit33f818198b5f22afe22e95672e3aff5d03280e5a (patch)
treede61293c6740fc3213f77f2b474ecd485754edd6
parent709a828e713b028a3dc5e9de9ed1711a405d010b (diff)
downloadnixpkgs-33f818198b5f22afe22e95672e3aff5d03280e5a.tar
nixpkgs-33f818198b5f22afe22e95672e3aff5d03280e5a.tar.gz
nixpkgs-33f818198b5f22afe22e95672e3aff5d03280e5a.tar.bz2
nixpkgs-33f818198b5f22afe22e95672e3aff5d03280e5a.tar.lz
nixpkgs-33f818198b5f22afe22e95672e3aff5d03280e5a.tar.xz
nixpkgs-33f818198b5f22afe22e95672e3aff5d03280e5a.tar.zst
nixpkgs-33f818198b5f22afe22e95672e3aff5d03280e5a.zip
docker-proxy: mark linux only
Unlike docker (cli only) this probably won't work on darwin.

    github.com/docker/libnetwork/networkdb
    can't load package: package github.com/docker/libnetwork/ns: build constraints exclude all Go files in /private/tmp/nix-build-docker-proxy-7b2b1feb1de4817d522cc372af149ff48d25028e.drv-0/go/src/github.com/docker/libnetwork/ns

/cc ZHF #45961
-rw-r--r--pkgs/applications/virtualization/docker/proxy.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/virtualization/docker/proxy.nix b/pkgs/applications/virtualization/docker/proxy.nix
index 651631b478f..8b7021f7dbb 100644
--- a/pkgs/applications/virtualization/docker/proxy.nix
+++ b/pkgs/applications/virtualization/docker/proxy.nix
@@ -24,6 +24,6 @@ buildGoPackage rec {
     license = licenses.asl20;
     homepage = https://github.com/docker/libnetwork;
     maintainers = with maintainers; [vdemeester];
-    platforms = docker.meta.platforms;
+    platforms = platforms.linux;
   };
 }