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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, buildGoModule, python3 }:
2020-09-10 19:44:27 +00:00
buildGoModule rec {
pname = "cod";
version = "0.1.0";
2020-09-10 19:44:27 +00:00
src = fetchFromGitHub {
owner = "dim-an";
repo = pname;
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
nativeCheckInputs = [ python3 ];
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
'';
2020-09-10 19:44:27 +00:00
meta = with lib; {
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 ];
broken = stdenv.isDarwin;
2023-11-27 01:17:53 +00:00
mainProgram = "cod";
2020-09-10 19:44:27 +00:00
};
}