pkgs/development/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-23 19:26:19 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libarchive, python, file, which }:
{ lib, stdenv, fetchurl, libarchive, python, file, which }:
stdenv.mkDerivation rec {
pname = "remarkable-toolchain";
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
ENVCLEANED=1 $src -y -d $out
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "A toolchain for cross-compiling to reMarkable tablets";
homepage = "https://remarkable.engineering/";
license = licenses.gpl2;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libarchive, python3, file }:
{ lib, stdenv, fetchurl, libarchive, python3, file }:
stdenv.mkDerivation rec {
pname = "remarkable2-toolchain";
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
./install-toolchain.sh -D -y -d $out
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "A toolchain for cross-compiling to reMarkable 2 tablets";
homepage = "https://remarkable.engineering/";
license = licenses.gpl2Plus;