about summary refs log tree commit diff
path: root/pkgs/applications/networking/drive
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-09-05 00:42:49 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-09-05 00:42:49 -0700
commitf2271f7c19eb09bfaa16ded54a69a183100a30dd (patch)
tree2d731609bbfc6dc9b168965b9f0e0448a52c7a04 /pkgs/applications/networking/drive
parent31f5bbdaff6d8986f804df31ae07640ed896d129 (diff)
drive: Migrate to go-packages
Diffstat (limited to 'pkgs/applications/networking/drive')
-rw-r--r--pkgs/applications/networking/drive/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/applications/networking/drive/default.nix b/pkgs/applications/networking/drive/default.nix
deleted file mode 100644
index 0af104fa380f3..0000000000000
--- a/pkgs/applications/networking/drive/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, goPackages, fetchFromGitHub }:
-
-with goPackages;
-
-buildGoPackage rec {
-  rev = "4530cf8d59e1047cb1c005a6bd5b14ecb98b9e68";
-  name = "drive-${lib.strings.substring 0 7 rev}";
-  goPackagePath = "github.com/odeke-em/drive";
-  src = fetchFromGitHub {
-    inherit rev;
-    owner = "odeke-em";
-    repo = "drive";
-    sha256 = "1y4qlzvgg84mh8l6bhaazzy6bv6dwjcbpm0rxvvc5aknvvh581ps";
-  };
-
-  subPackages = [ "cmd/drive" ];
-
-  buildInputs = [ pb go-isatty command dts odeke-em.log statos xon odeke-em.google-api-go-client cli-spinner oauth2 text net ];
-
-  dontInstallSrc = true;
-
-  meta = with lib; {
-    description = "A tiny program to pull or push Google Drive files";
-    homepage = https://github.com/odeke-em/drive;
-    license = licenses.asl20;
-    maintainers = with maintainers; [ bobvanderlinden ];
-    platforms = platforms.linux;
-  };
-}