pgroll: init at 0.5.0

This commit is contained in:
iko 2024-04-09 15:36:41 +03:00
parent 1dd379340a
commit 5e32dc2124
No known key found for this signature in database
GPG Key ID: 82C257048D1026F2
2 changed files with 30 additions and 0 deletions

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

View File

@ -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 { };