mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
sqsh: fix build with new freetds
This commit is contained in:
parent
8b0014ae5a
commit
762f2ea4b0
@ -1,33 +1,38 @@
|
|||||||
{ stdenv, fetchurl, freetds, readline }:
|
{ stdenv, fetchurl, autoreconfHook, freetds, readline }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
version = "2.5.16.1";
|
mainVersion = "2.5";
|
||||||
|
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
name = "sqsh-${version}";
|
name = "sqsh-${version}";
|
||||||
|
version = "${mainVersion}.16.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.mirrorservice.org/sites/downloads.sourceforge.net/s/sq/sqsh/sqsh/sqsh-2.5/${name}.tgz";
|
url = "mirror://sourceforge/sqsh/sqsh/sqsh-${mainVersion}/${name}.tgz";
|
||||||
sha256 = "1wi0hdmhk7l8nrz4j3kaa177mmxyklmzhj7sq1gj4q6fb8v1yr6n";
|
sha256 = "1wi0hdmhk7l8nrz4j3kaa177mmxyklmzhj7sq1gj4q6fb8v1yr6n";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure =
|
preConfigure = ''
|
||||||
''
|
|
||||||
export SYBASE=${freetds}
|
export SYBASE=${freetds}
|
||||||
|
|
||||||
|
substituteInPlace src/cmd_connect.c \
|
||||||
|
--replace CS_TDS_80 CS_TDS_73
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [
|
enableParallelBuilding = true;
|
||||||
freetds
|
|
||||||
readline
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
buildInputs = [ freetds readline ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Command line tool for querying Sybase/MSSQL databases";
|
description = "Command line tool for querying Sybase/MSSQL databases";
|
||||||
longDescription =
|
longDescription = ''
|
||||||
''
|
|
||||||
Sqsh (pronounced skwish) is short for SQshelL (pronounced s-q-shell),
|
Sqsh (pronounced skwish) is short for SQshelL (pronounced s-q-shell),
|
||||||
it is intended as a replacement for the venerable 'isql' program supplied
|
it is intended as a replacement for the venerable 'isql' program supplied
|
||||||
by Sybase.
|
by Sybase.
|
||||||
'';
|
'';
|
||||||
homepage = http://www.cs.washington.edu/~rose/sqsh/sqsh.html;
|
homepage = http://sourceforge.net/projects/sqsh/;
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user