2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2006-03-15 12:43:40 +00:00
|
|
|
|
2013-08-31 23:57:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "unixODBC";
|
2023-09-01 03:47:53 +00:00
|
|
|
version = "2.3.12";
|
2016-04-26 18:17:23 +00:00
|
|
|
|
2006-03-15 12:43:40 +00:00
|
|
|
src = fetchurl {
|
2021-08-23 19:23:59 +00:00
|
|
|
urls = [
|
|
|
|
"ftp://ftp.unixodbc.org/pub/unixODBC/${pname}-${version}.tar.gz"
|
2023-02-19 20:43:38 +00:00
|
|
|
"https://www.unixodbc.org/${pname}-${version}.tar.gz"
|
2021-08-23 19:23:59 +00:00
|
|
|
];
|
2023-09-01 03:47:53 +00:00
|
|
|
sha256 = "sha256-8hBQFEXOIb9ge6Ue+MEl4Q4i3/3/7Dd2RkYt9fAZFew=";
|
2016-04-26 18:17:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-04-26 18:17:23 +00:00
|
|
|
description = "ODBC driver manager for Unix";
|
2023-02-19 20:43:38 +00:00
|
|
|
homepage = "https://www.unixodbc.org/";
|
2016-04-26 18:17:23 +00:00
|
|
|
license = licenses.lgpl2;
|
2016-10-10 17:04:05 +00:00
|
|
|
platforms = platforms.unix;
|
2006-03-15 12:43:40 +00:00
|
|
|
};
|
|
|
|
}
|