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

pgroll: init at 0.5.0

authored by Mario Rodas and committed by GitHub ef62fadd c901f1a7

+28
+28
pkgs/by-name/pg/pgroll/package.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "pgroll"; 8 + version = "0.5.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "xataio"; 12 + repo = "pgroll"; 13 + rev = "v${version}"; 14 + hash = "sha256-VYGwIJsPVilFxvglj+E7H9NpqUV1CV/ggBP3gFleWIA="; 15 + }; 16 + 17 + vendorHash = "sha256-Fz+o1jSoMfqKYo1I7VUFqbhBEgcoQEx7aYsmzCLsbnI="; 18 + 19 + # Tests require a running docker daemon 20 + doCheck = false; 21 + 22 + meta = with lib; { 23 + description = "PostgreSQL zero-downtime migrations made easy"; 24 + license = licenses.asl20; 25 + homepage = "https://github.com/xataio/pgroll"; 26 + maintainers = with maintainers; [ ilyakooo0 ]; 27 + }; 28 + }