Unverified Commit 5e32dc21 authored by iko's avatar iko
Browse files

pgroll: init at 0.5.0

parent 1dd37934
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };