pythonefl: 1.19.1 -> 1.20.0

- Update to version 1.20.0.

- The hardening checking -Werror=format-string does not work with
  python-efl, so disable it.
This commit is contained in:
romildo 2017-08-17 12:12:53 -03:00
parent e78a08be8b
commit 0fe0d7c620

View File

@ -26490,12 +26490,14 @@ EOF
# Should be bumped along with EFL!
pythonefl = buildPythonPackage rec {
name = "python-efl-${version}";
version = "1.19.0";
version = "1.20.0";
src = pkgs.fetchurl {
url = "http://download.enlightenment.org/rel/bindings/python/${name}.tar.xz";
sha256 = "105qykdd04mlyzwzyscw6mlc7ajl4wbwhq87ncy1jvw8jjh6jads";
sha256 = "18qfqdkkjydqjk0nxs7wnnzdnqlbj3fhkjm0bbd927myzbihxpkh";
};
hardeningDisable = [ "format" ];
preConfigure = ''
export NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl) -I${self.dbus-python}/include/dbus-1.0 $NIX_CFLAGS_COMPILE"
'';