qt48Full: remove appendToName to have a consistent package name for repology

This commit is contained in:
Felix Buehler 2022-03-01 12:45:09 +01:00
parent db9dab2a2c
commit 1a2a8180a0
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@
# false build-time dependencies
stdenv.mkDerivation rec {
pname = "qt";
pname = "qt" + lib.optionalString ( docs && demos && examples && developerBuild ) "-full";
version = "4.8.7";
src = fetchurl {

View file

@ -19648,12 +19648,12 @@ with pkgs;
qmake4Hook = qmake48Hook;
qt48Full = appendToName "full" (qt48.override {
qt48Full = qt48.override {
docs = true;
demos = true;
examples = true;
developerBuild = true;
});
};
qt512 = recurseIntoAttrs (makeOverridable
(import ../development/libraries/qt-5/5.12) {