nixpkgs/pkgs/applications/networking/gdrive/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
928 B
Nix
Raw Normal View History

2023-01-25 10:53:49 +00:00
{ lib, buildGoModule, fetchFromGitHub, fetchpatch }:
2023-01-25 10:53:49 +00:00
buildGoModule rec {
pname = "gdrive";
2023-01-25 10:53:49 +00:00
version = "2.1.1";
src = fetchFromGitHub {
2023-01-25 10:53:49 +00:00
owner = "prasmussen";
repo = "gdrive";
rev = version;
hash = "sha256-2dJmGFHfGSroucn4WgiV2NExBs5wtMDe2kX1jDBwbRs=";
};
2023-01-25 10:53:49 +00:00
deleteVendor = true;
vendorHash = "sha256-sHNP1YwnZYu0UfgLx5+gxJmesY8Brt7rr9cptlyk9Bk=";
patches = [
# Add Go Modules support
(fetchpatch {
url = "https://github.com/prasmussen/gdrive/pull/585/commits/faa6fc3dc104236900caa75eb22e9ed2e5ecad42.patch";
hash = "sha256-W8o2ZfhQFJISHfPavjx9sw5UB6xOZ7qRW4L0bHNddS8=";
})
];
ldflags = [ "-s" "-w" ];
meta = with lib; {
2023-01-25 10:53:49 +00:00
homepage = "https://github.com/prasmussen/gdrive";
description = "A command line utility for interacting with Google Drive";
2023-01-25 10:53:49 +00:00
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.rzetterberg ];
};
}