a98da6871f
Update the `drive` package from version "20151025" to version 0.3.8.1, replacing the package-definition files with updated versions given to me by @Mic92 in [nixpkgs GitHub issue #19749] [1]. I have tested the updated package per nixpkgs manual section 11.1 ("Making patches"), and I have tested that the update seems to fix [issue #19749] [1]. [1]: <https://github.com/NixOS/nixpkgs/issues/19749>
26 lines
602 B
Nix
26 lines
602 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "drive-${version}";
|
|
version = "0.3.8.1";
|
|
|
|
goPackagePath = "github.com/odeke-em/drive";
|
|
subPackages = [ "cmd/drive" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "odeke-em";
|
|
repo = "drive";
|
|
rev = "v${version}";
|
|
sha256 = "1b9cgc148rg5irg4jas10zv9i2km75x1zin25hld340dmpjcpi82";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/odeke-em/drive;
|
|
description = "Google Drive client for the commandline";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|