mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
pgroll: init at 0.5.0
This commit is contained in:
parent
1dd379340a
commit
5e32dc2124
28
pkgs/development/tools/pgroll/default.nix
Normal file
28
pkgs/development/tools/pgroll/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pgroll";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xataio";
|
||||
repo = "pgroll";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-VYGwIJsPVilFxvglj+E7H9NpqUV1CV/ggBP3gFleWIA=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-Fz+o1jSoMfqKYo1I7VUFqbhBEgcoQEx7aYsmzCLsbnI=";
|
||||
|
||||
# Tests require a running docker daemon
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "PostgreSQL zero-downtime migrations made easy";
|
||||
license = licenses.asl20;
|
||||
homepage = "https://github.com/xataio/pgroll";
|
||||
maintainers = with maintainers; [ ilyakooo0 ];
|
||||
};
|
||||
}
|
@ -19443,6 +19443,8 @@ with pkgs;
|
||||
|
||||
pgcli = with pkgs.python3Packages; toPythonApplication pgcli;
|
||||
|
||||
pgroll = callPackage ../development/tools/pgroll{ } ;
|
||||
|
||||
picotool = callPackage ../development/tools/picotool { };
|
||||
|
||||
planus = callPackage ../development/tools/misc/planus { };
|
||||
|
Loading…
Reference in New Issue
Block a user