go-migrate: enable all db backends

This commit is contained in:
Sandro Jäckel
2022-03-30 02:09:31 +02:00
parent 630732fdd7
commit 9416b239fd
@@ -15,11 +15,13 @@ buildGoModule rec {
subPackages = [ "cmd/migrate" ];
tags = [ "postgres" "mysql" "redshift" "cassandra" "spanner" "cockroachdb" "clickhouse" "mongodb" "sqlserver" "firebird" "neo4j" "pgx" ];
meta = with lib; {
homepage = "https://github.com/golang-migrate/migrate";
homepage = "https://github.com/golang-migrate/migrate";
description = "Database migrations. CLI and Golang library";
maintainers = with maintainers; [ offline ];
license = licenses.mit;
license = licenses.mit;
mainProgram = "migrate";
};
}