summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/proxmark3/proxmark3-rrg.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-27 10:13:05 +0100
committerGitHub <noreply@github.com>2021-01-27 10:13:05 +0100
commit2ee93d61ad2220199e8116526d485a8e23e9aee5 (patch)
tree9bf733fe5fd9491f568709bb6511e9536a0b05f2 /pkgs/tools/security/proxmark3/proxmark3-rrg.nix
parentb58f10c3ba10d20f246b668a49a99fb2cfd11b7f (diff)
parent36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb (diff)
Merge pull request #110913 from siraben/other-stdenv-lib
Diffstat (limited to 'pkgs/tools/security/proxmark3/proxmark3-rrg.nix')
-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 bf1bcd67d11d..04def66d03c9 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;