pkgs/os-specific: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-17 23:26:08 +07:00
parent 979e6e67d3
commit 16d91ee628
212 changed files with 597 additions and 599 deletions
@@ -6,7 +6,7 @@
# Of course, use of the driver in /usr/lib is highly impure. But it
# might actually work ;-)
{stdenv, xorg, expat, libdrm}:
{lib, stdenv, xorg, expat, libdrm}:
stdenv.mkDerivation {
name = "xorg-sys-opengl-3";
@@ -15,6 +15,6 @@ stdenv.mkDerivation {
[xorg.libXxf86vm xorg.libXext expat libdrm stdenv.cc.cc];
meta = {
platforms = stdenv.lib.platforms.linux;
platforms = lib.platforms.linux;
};
}