mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
spirit: init at unstable-2023-12-15
This commit is contained in:
parent
44823f6d44
commit
86a920b8d8
30
pkgs/by-name/sp/spirit/package.nix
Normal file
30
pkgs/by-name/sp/spirit/package.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule {
|
||||
pname = "spirit";
|
||||
version = "unstable-2023-12-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cashapp";
|
||||
repo = "spirit";
|
||||
rev = "3abce3e15c01b18e7a9fc12e19ad5c0f541d1ffd";
|
||||
hash = "sha256-B4z5bdb0hRx7U2RLTRDxRYt1ltACNXz/B6qAs4qjtAo=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-hKTQvTWd48mnVODWE6W541TPuxCyELLgpz96XB29kec=";
|
||||
|
||||
subPackages = [ "cmd/spirit" ];
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/cashapp/spirit";
|
||||
description = "Online schema change tool for MySQL";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ aaronjheng ];
|
||||
mainProgram = "spirit";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user