Unverified Commit 94115b74 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

pgroll: 0.8.0 -> 0.10.0 (#394776)

parents f582afbb c7da4e2b
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
@@ -5,22 +5,23 @@
  libpg_query,
  xxHash,
}:

buildGoModule rec {
  pname = "pgroll";
  version = "0.8.0";
  version = "0.10.0";

  src = fetchFromGitHub {
    owner = "xataio";
    repo = "pgroll";
    tag = "v${version}";
    hash = "sha256-iRa1dCUKmGUBpWjQXgKGrVu69WaTGQD8XhKmNxkF0JI=";
    hash = "sha256-AJ0dTvywbwwSHOwSPrAgTE9M1AMvo/GRj6L1dZM9Hz8=";
  };

  vendorHash = "sha256-XTypaCEB0+cfAmN4UyDRQgiF7spQhkiH2jCwjhd3I8Y=";
  proxyVendor = true;

  excludedPackages = [
    "dev"
  ];
  vendorHash = "sha256-olblf/mi/M9Zo4C/fR/Z11C+bAEFOy7bz7EXfMn8Akw=";

  excludedPackages = [ "dev" ];

  buildInputs = [
    libpg_query
@@ -33,6 +34,7 @@ buildGoModule rec {
  meta = {
    description = "PostgreSQL zero-downtime migrations made easy";
    license = lib.licenses.asl20;
    mainProgram = "pgroll";
    homepage = "https://github.com/xataio/pgroll";
    maintainers = with lib.maintainers; [ ilyakooo0 ];
  };