summary refs log tree commit diff
path: root/pkgs/tools/security/chipsec
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 11:27:08 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 11:27:08 +0100
commite1253a694f07be90fff0da9e2faa3c734c89cb51 (patch)
treee6b068d3a2f29c1949a86de813f4896870333791 /pkgs/tools/security/chipsec
parentd56fdf8c4c08471d9e2aaeaf216864cba9552f59 (diff)
downloadnixpkgs-e1253a694f07be90fff0da9e2faa3c734c89cb51.tar
nixpkgs-e1253a694f07be90fff0da9e2faa3c734c89cb51.tar.gz
nixpkgs-e1253a694f07be90fff0da9e2faa3c734c89cb51.tar.bz2
nixpkgs-e1253a694f07be90fff0da9e2faa3c734c89cb51.tar.lz
nixpkgs-e1253a694f07be90fff0da9e2faa3c734c89cb51.tar.xz
nixpkgs-e1253a694f07be90fff0da9e2faa3c734c89cb51.tar.zst
nixpkgs-e1253a694f07be90fff0da9e2faa3c734c89cb51.zip
chipsec: use python2
Diffstat (limited to 'pkgs/tools/security/chipsec')
-rw-r--r--pkgs/tools/security/chipsec/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/chipsec/default.nix b/pkgs/tools/security/chipsec/default.nix
index 45d6349af40..7e00c0b07cf 100644
--- a/pkgs/tools/security/chipsec/default.nix
+++ b/pkgs/tools/security/chipsec/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, lib, fetchFromGitHub, pythonPackages, nasm, libelf
+{ stdenv, lib, fetchFromGitHub, python2Packages, nasm, libelf
 , kernel ? null, withDriver ? false }:
-pythonPackages.buildPythonApplication rec {
+python2Packages.buildPythonApplication rec {
   pname = "chipsec";
   version = "1.5.1";