nixpkgs/pkgs/development/tools/sqsh/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

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