nixpkgs/pkgs/development/tools/pscale/default.nix

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

50 lines
1.1 KiB
Nix
Raw Normal View History

{ buildGoModule
, fetchFromGitHub
, installShellFiles
, lib
, pscale
, testers
}:
2021-07-03 08:32:03 +00:00
buildGoModule rec {
pname = "pscale";
2022-08-31 20:18:53 +00:00
version = "0.115.0";
2021-07-03 08:32:03 +00:00
src = fetchFromGitHub {
owner = "planetscale";
repo = "cli";
rev = "v${version}";
2022-08-31 20:18:53 +00:00
sha256 = "sha256-XiTH3Ep7dTvAdE3AAjPJztEcnvWqX+qf/zED8xpC9N0=";
2021-07-03 08:32:03 +00:00
};
2022-08-31 20:18:53 +00:00
vendorSha256 = "sha256-arTp77VocH5isIoq3B55G/6sQjVbmoduCywiJYJaAws=";
2022-03-27 06:48:05 +00:00
ldflags = [
"-s" "-w"
"-X main.version=v${version}"
"-X main.commit=v${version}"
"-X main.date=unknown"
];
2021-07-03 08:32:03 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd pscale \
--bash <($out/bin/pscale completion bash) \
--fish <($out/bin/pscale completion fish) \
--zsh <($out/bin/pscale completion zsh)
'';
passthru.tests.version = testers.testVersion {
package = pscale;
};
2021-07-03 08:32:03 +00:00
meta = with lib; {
description = "The CLI for PlanetScale Database";
changelog = "https://github.com/planetscale/cli/releases/tag/v${version}";
homepage = "https://www.planetscale.com/";
2021-07-03 08:32:03 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ pimeys ];
};
}