24 lines
585 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2013-09-01 01:57:33 +02:00
stdenv.mkDerivation rec {
pname = "unixODBC";
2021-03-09 22:21:36 +00:00
version = "2.3.9";
2016-04-26 21:17:23 +03:00
src = fetchurl {
urls = [
"ftp://ftp.unixodbc.org/pub/unixODBC/${pname}-${version}.tar.gz"
"http://www.unixodbc.org/${pname}-${version}.tar.gz"
];
2021-03-09 22:21:36 +00:00
sha256 = "sha256-UoM+rD1oHIsMmlpl8uvXRbOpZPII/HSPl35EAVoxsgc=";
2016-04-26 21:17:23 +03:00
};
configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ];
meta = with lib; {
2016-04-26 21:17:23 +03:00
description = "ODBC driver manager for Unix";
homepage = "http://www.unixodbc.org/";
2016-04-26 21:17:23 +03:00
license = licenses.lgpl2;
2016-10-10 20:04:05 +03:00
platforms = platforms.unix;
};
}