cryptominisat: switch to python3

This commit is contained in:
Jörg Thalheim 2019-01-05 16:38:10 +01:00
parent 4a4d1d6497
commit 37fe593d48
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, fetchpatch, cmake, python, xxd, boost }: { stdenv, fetchFromGitHub, fetchpatch, cmake, python3, xxd, boost }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "cryptominisat-${version}"; name = "cryptominisat-${version}";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1a1494gj4j73yij0hjbzsn2hglk9zy5c5wfwgig3j67cis28saf5"; sha256 = "1a1494gj4j73yij0hjbzsn2hglk9zy5c5wfwgig3j67cis28saf5";
}; };
buildInputs = [ python boost ]; buildInputs = [ python3 boost ];
nativeBuildInputs = [ cmake xxd ]; nativeBuildInputs = [ cmake xxd ];
meta = with stdenv.lib; { meta = with stdenv.lib; {