skeema: 1.8.2 -> 1.9.0

This commit is contained in:
Aaron Jheng 2022-12-01 00:44:39 +00:00
parent adcf1b105b
commit ffd251aec3
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,17 +1,17 @@
{ lib, buildGoModule, fetchFromGitHub, coreutils }: { lib, buildGoModule, fetchFromGitHub, coreutils, runtimeShell, testers, skeema }:
buildGoModule rec { buildGoModule rec {
pname = "skeema"; pname = "skeema";
version = "1.8.2"; version = "1.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "skeema"; owner = "skeema";
repo = "skeema"; repo = "skeema";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-PyQ5nLoJl3N/ewmHTZZHRLj9WV3EsUjL6fyESc8POss="; hash = "sha256-mzxoA5oWX94EdiapSCgyC62RCffuutWzC1YKkGfJSEU=";
}; };
vendorSha256 = null; vendorHash = null;
CGO_ENABLED = 0; CGO_ENABLED = 0;
@ -36,10 +36,14 @@ buildGoModule rec {
--replace /bin/echo "${coreutils}/bin/echo" \ --replace /bin/echo "${coreutils}/bin/echo" \
--replace /usr/bin/printf "${coreutils}/bin/printf" --replace /usr/bin/printf "${coreutils}/bin/printf"
substituteInPlace internal/util/shellout_unix_test.go \ substituteInPlace internal/util/shellout_unix.go \
--replace /bin/echo "${coreutils}/bin/echo" --replace /bin/sh "${runtimeShell}"
''; '';
passthru.tests.version = testers.testVersion {
package = skeema;
};
meta = with lib; { meta = with lib; {
description = "Declarative pure-SQL schema management for MySQL and MariaDB"; description = "Declarative pure-SQL schema management for MySQL and MariaDB";
homepage = "https://skeema.io/"; homepage = "https://skeema.io/";