coccinelle: change to python3

This commit is contained in:
Frederik Rietdijk 2021-07-27 16:14:13 +02:00
parent ce7b1fcc6b
commit cf4f947faa

View file

@ -1,4 +1,4 @@
{ fetchurl, lib, stdenv, python, ncurses, ocamlPackages, pkg-config }:
{ fetchurl, lib, stdenv, python3, ncurses, ocamlPackages, pkg-config }:
stdenv.mkDerivation rec {
pname = "coccinelle";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = with ocamlPackages; [
ocaml findlib menhir
ocaml_pcre parmap stdcompat
python ncurses pkg-config
python3 ncurses pkg-config
];
doCheck = false;