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, buildPackages
{ lib, stdenv, fetchurl, buildPackages
, pkg-config, expat, gettext, libiconv, dbus, glib
}:
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ dbus glib ];
configureFlags = [ "--exec-prefix=${placeholder "dev"}" ] ++
stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform)
lib.optional (stdenv.buildPlatform != stdenv.hostPlatform)
"--with-dbus-binding-tool=${buildPackages.dbus-glib.dev}/bin/dbus-binding-tool";
doCheck = false;
@@ -29,9 +29,9 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://dbus.freedesktop.org";
license = with stdenv.lib.licenses; [ afl21 gpl2 ];
license = with lib.licenses; [ afl21 gpl2 ];
description = "Obsolete glib bindings for D-Bus lightweight IPC mechanism";
maintainers = [ ];
platforms = stdenv.lib.platforms.unix;
platforms = lib.platforms.unix;
};
}