Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
620 B
Nix
27 lines
620 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "sql-migrate";
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rubenv";
|
|
repo = "sql-migrate";
|
|
tag = "v${version}";
|
|
hash = "sha256-zk1ryQSjmO1ziZvMeb3BOb5rvZWgbZm39Sz1N9dJ8dM=";
|
|
};
|
|
|
|
vendorHash = "sha256-p/7oKqvbCNWom9q6UaY89GZ4sv0hx1IuzCIw0CH1EwQ=";
|
|
|
|
meta = {
|
|
description = "SQL Schema migration tool for Go. Based on gorp and goose";
|
|
homepage = "https://github.com/rubenv/sql-migrate";
|
|
mainProgram = "sql-migrate";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.tebro ];
|
|
};
|
|
}
|