sql-migrate: init at 1.8.0 (#406562)

This commit is contained in:
Aleksana
2025-05-16 17:16:04 +08:00
committed by GitHub
2 changed files with 32 additions and 0 deletions
+6
View File
@@ -24128,6 +24128,12 @@
github = "tebriel";
githubId = 821688;
};
tebro = {
email = "git@tebro.simplelogin.com";
name = "Richard Weber";
github = "Tebro";
githubId = 3861339;
};
techknowlogick = {
email = "techknowlogick@gitea.com";
github = "techknowlogick";
+26
View File
@@ -0,0 +1,26 @@
{
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 ];
};
}