mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 21:42:35 +03:00
qt48Full: remove appendToName to have a consistent package name for repology
This commit is contained in:
parent
db9dab2a2c
commit
1a2a8180a0
@ -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 {
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user