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

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

39 lines
1009 B
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}";
sha256 = "0wi680sxpv0kp1ggy21qp4c4ms79hw4z9w9kvp278p8z3y8wwglr";
2020-09-10 19:44:27 +00:00
};
vendorSha256 = "0ann1fbh8rqys3rwbz5h9mfnvkpqiw5rgkd4c30y99706h2dzv4i";
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 ];
2022-06-29 22:23:33 +00:00
broken = true;
2020-09-10 19:44:27 +00:00
};
}