pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user