2022-05-28 13:22:26 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, buildGoModule, python3 }:
|
2020-09-10 19:44:27 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "cod";
|
2021-07-11 20:35:19 +00:00
|
|
|
version = "0.1.0";
|
2020-09-10 19:44:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dim-an";
|
|
|
|
repo = pname;
|
2021-07-11 20:35:19 +00:00
|
|
|
rev = "v${version}";
|
2023-09-21 14:23:40 +00:00
|
|
|
hash = "sha256-mT7OkR8fXXTE3TPx9AmH6ehKGLk4CP9euBPs2zVAJnI=";
|
2020-09-10 19:44:27 +00:00
|
|
|
};
|
|
|
|
|
2023-09-21 14:23:40 +00:00
|
|
|
vendorHash = "sha256-kezfBDTgpOTBYKTNlwuP+M5tXU2w/MXz0B5nBJcL1io=";
|
2020-09-10 19:44:27 +00:00
|
|
|
|
2021-07-12 00:23:24 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X main.GitSha=${src.rev}" ];
|
2020-09-10 19:44:27 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ python3 ];
|
2022-04-07 14:56:46 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
pushd test/binaries/
|
|
|
|
for f in *.py; do
|
|
|
|
patchShebangs ''$f
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
export COD_TEST_BINARY="''${NIX_BUILD_TOP}/go/bin/cod"
|
2022-07-10 01:42:09 +00:00
|
|
|
|
|
|
|
substituteInPlace test/learn_test.go --replace TestLearnArgparseSubCommand SkipLearnArgparseSubCommand
|
2022-04-07 14:56:46 +00:00
|
|
|
'';
|
2020-09-10 19:44:27 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2021-07-11 20:35:19 +00:00
|
|
|
description = "Tool for generating Bash/Fish/Zsh autocompletions based on `--help` output";
|
2021-07-12 00:23:24 +00:00
|
|
|
homepage = "https://github.com/dim-an/cod/";
|
2020-09-10 19:44:27 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2023-06-25 23:06:31 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "cod";
|
2020-09-10 19:44:27 +00:00
|
|
|
};
|
|
|
|
}
|