65 lines
1.6 KiB
Nix
65 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
autoreconfHook,
|
|
freetds,
|
|
readline,
|
|
libiconv,
|
|
}:
|
|
|
|
let
|
|
mainVersion = "2.5";
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "sqsh";
|
|
version = "${mainVersion}.16.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sqsh/sqsh/sqsh-${mainVersion}/${pname}-${version}.tgz";
|
|
sha256 = "1wi0hdmhk7l8nrz4j3kaa177mmxyklmzhj7sq1gj4q6fb8v1yr6n";
|
|
};
|
|
|
|
preConfigure =
|
|
''
|
|
export SYBASE=${freetds}
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace configure --replace "libct.so" "libct.dylib"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [
|
|
freetds
|
|
readline
|
|
libiconv
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
# https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/databases/sqsh/patches/patch-src_cmd_connect_c
|
|
name = "patch-src_cmd_connect_c.patch";
|
|
url = "https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/ports/databases/sqsh/patches/patch-src_cmd_connect_c?rev=1.2&content-type=text/plain";
|
|
sha256 = "1dz97knr2h0a0ca1vq2mx6h8s3ns9jb1a0qraa4wkfmcdi3aqw0j";
|
|
})
|
|
];
|
|
|
|
patchFlags = [ "-p0" ];
|
|
|
|
meta = with lib; {
|
|
description = "Command line tool for querying Sybase/MSSQL databases";
|
|
mainProgram = "sqsh";
|
|
longDescription = ''
|
|
Sqsh (pronounced skwish) is short for SQshelL (pronounced s-q-shell),
|
|
it is intended as a replacement for the venerable 'isql' program supplied
|
|
by Sybase.
|
|
'';
|
|
license = licenses.gpl2;
|
|
homepage = "https://sourceforge.net/projects/sqsh/";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|