cipherscan: use python3
This commit is contained in:
parent
7aa7f3cdbf
commit
4551e2260a
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue