pkgs/development/libraries: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-21 19:11:02 -08:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoreconfHook, pkg-config
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config
, openssl
, odbcSupport ? true, unixODBC ? null }:
@@ -17,11 +17,11 @@ stdenv.mkDerivation rec {
buildInputs = [
openssl
] ++ stdenv.lib.optional odbcSupport unixODBC;
] ++ lib.optional odbcSupport unixODBC;
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with stdenv.lib; {
meta = with lib; {
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
homepage = "https://www.freetds.org";
license = licenses.lgpl2;