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
+3 -3
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, tcl, tk, fetchpatch } :
{ lib, stdenv, fetchurl, tcl, tk, fetchpatch } :
stdenv.mkDerivation {
version = "8.4.3";
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-tcltk/tix/files/tix-8.4.3-tcl8.5.patch?id=56bd759df1d0c750a065b8c845e93d5dfa6b549d";
sha256 = "0wzqmcxxq0rqpnjgxz10spw92yhfygnlwv0h8pcx2ycnqiljz6vj";
})
] ++ stdenv.lib.optional (tcl.release == "8.6")
] ++ lib.optional (tcl.release == "8.6")
(fetchpatch {
name = "tix-8.4.3-tcl8.6.patch";
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-tcltk/tix/files/tix-8.4.3-tcl8.6.patch?id=56bd759df1d0c750a065b8c845e93d5dfa6b549d";
@@ -42,7 +42,7 @@ stdenv.mkDerivation {
"--libdir=\${prefix}/lib"
];
meta = with stdenv.lib; {
meta = with lib; {
description = "A widget library for Tcl/Tk";
homepage = "http://tix.sourceforge.net/";
platforms = platforms.all;