cod: init at unstable-2020-09-10

This commit is contained in:
Sandro Jäckel 2020-09-10 21:44:27 +02:00
parent 140b8718fb
commit ca682af5ea
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "cod";
version = "unstable-2020-09-10";
goPackagePath = "cod";
src = fetchFromGitHub {
owner = "dim-an";
repo = pname;
rev = "ae68da08339471dd278d6df79abbfd6fe89a10fe";
sha256 = "1l3gn9v8dcy72f5xq9hwbkvkis0vp4dp8qyinsrii3acmhksg9v6";
};
vendorSha256 = "1arllkiz1hk12hq5b2zpg3f8i9lxl66mil5sdv8gnhflmb37vbv3";
buildFlagsArray = [ "-ldflags=-X main.GitSha=${src.rev}" ];
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 ];
};
}

View File

@ -948,6 +948,8 @@ in
cloud-custodian = python3Packages.callPackage ../tools/networking/cloud-custodian { };
cod = callPackage ../tools/misc/cod { };
codespell = with python3Packages; toPythonApplication codespell;
coolreader = libsForQt5.callPackage ../applications/misc/coolreader {};