nixpkgs/pkgs/by-name/pg/pgroll/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
637 B
Nix
Raw Normal View History

2024-04-09 12:36:41 +00:00
{
buildGoModule,
fetchFromGitHub,
lib,
}:
buildGoModule rec {
pname = "pgroll";
2024-10-17 04:20:23 +00:00
version = "0.7.0";
2024-04-09 12:36:41 +00:00
src = fetchFromGitHub {
owner = "xataio";
repo = "pgroll";
rev = "v${version}";
2024-10-17 04:20:23 +00:00
hash = "sha256-7hIdm/qdcwlXC+vrEbjmBunORfEyItsr+Hia5u4ZBZk=";
2024-04-09 12:36:41 +00:00
};
2024-10-17 04:20:23 +00:00
vendorHash = "sha256-jP4tTV/4kgT86d46L47Jcr/7ZtP2rL8boZiwqLvYo40=";
2024-04-09 12:36:41 +00:00
# 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 ];
};
}