go-migrate: enable all db backends

main
Sandro Jäckel 2 years ago
parent 630732fdd7
commit 9416b239fd
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 6
      pkgs/development/tools/go-migrate/default.nix

@ -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";
};
}

Loading…
Cancel
Save