python-lxml: fix build on darwin
by disabling format hardening
This commit is contained in:
parent
c6fcd28e2d
commit
250f3feec2
|
@ -13650,6 +13650,8 @@ in {
|
||||||
|
|
||||||
buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ];
|
buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ];
|
||||||
|
|
||||||
|
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Pythonic binding for the libxml2 and libxslt libraries";
|
description = "Pythonic binding for the libxml2 and libxslt libraries";
|
||||||
homepage = http://lxml.de;
|
homepage = http://lxml.de;
|
||||||
|
@ -13668,6 +13670,8 @@ in {
|
||||||
|
|
||||||
buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ];
|
buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ];
|
||||||
|
|
||||||
|
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Pythonic binding for the libxml2 and libxslt libraries";
|
description = "Pythonic binding for the libxml2 and libxslt libraries";
|
||||||
homepage = http://lxml.de;
|
homepage = http://lxml.de;
|
||||||
|
|
Loading…
Reference in New Issue