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

21 lines
514 B
Nix
Raw Normal View History

2016-04-26 21:17:23 +03:00
{ stdenv, fetchurl }:
2013-09-01 03:57:33 +04:00
stdenv.mkDerivation rec {
pname = "unixODBC";
version = "2.3.7";
2016-04-26 21:17:23 +03:00
src = fetchurl {
url = "ftp://ftp.unixodbc.org/pub/unixODBC/${pname}-${version}.tar.gz";
sha256 = "0xry3sg497wly8f7715a7gwkn2k36bcap0mvzjw74jj53yx6kwa5";
2016-04-26 21:17:23 +03:00
};
configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ];
meta = with stdenv.lib; {
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;
};
}