nixpkgs/pkgs/development/libraries/unixODBC/default.nix

24 lines
585 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2013-08-31 23:57:33 +00:00
stdenv.mkDerivation rec {
pname = "unixODBC";
2021-03-09 22:21:36 +00:00
version = "2.3.9";
2016-04-26 18:17:23 +00:00
src = fetchurl {
2021-08-23 19:23:59 +00:00
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 18:17:23 +00:00
};
configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ];
meta = with lib; {
2016-04-26 18:17:23 +00:00
description = "ODBC driver manager for Unix";
homepage = "http://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;
};
}