mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
29 lines
632 B
Nix
29 lines
632 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|