nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #207164 from SuperSandro2000/qtbase

qt5.qtbase: remove ? null asserts

authored by

figsoda and committed by
GitHub
0325df89 0b0726ae

+1 -4
+1 -4
pkgs/development/libraries/qt-5/modules/qtbase.nix
··· 14 14 15 15 # optional dependencies 16 16 , cups ? null, libmysqlclient ? null, postgresql ? null 17 - , withGtk3 ? false, dconf ? null, gtk3 ? null 17 + , withGtk3 ? false, dconf, gtk3 18 18 19 19 # options 20 20 , libGLSupported ? !stdenv.isDarwin ··· 25 25 , developerBuild ? false 26 26 , decryptSslTraffic ? false 27 27 }: 28 - 29 - assert withGtk3 -> dconf != null; 30 - assert withGtk3 -> gtk3 != null; 31 28 32 29 let 33 30 compareVersion = v: builtins.compareVersions version v;