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";
2024-02-14 05:05:55 +00:00
version = "0.183.0";
2021-07-03 08:32:03 +00:00
src = fetchFromGitHub {
owner = "planetscale";
repo = "cli";
rev = "v${version}";
2024-02-14 05:05:55 +00:00
sha256 = "sha256-+zmfMOp+ygVUErggHz+9AkpJ7AjfUBjCRcE4Uqusjz4=";
2021-07-03 08:32:03 +00:00
};
2024-02-14 05:05:55 +00:00
vendorHash = "sha256-oENe7OGAW/i5LJbqPn7PJDemdxfSsLwmpER28R6zza4=";
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;
2023-09-03 01:55:12 +00:00
maintainers = with maintainers; [ pimeys kashw2 ];
2021-07-03 08:32:03 +00:00
};
}