nixpkgs/pkgs/development/libraries/unixODBC/default.nix
R. RyanTM 73d7232ee7 unixODBC: 2.3.6 -> 2.3.7 (#45133)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/unixODBC/versions.
2018-08-21 20:09:54 +02:00

21 lines
510 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "unixODBC-${version}";
version = "2.3.7";
src = fetchurl {
url = "ftp://ftp.unixodbc.org/pub/unixODBC/${name}.tar.gz";
sha256 = "0xry3sg497wly8f7715a7gwkn2k36bcap0mvzjw74jj53yx6kwa5";
};
configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ];
meta = with stdenv.lib; {
description = "ODBC driver manager for Unix";
homepage = http://www.unixodbc.org/;
license = licenses.lgpl2;
platforms = platforms.unix;
};
}