summary refs log tree commit diff
path: root/pkgs/development/tools/misc/remarkable
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-23 19:26:19 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-23 20:30:03 +0700
commitc522fec2743ffb95f2bc296f249232d73ae57dd1 (patch)
treec29207eba8c137fd2e9ff59d7186c9a4dfd0cdc4 /pkgs/development/tools/misc/remarkable
parentf6a583eeece936a1d917de67194fec4b6c74cf1f (diff)
downloadnixpkgs-c522fec2743ffb95f2bc296f249232d73ae57dd1.tar
nixpkgs-c522fec2743ffb95f2bc296f249232d73ae57dd1.tar.gz
nixpkgs-c522fec2743ffb95f2bc296f249232d73ae57dd1.tar.bz2
nixpkgs-c522fec2743ffb95f2bc296f249232d73ae57dd1.tar.lz
nixpkgs-c522fec2743ffb95f2bc296f249232d73ae57dd1.tar.xz
nixpkgs-c522fec2743ffb95f2bc296f249232d73ae57dd1.tar.zst
nixpkgs-c522fec2743ffb95f2bc296f249232d73ae57dd1.zip
pkgs/development/tools: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/tools/misc/remarkable')
-rw-r--r--pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix4
-rw-r--r--pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix b/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
index d259721353b..643e28e82b2 100644
--- a/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
+++ b/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
@@ -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;
diff --git a/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix b/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix
index f4f83f21840..7b4df5df164 100644
--- a/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix
+++ b/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix
@@ -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;