mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
cppcms: use python2
This commit is contained in:
parent
7be6cf9784
commit
5769fcd519
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user