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

This commit is contained in:
Ben Siraphob
2021-01-22 00:00:13 +07:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions

View File

@@ -1,8 +1,8 @@
{stdenv, fetchurl, boost, openssl
{lib, stdenv, fetchurl, boost, openssl
, version, sha256, ...
}:
with stdenv.lib;
with lib;
stdenv.mkDerivation {
pname = "asio";
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
homepage = "http://asio.sourceforge.net/";
description = "Cross-platform C++ library for network and low-level I/O programming";
license = licenses.boost;
broken = stdenv.isDarwin && stdenv.lib.versionOlder version "1.16.1";
broken = stdenv.isDarwin && lib.versionOlder version "1.16.1";
platforms = platforms.unix;
};
}