mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
21 lines
511 B
Nix
21 lines
511 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unixODBC";
|
|
version = "2.3.9";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.unixodbc.org/pub/unixODBC/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-UoM+rD1oHIsMmlpl8uvXRbOpZPII/HSPl35EAVoxsgc=";
|
|
};
|
|
|
|
configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ];
|
|
|
|
meta = with lib; {
|
|
description = "ODBC driver manager for Unix";
|
|
homepage = "http://www.unixodbc.org/";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|