summary refs log tree commit diff
path: root/pkgs/tools/filesystems/grive2
diff options
context:
space:
mode:
authorguaraqe <guaraqe@openmailbox.org>2016-03-21 00:49:59 +0100
committerguaraqe <guaraqe@openmailbox.org>2016-03-31 15:42:45 +0200
commit1d09c97ac40dc3c1b780055409d57281c49f234a (patch)
tree7e6db5a5868a99e92e0764c048fec96ab235807f /pkgs/tools/filesystems/grive2
parente45c1aad669f1aa1556f947a87dc9b5b7109243e (diff)
downloadnixpkgs-1d09c97ac40dc3c1b780055409d57281c49f234a.tar
nixpkgs-1d09c97ac40dc3c1b780055409d57281c49f234a.tar.gz
nixpkgs-1d09c97ac40dc3c1b780055409d57281c49f234a.tar.bz2
nixpkgs-1d09c97ac40dc3c1b780055409d57281c49f234a.tar.lz
nixpkgs-1d09c97ac40dc3c1b780055409d57281c49f234a.tar.xz
nixpkgs-1d09c97ac40dc3c1b780055409d57281c49f234a.tar.zst
nixpkgs-1d09c97ac40dc3c1b780055409d57281c49f234a.zip
grive2: init at 0.5.0
grive2: update 0.5.0

grive2: various cosmetic changes
Diffstat (limited to 'pkgs/tools/filesystems/grive2')
-rw-r--r--pkgs/tools/filesystems/grive2/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/grive2/default.nix b/pkgs/tools/filesystems/grive2/default.nix
new file mode 100644
index 00000000000..a3ee1b67bab
--- /dev/null
+++ b/pkgs/tools/filesystems/grive2/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchFromGitHub, pkgconfig, fetchurl, yajl, cmake, libgcrypt, curl, expat, boost, binutils }:
+
+stdenv.mkDerivation rec {
+  version = "0.5.0";
+  name = "grive2-${version}";
+
+  src = fetchFromGitHub {
+    owner = "vitalif";
+    repo = "grive2";
+    rev =  "v${version}";
+    sha256 = "0gyic9228j25l5x8qj9xxxp2cgbw6y4skxqx0xrq6qilhv4lj23c";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+
+  buildInputs = [ libgcrypt yajl curl expat stdenv boost binutils ];
+
+  meta = with stdenv.lib; {
+    description = "A console Google Drive client";
+    homepage = https://github.com/vitalif/grive2;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+  };
+
+}