pscale: Init at 0.51.0
This commit is contained in:
parent
2a989bfbce
commit
dcd1a5d673
2 changed files with 25 additions and 0 deletions
23
pkgs/development/tools/pscale/default.nix
Normal file
23
pkgs/development/tools/pscale/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pscale";
|
||||
version = "0.51.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "planetscale";
|
||||
repo = "cli";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ykHwDVwL30uXeCEP4EcM8TPYqZmCDDAUUpfinpYipHE=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-3VP2fluQLZs4nWT3O6NmCFxrqKw0/j3ASNxtbXHlZEA=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.planetscale.com/";
|
||||
changelog = "https://github.com/planetscale/cli/releases/tag/v${version}";
|
||||
description = "The CLI for PlanetScale Database";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ pimeys ];
|
||||
};
|
||||
}
|
|
@ -3149,6 +3149,8 @@ in
|
|||
|
||||
ps_mem = callPackage ../tools/system/ps_mem { };
|
||||
|
||||
pscale = callPackage ../development/tools/pscale { };
|
||||
|
||||
psstop = callPackage ../tools/system/psstop { };
|
||||
|
||||
precice = callPackage ../development/libraries/precice { };
|
||||
|
|
Loading…
Reference in a new issue