mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 15:17:33 +00:00
cod: init at unstable-2020-09-10
This commit is contained in:
parent
140b8718fb
commit
ca682af5ea
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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user