My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/nixpkgs/stable/pkgs/applications/networking/gdrive/default.nix

24 lines
623 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "gdrive";
version = "2.1.0";
rev = version;
goPackagePath = "github.com/prasmussen/gdrive";
src = fetchFromGitHub {
owner = "prasmussen";
repo = "gdrive";
sha256 = "0ywm4gdmrqzb1a99vg66a641r74p7lglavcpgkm6cc2gdwzjjfg7";
inherit rev;
};
meta = with lib; {
homepage = "https://github.com/prasmussen/gdrive";
description = "A command line utility for interacting with Google Drive";
platforms = platforms.unix;
license = licenses.mit;
maintainers = [ maintainers.rzetterberg ];
};
}