ntrack: use python3

authored by Robert Schütz and committed by Robert Schütz bd8b4741 56741fba

+2 -2
+2 -2
pkgs/development/libraries/ntrack/default.nix
··· 1 - { lib, stdenv, fetchurl, qt4, pkg-config, libnl, python2 }: 2 3 stdenv.mkDerivation rec { 4 pname = "ntrack"; ··· 11 12 buildInputs = [ libnl qt4 ]; 13 14 - nativeBuildInputs = [ pkg-config python2 ]; 15 16 # error: ISO C does not support '__FUNCTION__' predefined identifier [-Werror=pedantic] 17 NIX_CFLAGS_COMPILE = "-Wno-error";
··· 1 + { lib, stdenv, fetchurl, qt4, pkg-config, libnl, python3 }: 2 3 stdenv.mkDerivation rec { 4 pname = "ntrack"; ··· 11 12 buildInputs = [ libnl qt4 ]; 13 14 + nativeBuildInputs = [ pkg-config python3 ]; 15 16 # error: ISO C does not support '__FUNCTION__' predefined identifier [-Werror=pedantic] 17 NIX_CFLAGS_COMPILE = "-Wno-error";