summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorMichael Roitzsch <reactorcontrol@icloud.com>2019-12-10 11:55:52 +0100
committerMichael Roitzsch <reactorcontrol@icloud.com>2019-12-10 11:55:52 +0100
commit5c01936d7d2b6904476c79342261cbb4ef62db11 (patch)
tree7292104f1cbb171a9fe71542b42c68b5ef87f360 /pkgs/applications/networking
parent7ca8fee383e12a1f69c92e0d8b49b6ac0c2931d8 (diff)
downloadnixpkgs-5c01936d7d2b6904476c79342261cbb4ef62db11.tar
nixpkgs-5c01936d7d2b6904476c79342261cbb4ef62db11.tar.gz
nixpkgs-5c01936d7d2b6904476c79342261cbb4ef62db11.tar.bz2
nixpkgs-5c01936d7d2b6904476c79342261cbb4ef62db11.tar.lz
nixpkgs-5c01936d7d2b6904476c79342261cbb4ef62db11.tar.xz
nixpkgs-5c01936d7d2b6904476c79342261cbb4ef62db11.tar.zst
nixpkgs-5c01936d7d2b6904476c79342261cbb4ef62db11.zip
docker-machine-xhyve: update repository location
The zchee repository now redirects to machine-drivers.
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/cluster/docker-machine/xhyve.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/docker-machine/xhyve.nix b/pkgs/applications/networking/cluster/docker-machine/xhyve.nix
index 1c2caff50d5..ae24f39adf8 100644
--- a/pkgs/applications/networking/cluster/docker-machine/xhyve.nix
+++ b/pkgs/applications/networking/cluster/docker-machine/xhyve.nix
@@ -9,7 +9,7 @@ buildGoPackage rec {
 
   src = fetchFromGitHub {
     rev    = "v${version}";
-    owner  = "zchee";
+    owner  = "machine-drivers";
     repo   = "docker-machine-driver-xhyve";
     sha256 = "0rj6pyqp4yv4j28bglqjs95rip5i77vv8mrkmqv1rxrsl3i8aqqy";
   };
@@ -18,7 +18,7 @@ buildGoPackage rec {
   buildInputs = [ Hypervisor vmnet ];
 
   meta = with stdenv.lib; {
-    homepage = https://github.com/zchee/docker-machine-driver-xhyve;
+    homepage = https://github.com/machine-drivers/docker-machine-driver-xhyve;
     description = "Xhyve driver for docker-machine.";
     license = licenses.bsd3;
     maintainers = with maintainers; [ periklis ];