22 lines
626 B
Nix
22 lines
626 B
Nix
{ stdenv, fetchgit, cmake, libgcrypt, json_c, curl, expat, boost, binutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "grive-0.3.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/Grive/grive.git";
|
|
rev = "51e42914f3666ee6e0bc16a4c78f60b117265c24";
|
|
sha256 = "f2b978cc93a2d16262c7b78c62019b2a58044eaef4ca95feaa74dfd4dfcbfa36";
|
|
};
|
|
|
|
buildInputs = [cmake libgcrypt json_c curl expat stdenv binutils boost];
|
|
|
|
meta = {
|
|
description = "an open source (experimental) Linux client for Google Drive";
|
|
homepage = https://github.com/Grive/grive;
|
|
license = "GPLv2";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|