nixpkgs/pkgs/by-name/un/unixODBC/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
588 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2013-08-31 23:57:33 +00:00
stdenv.mkDerivation rec {
pname = "unixODBC";
2023-09-01 03:47:53 +00:00
version = "2.3.12";
2016-04-26 18:17:23 +00:00
src = fetchurl {
2021-08-23 19:23:59 +00:00
urls = [
"ftp://ftp.unixodbc.org/pub/unixODBC/${pname}-${version}.tar.gz"
"https://www.unixodbc.org/${pname}-${version}.tar.gz"
2021-08-23 19:23:59 +00:00
];
2023-09-01 03:47:53 +00:00
sha256 = "sha256-8hBQFEXOIb9ge6Ue+MEl4Q4i3/3/7Dd2RkYt9fAZFew=";
2016-04-26 18:17:23 +00:00
};
configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ];
meta = with lib; {
2016-04-26 18:17:23 +00:00
description = "ODBC driver manager for Unix";
homepage = "https://www.unixodbc.org/";
2016-04-26 18:17:23 +00:00
license = licenses.lgpl2;
2016-10-10 17:04:05 +00:00
platforms = platforms.unix;
};
}