9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
31 lines
872 B
Nix
31 lines
872 B
Nix
{ stdenv, fetchurl, autoreconfHook, pkg-config
|
|
, openssl
|
|
, odbcSupport ? true, unixODBC ? null }:
|
|
|
|
assert odbcSupport -> unixODBC != null;
|
|
|
|
# Work is in progress to move to cmake so revisit that later
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "freetds";
|
|
version = "1.1.42";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freetds.org/files/stable/${pname}-${version}.tar.bz2";
|
|
sha256 = "02phnk88zv4f8byx954784w8mh33knsslwvj266jfyrmxz6hxxxg";
|
|
};
|
|
|
|
buildInputs = [
|
|
openssl
|
|
] ++ stdenv.lib.optional odbcSupport unixODBC;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
|
|
homepage = "https://www.freetds.org";
|
|
license = licenses.lgpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|