mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
34 lines
905 B
Nix
34 lines
905 B
Nix
|
{ buildGoModule, hasura-graphql-engine }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
name = "hasura-${version}";
|
||
|
version = hasura-graphql-engine.version;
|
||
|
|
||
|
src = hasura-graphql-engine.src;
|
||
|
modRoot = "./cli";
|
||
|
|
||
|
goPackagePath = "github.com/hasura/graphql-engine/cli";
|
||
|
subPackages = [ "cmd/hasura" ];
|
||
|
|
||
|
modSha256 = "0bpb9r0n8n8c1p8sas3qanhvqw45rq8kygb4dmkfhj3d9vlgn6d2";
|
||
|
|
||
|
buildFlagsArray = [''-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";
|
||
|
};
|
||
|
}
|