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,5 +1,5 @@
{ enableX11 ? true
, stdenv, fetchurl, pkg-config, xorg }:
, lib, stdenv, fetchurl, pkg-config, xorg }:
stdenv.mkDerivation rec {
pname = "frame";
@@ -11,14 +11,14 @@ stdenv.mkDerivation rec {
buildInputs = [
stdenv pkg-config
] ++ stdenv.lib.optionals enableX11 [xorg.xorgserver xorg.libX11 xorg.libXext xorg.libXi];
] ++ lib.optionals enableX11 [xorg.xorgserver xorg.libX11 xorg.libXext xorg.libXi];
configureFlags = stdenv.lib.optional enableX11 "--with-x11";
configureFlags = lib.optional enableX11 "--with-x11";
meta = {
homepage = "https://launchpad.net/frame";
description = "Handles the buildup and synchronization of a set of simultaneous touches";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
};
}