cipherscan: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-25 11:28:57 +01:00
parent 7aa7f3cdbf
commit 4551e2260a
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, openssl, makeWrapper, python, coreutils }: { stdenv, lib, fetchFromGitHub, openssl, makeWrapper, python3, coreutils }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "cipherscan"; pname = "cipherscan";
@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python ]; buildInputs = [ python3 ];
strictDeps = true;
buildPhase = '' buildPhase = ''
substituteInPlace cipherscan --replace '$0' 'cipherscan' substituteInPlace cipherscan --replace '$0' 'cipherscan'