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 @@
{ fetchzip, stdenv }:
{ fetchzip, lib, stdenv }:
{ version, sha256 }:
{ inherit version; } // fetchzip {
inherit sha256;
@@ -8,9 +8,9 @@
meta = {
description = "PageSpeed Optimization Libraries";
homepage = "https://developers.google.com/speed/pagespeed/psol";
license = stdenv.lib.licenses.asl20;
license = lib.licenses.asl20;
# WARNING: This only works with Linux because the pre-built PSOL binary is only supplied for Linux.
# TODO: Build PSOL from source to support more platforms.
platforms = stdenv.lib.platforms.linux;
platforms = lib.platforms.linux;
};
}