mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
35 lines
842 B
Nix
35 lines
842 B
Nix
{ buildGoModule, hasura-graphql-engine }:
|
|
|
|
buildGoModule rec {
|
|
pname = "hasura";
|
|
version = hasura-graphql-engine.version;
|
|
|
|
src = hasura-graphql-engine.src;
|
|
modRoot = "./cli";
|
|
|
|
subPackages = [ "cmd/hasura" ];
|
|
|
|
vendorHash = "sha256-S6xyevC/7dpn2Ana5mkROwIOvtQVPThoNEVKkXQmUGY=";
|
|
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-X github.com/hasura/graphql-engine/cli/version.BuildVersion=${version}"
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/{bash-completion/completions,zsh/site-functions}
|
|
|
|
export HOME=$PWD
|
|
$out/bin/hasura completion bash > $out/share/bash-completion/completions/hasura
|
|
$out/bin/hasura completion zsh > $out/share/zsh/site-functions/_hasura
|
|
'';
|
|
|
|
meta = {
|
|
inherit (hasura-graphql-engine.meta) license homepage maintainers;
|
|
description = "Hasura GraphQL Engine CLI";
|
|
};
|
|
}
|