summary refs log tree commit diff
path: root/pkgs/tools/security/proxmark3
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-27 12:59:00 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-27 13:08:40 +0700
commit36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb (patch)
tree761d7e466aaa3ccba9175ee7ff969e1252626757 /pkgs/tools/security/proxmark3
parent02ee14b9d54d31351689084c47f9a048a41f27b4 (diff)
downloadnixpkgs-36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb.tar
nixpkgs-36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb.tar.gz
nixpkgs-36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb.tar.bz2
nixpkgs-36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb.tar.lz
nixpkgs-36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb.tar.xz
nixpkgs-36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb.tar.zst
nixpkgs-36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb.zip
treewide: stdenv.lib -> lib
Diffstat (limited to 'pkgs/tools/security/proxmark3')
-rw-r--r--pkgs/tools/security/proxmark3/proxmark3-rrg.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/proxmark3/proxmark3-rrg.nix b/pkgs/tools/security/proxmark3/proxmark3-rrg.nix
index bf1bcd67d11..04def66d03c 100644
--- a/pkgs/tools/security/proxmark3/proxmark3-rrg.nix
+++ b/pkgs/tools/security/proxmark3/proxmark3-rrg.nix
@@ -1,4 +1,4 @@
-{ stdenv, mkDerivation, fetchFromGitHub, pkg-config, gcc-arm-embedded, bluez5
+{ lib, stdenv, mkDerivation, fetchFromGitHub, pkg-config, gcc-arm-embedded, bluez5
 , readline
 
 , hardwarePlatform ? "PM3RDV4"
@@ -29,7 +29,7 @@ mkDerivation rec {
     install -Dt $out/firmware bootrom/obj/bootrom.elf armsrc/obj/fullimage.elf
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Client for proxmark3, powerful general purpose RFID tool";
     homepage = "https://rfidresearchgroup.com/";
     license = licenses.gpl2Plus;