73d7232ee7
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.
21 lines
510 B
Nix
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;
|
|
};
|
|
}
|