2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, freetds, readline, libiconv }:
|
2014-06-20 17:38:05 +01:00
|
|
|
|
2017-11-04 03:26:29 +00:00
|
|
|
let
|
|
|
|
mainVersion = "2.5";
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sqsh";
|
2017-11-04 03:26:29 +00:00
|
|
|
version = "${mainVersion}.16.1";
|
2014-06-20 17:38:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/sqsh/sqsh/sqsh-${mainVersion}/${pname}-${version}.tgz";
|
2014-06-20 17:38:05 +01:00
|
|
|
sha256 = "1wi0hdmhk7l8nrz4j3kaa177mmxyklmzhj7sq1gj4q6fb8v1yr6n";
|
|
|
|
};
|
|
|
|
|
2017-11-04 03:26:29 +00:00
|
|
|
preConfigure = ''
|
2014-06-20 17:38:05 +01:00
|
|
|
export SYBASE=${freetds}
|
|
|
|
|
2017-11-04 03:26:29 +00:00
|
|
|
substituteInPlace src/cmd_connect.c \
|
|
|
|
--replace CS_TDS_80 CS_TDS_73
|
2021-01-23 12:26:19 +00:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2018-05-02 21:41:06 +01:00
|
|
|
substituteInPlace configure --replace "libct.so" "libct.dylib"
|
2017-11-04 03:26:29 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-06-20 17:38:05 +01:00
|
|
|
|
2018-05-02 21:41:06 +01:00
|
|
|
buildInputs = [ freetds readline libiconv ];
|
2017-11-04 03:26:29 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Command line tool for querying Sybase/MSSQL databases";
|
2017-11-04 03:26:29 +00:00
|
|
|
longDescription = ''
|
2014-06-20 17:38:05 +01:00
|
|
|
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.
|
2017-11-04 03:26:29 +00:00
|
|
|
'';
|
2018-08-11 13:33:05 +01:00
|
|
|
license = licenses.gpl2;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/sqsh/";
|
2017-11-04 03:26:29 +00:00
|
|
|
platforms = platforms.all;
|
2014-06-20 17:38:05 +01:00
|
|
|
};
|
|
|
|
}
|