Merge pull request #129005 from pimeys/planetscale

pscale: Init at 0.51.0
This commit is contained in:
Luke Granger-Brown 2021-07-05 03:22:20 +01:00 committed by GitHub
commit 40d157e05d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View file

@ -8198,6 +8198,12 @@
githubId = 1179566;
name = "Nicolas B. Pierron";
};
pimeys = {
email = "julius@nauk.io";
github = "pimeys";
githubId = 34967;
name = "Julius de Bruijn";
};
pingiun = {
email = "nixos@pingiun.com";
github = "pingiun";

View 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 ];
};
}

View file

@ -3148,6 +3148,8 @@ in
ps_mem = callPackage ../tools/system/ps_mem { };
pscale = callPackage ../development/tools/pscale { };
psstop = callPackage ../tools/system/psstop { };
precice = callPackage ../development/libraries/precice { };