Unverified Commit ef62fadd authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #302822 from ilyakooo0/iko/init-pgroll

pgroll: init at 0.5.0
parents c901f1a7 0fb5cc00
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 ];
  };
}