pkgs/development/libraries: stdenv.lib -> lib
This commit is contained in:
committed by
Jonathan Ringer
parent
046d24424e
commit
66e44425c6
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user