41 lines
816 B
Nix
41 lines
816 B
Nix
|
{
|
||
|
lib,
|
||
|
buildGoModule,
|
||
|
fetchFromGitHub,
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "nhost-cli";
|
||
|
version = "1.24.5";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "nhost";
|
||
|
repo = "cli";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-/NkegGp+JoJWPIkO3YKp/aZ6Yp5tcjnRCONY0GHe+HI=";
|
||
|
};
|
||
|
|
||
|
vendorHash = null;
|
||
|
|
||
|
ldflags = [
|
||
|
"-s"
|
||
|
"-w"
|
||
|
"-X=main.Version=v${version}"
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
mv $out/bin/cli $out/bin/nhost
|
||
|
'';
|
||
|
|
||
|
checkFlags = [ "-skip=^TestMakeJSONRequest$" ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Tool for setting up a local development environment for Nhost";
|
||
|
homepage = "https://github.com/nhost/cli";
|
||
|
changelog = "https://github.com/nhost/cli/releases/tag/v${version}";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [ moraxyc ];
|
||
|
mainProgram = "nhost";
|
||
|
};
|
||
|
}
|