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

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

35 lines
883 B
Nix
Raw Normal View History

2023-01-25 10:44:50 +00:00
{ lib, buildGoModule, fetchFromGitHub, fetchpatch }:
2016-06-05 21:30:28 +00:00
2023-01-25 10:44:50 +00:00
buildGoModule rec {
pname = "drive";
2023-01-25 10:44:50 +00:00
version = "0.4.0";
2016-06-05 21:30:28 +00:00
src = fetchFromGitHub {
owner = "odeke-em";
repo = "drive";
rev = "v${version}";
2023-01-25 10:44:50 +00:00
hash = "sha256-mNOeOB0Tn5eqULFJZuE18PvLoHtnspv4AElmgEQKXcU=";
2016-06-05 21:30:28 +00:00
};
2023-01-25 10:44:50 +00:00
vendorHash = "sha256-F/ikdr7UCVlNv2yiEemyB7eIkYi3mX+rJvSfX488RFc=";
patches = [
# Add Go Modules support
(fetchpatch {
url = "https://github.com/odeke-em/drive/commit/0fb4bb2cf83a7293d9a33b00f8fc07e1c8dd8b7c.patch";
hash = "sha256-4PxsgfufhTfmy/7N5QahIhmRa0rb2eUDXJ66pYb6jFg=";
})
];
subPackages = [ "cmd/drive" ];
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/odeke-em/drive";
description = "Google Drive client for the commandline";
license = licenses.asl20;
2023-01-25 10:44:50 +00:00
maintainers = with maintainers; [ aaronjheng ];
};
2016-06-05 21:30:28 +00:00
}