nixpkgs/pkgs/applications/networking/drive/default.nix
c74d a98da6871f drive: 20151025 -> 0.3.8.1
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>
2016-10-22 07:56:12 +00:00

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;
};
}