nixpkgs/pkgs/tools/misc/cod/default.nix

27 lines
713 B
Nix
Raw Normal View History

2020-09-10 19:44:27 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "cod";
version = "unstable-2020-09-10";
src = fetchFromGitHub {
owner = "dim-an";
repo = pname;
rev = "ae68da08339471dd278d6df79abbfd6fe89a10fe";
sha256 = "1l3gn9v8dcy72f5xq9hwbkvkis0vp4dp8qyinsrii3acmhksg9v6";
};
vendorSha256 = "1arllkiz1hk12hq5b2zpg3f8i9lxl66mil5sdv8gnhflmb37vbv3";
2021-02-12 03:21:17 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X main.GitSha=${src.rev}" ];
2020-09-10 19:44:27 +00:00
doCheck = false;
meta = with lib; {
description = "Tool for generating Bash/Zsh autocompletions based on `--help` output";
homepage = src.meta.homepage;
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}