nixpkgs/pkgs/by-name/sk/skeema/package.nix

62 lines
1.6 KiB
Nix

{ lib, buildGoModule, fetchFromGitHub, coreutils, testers, skeema }:
buildGoModule rec {
pname = "skeema";
version = "1.12.0";
src = fetchFromGitHub {
owner = "skeema";
repo = "skeema";
rev = "v${version}";
hash = "sha256-MdaMK65PWreIPTuhsm+2ZVRQ8t/wYijkENk8qvX9oEM=";
};
vendorHash = null;
CGO_ENABLED = 0;
ldflags = [ "-s" "-w" ];
preCheck = ''
# Fix tests expecting /usr/bin/printf and /bin/echo
substituteInPlace skeema_cmd_test.go \
--replace /usr/bin/printf "${coreutils}/bin/printf"
substituteInPlace internal/fs/dir_test.go \
--replace /bin/echo "${coreutils}/bin/echo" \
--replace /usr/bin/printf "${coreutils}/bin/printf"
substituteInPlace internal/applier/ddlstatement_test.go \
--replace /bin/echo "${coreutils}/bin/echo"
'';
checkFlags =
let
skippedTests = [
# Tests requiring network access to gitlab.com
"TestDirRelPath"
"TestParseDir"
# Flaky tests
"TestCommandTimeout"
"TestShellOutTimeout"
# Fails with 'internal/fs/testdata/cfgsymlinks1/validrel/.skeema is a symlink pointing outside of its repo'.
"TestParseDirSymlinks"
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
passthru.tests.version = testers.testVersion {
package = skeema;
};
meta = with lib; {
description = "Declarative pure-SQL schema management for MySQL and MariaDB";
homepage = "https://skeema.io/";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "skeema";
};
}