lol

Merge pull request #203840 from aaronjheng/skeema

skeema: 1.8.2 -> 1.9.0

authored by

Mario Rodas and committed by
GitHub
c49f0b22 1d79e594

+10 -6
+10 -6
pkgs/tools/system/skeema/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, coreutils }: 1 + { lib, buildGoModule, fetchFromGitHub, coreutils, runtimeShell, testers, skeema }: 2 2 3 3 buildGoModule rec { 4 4 pname = "skeema"; 5 - version = "1.8.2"; 5 + version = "1.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "skeema"; 9 9 repo = "skeema"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-PyQ5nLoJl3N/ewmHTZZHRLj9WV3EsUjL6fyESc8POss="; 11 + hash = "sha256-mzxoA5oWX94EdiapSCgyC62RCffuutWzC1YKkGfJSEU="; 12 12 }; 13 13 14 - vendorSha256 = null; 14 + vendorHash = null; 15 15 16 16 CGO_ENABLED = 0; 17 17 ··· 36 36 --replace /bin/echo "${coreutils}/bin/echo" \ 37 37 --replace /usr/bin/printf "${coreutils}/bin/printf" 38 38 39 - substituteInPlace internal/util/shellout_unix_test.go \ 40 - --replace /bin/echo "${coreutils}/bin/echo" 39 + substituteInPlace internal/util/shellout_unix.go \ 40 + --replace /bin/sh "${runtimeShell}" 41 41 ''; 42 + 43 + passthru.tests.version = testers.testVersion { 44 + package = skeema; 45 + }; 42 46 43 47 meta = with lib; { 44 48 description = "Declarative pure-SQL schema management for MySQL and MariaDB";