Merge pull request #155231 from gador/pgadmin3-fix

pgadmin: fix build

authored by

Wout Mertens and committed by
GitHub
5c89b037 3fe54cd3

+6
+6
pkgs/applications/misc/pgadmin/default.nix
··· 31 31 "--with-libxslt=${libxslt.dev}" 32 32 ]; 33 33 34 + # starting with C++11 narrowing became an error 35 + # and not just a warning. With the current c++ compiler 36 + # pgadmin3 will fail with several "narrowing" errors. 37 + # see https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html#index-Wno-narrowing 38 + makeFlags = "CXXFLAGS=-Wno-narrowing" ; 39 + 34 40 meta = with lib; { 35 41 description = "PostgreSQL administration GUI tool"; 36 42 homepage = "https://www.pgadmin.org";