3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/yq-go/default.nix

34 lines
800 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-08-23 11:26:08 +01:00
2020-02-22 00:39:23 +00:00
buildGoModule rec {
2019-08-23 11:26:08 +01:00
pname = "yq-go";
2021-02-09 19:36:32 +00:00
version = "4.5.0";
2019-08-23 11:26:08 +01:00
src = fetchFromGitHub {
owner = "mikefarah";
2021-01-19 05:58:34 +00:00
rev = "v${version}";
2019-08-23 11:26:08 +01:00
repo = "yq";
2021-02-09 19:36:32 +00:00
sha256 = "sha256-ehr9mCUbwQQSLR0iYoiJ3Xvgu+7Ue9Xvru9kAUkPCuQ=";
2019-08-23 11:26:08 +01:00
};
2021-01-19 05:58:34 +00:00
vendorSha256 = "sha256-CUELy6ajaoVzomY5lMen24DFJke3IyFzqWYyF7sws5g=";
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash fish zsh; do
2021-01-19 05:58:34 +00:00
$out/bin/yq shell-completion $shell > yq.$shell
installShellCompletion yq.$shell
done
'';
2019-08-23 11:26:08 +01:00
meta = with lib; {
2019-08-23 11:26:08 +01:00
description = "Portable command-line YAML processor";
2020-02-22 00:39:23 +00:00
homepage = "https://mikefarah.gitbook.io/yq/";
2019-08-23 11:26:08 +01:00
license = [ licenses.mit ];
maintainers = [ maintainers.lewo ];
};
}