summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 11:28:57 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 11:28:57 +0100
commit4551e2260a4c4866af769ccd0d473eb4034511ea (patch)
tree43ca93d0e67ce79ac8118cd0b50d4ec897d21a84 /pkgs/tools
parent7aa7f3cdbf5d3eec486fe5ecb2e35c6106fa75a3 (diff)
cipherscan: use python3
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/cipherscan/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/security/cipherscan/default.nix b/pkgs/tools/security/cipherscan/default.nix
index eae5a5256dff..23022f92b6af 100644
--- a/pkgs/tools/security/cipherscan/default.nix
+++ b/pkgs/tools/security/cipherscan/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, openssl, makeWrapper, python, coreutils }:
+{ stdenv, lib, fetchFromGitHub, openssl, makeWrapper, python3, coreutils }:
stdenv.mkDerivation rec {
pname = "cipherscan";
@@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ makeWrapper ];
- buildInputs = [ python ];
+ buildInputs = [ python3 ];
+
+ strictDeps = true;
buildPhase = ''
substituteInPlace cipherscan --replace '$0' 'cipherscan'