mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
pythonPackages.reportlab: fix #11405 build
That freetype override was done in a rather silly way, overriding *all* configure options.
This commit is contained in:
parent
e289717414
commit
883109b36a
@ -15478,7 +15478,7 @@ in modules // {
|
||||
|
||||
|
||||
reportlab =
|
||||
let freetype = overrideDerivation pkgs.freetype (args: { configureFlags = "--enable-static --enable-shared"; });
|
||||
let freetype = overrideDerivation pkgs.freetype (args: { dontDisableStatic = true; });
|
||||
in buildPythonPackage rec {
|
||||
name = "reportlab-3.2.0";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user