treewide: stdenv.lib -> lib

https://github.com/NixOS/nixpkgs/issues/108938
This commit is contained in:
2021-02-01 08:45:20 +11:00
parent 0c87ddac9e
commit b960c361a9
13 changed files with 33 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
{ stdenv
, lib
, fetchFromGitHub
, buildGoModule
, makeWrapper
@@ -59,7 +60,7 @@ buildGoModule rec {
done
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = "https://github.com/therecipe/qt";
description = "Qt bindings for Go";
license = licenses.lgpl3;

View File

@@ -1,4 +1,5 @@
{ stdenv
, lib
, fetchFromGitHub
, coreutils
@@ -26,7 +27,7 @@ stdenv.mkDerivation rec {
mkdir -p $out/include $out/lib
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = "https://github.com/xant/libhl";
description = "Simple and fast C library implementing a thread-safe API to manage hash-tables, linked lists, lock-free ring buffers and queues ";
license = licenses.lgpl3;

View File

@@ -1,4 +1,5 @@
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
}:
@@ -14,9 +15,9 @@ buildPythonPackage rec {
doCheck = false;
meta = {
meta = with lib; {
homepage = "https://stuffivelearned.org/doku.php?id=programming:python:py-sonic";
license = stdenv.lib.licenses.gpl3;
license = licenses.gpl3;
description = "A python wrapper library for the Subsonic REST API";
};
}