pkgs/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 17:12:36 +07:00
parent 94f3683935
commit 8c5d37129f
916 changed files with 2510 additions and 2510 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, libXxf86vm, libXext, libX11, libXrandr, gcc}:
{lib, stdenv, fetchurl, libXxf86vm, libXext, libX11, libXrandr, gcc}:
stdenv.mkDerivation {
name = "xflux-2013-09-01";
src = fetchurl {
@@ -6,7 +6,7 @@ stdenv.mkDerivation {
sha256 = "cc50158fabaeee58c331f006cc1c08fd2940a126e99d37b76c8e878ef20c2021";
};
libPath = stdenv.lib.makeLibraryPath [
libPath = lib.makeLibraryPath [
gcc.cc
libXxf86vm
libXext
@@ -32,8 +32,8 @@ stdenv.mkDerivation {
when the sun rises.
'';
homepage = "https://justgetflux.com/";
license = stdenv.lib.licenses.unfree;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.paholg ];
license = lib.licenses.unfree;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.paholg ];
};
}
+4 -4
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, buildPythonApplication, python3Packages, wrapGAppsHook
{ lib, stdenv, fetchFromGitHub, buildPythonApplication, python3Packages, wrapGAppsHook
, xflux, librsvg, gtk3, gobject-introspection, pango, gdk-pixbuf, atk
, pexpect, pyGtkGlade, pygobject3, pyxdg, libappindicator-gtk3
}:
@@ -42,8 +42,8 @@ buildPythonApplication rec {
meta = {
description = "Better lighting for Linux. Open source GUI for xflux";
homepage = "https://justgetflux.com/linux.html";
license = stdenv.lib.licenses.unfree; # marked as unfree since the source code contains a copy of the unfree xflux binary
maintainers = [ stdenv.lib.maintainers.sheenobu ];
platforms = stdenv.lib.platforms.linux;
license = lib.licenses.unfree; # marked as unfree since the source code contains a copy of the unfree xflux binary
maintainers = [ lib.maintainers.sheenobu ];
platforms = lib.platforms.linux;
};
}