mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
1d09c97ac4
grive2: update 0.5.0 grive2: various cosmetic changes
26 lines
667 B
Nix
26 lines
667 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|