pkgs/development/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, glfw, pkg-config, libXrandr, libXdamage
|
||||
{ lib, stdenv, fetchFromGitHub, glfw, pkg-config, libXrandr, libXdamage
|
||||
, libXext, libXrender, libXinerama, libXcursor, libXxf86vm, libXi
|
||||
, libX11, libGLU, python3Packages, ensureNewerSourcesForZipFilesHook
|
||||
, Cocoa
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
libXext libXrender libXinerama libXcursor libXxf86vm
|
||||
libXi libX11
|
||||
] ++ (with python3Packages; [ python setuptools wrapPython ])
|
||||
++ stdenv.lib.optional stdenv.isDarwin Cocoa;
|
||||
++ lib.optional stdenv.isDarwin Cocoa;
|
||||
pythonPath = with python3Packages; [ pyyaml requests ];
|
||||
|
||||
# Makefile has /usr/local/bin hard-coded for 'make install'
|
||||
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Live GLSL coding renderer";
|
||||
homepage = "http://patriciogonzalezvivo.com/2015/glslViewer/";
|
||||
license = licenses.bsd3;
|
||||
|
||||
Reference in New Issue
Block a user