mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
, pscale
|
|
, testers
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "pscale";
|
|
version = "0.213.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "planetscale";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-WgivwlsT8QytB6oaB8lQASq+YQa8lbe/6PwpJUFZifU=";
|
|
};
|
|
|
|
vendorHash = "sha256-R0ZabOquZQLONbW6p5xtYKLi8P3Q5JieM4EATT1a83U=";
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X main.version=v${version}"
|
|
"-X main.commit=v${version}"
|
|
"-X main.date=unknown"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd pscale \
|
|
--bash <($out/bin/pscale completion bash) \
|
|
--fish <($out/bin/pscale completion fish) \
|
|
--zsh <($out/bin/pscale completion zsh)
|
|
'';
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = pscale;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "CLI for PlanetScale Database";
|
|
mainProgram = "pscale";
|
|
changelog = "https://github.com/planetscale/cli/releases/tag/v${version}";
|
|
homepage = "https://www.planetscale.com/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ pimeys kashw2 ];
|
|
};
|
|
}
|