summary refs log tree commit diff
path: root/pkgs/development/tools/fusee-launcher
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/fusee-launcher
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/fusee-launcher')
-rw-r--r--pkgs/development/tools/fusee-launcher/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/fusee-launcher/default.nix b/pkgs/development/tools/fusee-launcher/default.nix
index 077dc8b87f9..08cf6caae3e 100644
--- a/pkgs/development/tools/fusee-launcher/default.nix
+++ b/pkgs/development/tools/fusee-launcher/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
 , python3Packages
 , python3
 , fetchFromGitHub
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
   buildInputs = [ python3 python3Packages.pyusb ];
   pythonPath = with python3Packages; [ pyusb ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = "https://github.com/Cease-and-DeSwitch/fusee-launcher";
     description = "Work-in-progress launcher for one of the Tegra X1 bootROM exploits";
     license = licenses.gpl2;