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

21 lines
510 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 {
2016-04-26 21:17:23 +03:00
name = "unixODBC-${version}";
version = "2.3.5";
2016-04-26 21:17:23 +03:00
src = fetchurl {
2013-09-01 03:57:33 +04:00
url = "ftp://ftp.unixodbc.org/pub/unixODBC/${name}.tar.gz";
sha256 = "0ns93daph4wmk92d7m2w48x0yki4m1yznxnn97p1ldn6bkh742bn";
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/;
license = licenses.lgpl2;
2016-10-10 20:04:05 +03:00
platforms = platforms.unix;
};
}