cppcms: use python2

This commit is contained in:
Frederik Rietdijk 2021-03-25 11:53:55 +01:00
parent 7be6cf9784
commit 5769fcd519

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, cmake, pcre, zlib, python, openssl }:
{ lib, stdenv, fetchurl, cmake, pcre, zlib, python2, openssl }:
stdenv.mkDerivation rec {
pname = "cppcms";
@ -10,7 +10,9 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
buildInputs = [ pcre zlib python openssl ];
buildInputs = [ pcre zlib python2 openssl ];
strictDeps = true;
cmakeFlags = [
"--no-warn-unused-cli"