Merge pull request #97700 from SuperSandro2000/cod
This commit is contained in:
commit
5a9358ce26
28
pkgs/tools/misc/cod/default.nix
Normal file
28
pkgs/tools/misc/cod/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -954,6 +954,8 @@ in
|
|||||||
|
|
||||||
cloud-custodian = python3Packages.callPackage ../tools/networking/cloud-custodian { };
|
cloud-custodian = python3Packages.callPackage ../tools/networking/cloud-custodian { };
|
||||||
|
|
||||||
|
cod = callPackage ../tools/misc/cod { };
|
||||||
|
|
||||||
codespell = with python3Packages; toPythonApplication codespell;
|
codespell = with python3Packages; toPythonApplication codespell;
|
||||||
|
|
||||||
coolreader = libsForQt5.callPackage ../applications/misc/coolreader {};
|
coolreader = libsForQt5.callPackage ../applications/misc/coolreader {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user