Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restore version in Qt derivation names #122977

Merged
merged 1 commit into from May 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtcharts.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtdeclarative }:

qtModule {
name = "qtcharts";
pname = "qtcharts";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "out" "dev" "bin" ];
}
@@ -1,7 +1,7 @@
{ qtModule, lib, stdenv, qtbase, qtdeclarative, bluez }:

qtModule {
name = "qtconnectivity";
pname = "qtconnectivity";
qtInputs = [ qtbase qtdeclarative ];
buildInputs = lib.optional stdenv.isLinux bluez;
outputs = [ "out" "dev" "bin" ];
Expand Down
Expand Up @@ -3,7 +3,7 @@
with lib;

qtModule {
name = "qtdeclarative";
pname = "qtdeclarative";
qtInputs = [ qtbase qtsvg ];
nativeBuildInputs = [ python3 ];
outputs = [ "out" "dev" "bin" ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtdoc.nix
@@ -1,7 +1,7 @@
{ qtModule, qtdeclarative }:

qtModule {
name = "qtdoc";
pname = "qtdoc";
qtInputs = [ qtdeclarative ];
outputs = [ "out" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtgamepad.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtdeclarative, pkg-config }:

qtModule {
name = "qtgamepad";
pname = "qtgamepad";
qtInputs = [ qtbase qtdeclarative ];
buildInputs = [ ];
nativeBuildInputs = [ pkg-config ];
Expand Down
@@ -1,7 +1,7 @@
{ qtModule, qtdeclarative }:

qtModule {
name = "qtgraphicaleffects";
pname = "qtgraphicaleffects";
qtInputs = [ qtdeclarative ];
outputs = [ "out" "dev" ];
}
@@ -1,7 +1,7 @@
{ qtModule, qtbase, libtiff }:

qtModule {
name = "qtimageformats";
pname = "qtimageformats";
qtInputs = [ qtbase ];
propagatedBuildInputs = [ libtiff ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtlocation.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, qtModule, qtbase, qtmultimedia }:

qtModule {
name = "qtlocation";
pname = "qtlocation";
qtInputs = [ qtbase qtmultimedia ];
outputs = [ "bin" "out" "dev" ];
qmakeFlags = lib.optional stdenv.isDarwin [
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtmacextras.nix
@@ -1,7 +1,7 @@
{ lib, qtModule, qtbase }:

qtModule {
name = "qtmacextras";
pname = "qtmacextras";
qtInputs = [ qtbase ];
meta = with lib; {
maintainers = with maintainers; [ periklis ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtmultimedia.nix
Expand Up @@ -5,7 +5,7 @@
with lib;

qtModule {
name = "qtmultimedia";
pname = "qtmultimedia";
qtInputs = [ qtbase qtdeclarative ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gstreamer gst-plugins-base libpulseaudio ]
Expand Down
@@ -1,6 +1,6 @@
{ qtModule, qtbase }:

qtModule {
name = "qtnetworkauth";
pname = "qtnetworkauth";
qtInputs = [ qtbase ];
}
@@ -1,6 +1,6 @@
{ qtModule, qtdeclarative }:

qtModule {
name = "qtquickcontrols";
pname = "qtquickcontrols";
qtInputs = [ qtdeclarative ];
}
@@ -1,7 +1,7 @@
{ qtModule, qtdeclarative }:

qtModule {
name = "qtquickcontrols2";
pname = "qtquickcontrols2";
qtInputs = [ qtdeclarative ];
outputs = [ "out" "dev" "bin" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtscript.nix
@@ -1,6 +1,6 @@
{ qtModule, qtbase, qttools }:

qtModule {
name = "qtscript";
pname = "qtscript";
qtInputs = [ qtbase qttools ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtscxml.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtdeclarative }:

qtModule {
name = "qtscxml";
pname = "qtscxml";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "out" "dev" "bin" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtsensors.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtdeclarative }:

qtModule {
name = "qtsensors";
pname = "qtsensors";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "out" "dev" "bin" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtserialbus.nix
@@ -1,6 +1,6 @@
{ qtModule, qtbase, qtserialport }:

qtModule {
name = "qtserialbus";
pname = "qtserialbus";
qtInputs = [ qtbase qtserialport ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtserialport.nix
Expand Up @@ -3,7 +3,7 @@
let inherit (lib) getLib optional; in

qtModule {
name = "qtserialport";
pname = "qtserialport";
qtInputs = [ qtbase ];
NIX_CFLAGS_COMPILE =
optional stdenv.isLinux
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtspeech.nix
@@ -1,7 +1,7 @@
{ qtModule }:

qtModule {
name = "qtspeech";
pname = "qtspeech";
qtInputs = [ ];
outputs = [ "out" "dev" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtsvg.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase }:

qtModule {
name = "qtsvg";
pname = "qtsvg";
qtInputs = [ qtbase ];
outputs = [ "out" "dev" "bin" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qttools.nix
Expand Up @@ -3,7 +3,7 @@
with lib;

qtModule {
name = "qttools";
pname = "qttools";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "out" "dev" "bin" ];

Expand Down
@@ -1,6 +1,6 @@
{ qtModule, qttools }:

qtModule {
name = "qttranslations";
pname = "qttranslations";
qtInputs = [ qttools ];
}
@@ -1,6 +1,6 @@
{ qtModule, qtbase, qtdeclarative, qtsvg, hunspell }:

qtModule {
name = "qtvirtualkeyboard";
pname = "qtvirtualkeyboard";
qtInputs = [ qtbase qtdeclarative qtsvg hunspell ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtwayland.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtquickcontrols, wayland, pkg-config }:

qtModule {
name = "qtwayland";
pname = "qtwayland";
qtInputs = [ qtbase qtquickcontrols ];
buildInputs = [ wayland ];
nativeBuildInputs = [ pkg-config ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtwebchannel.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtdeclarative }:

qtModule {
name = "qtwebchannel";
pname = "qtwebchannel";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "out" "dev" "bin" ];
}
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtwebengine.nix
Expand Up @@ -24,7 +24,7 @@
with lib;

qtModule {
name = "qtwebengine";
pname = "qtwebengine";
qtInputs = [ qtdeclarative qtquickcontrols qtlocation qtwebchannel ];
nativeBuildInputs = [
bison coreutils flex git gperf ninja pkg-config python2 which gn nodejs
Expand Down
@@ -1,6 +1,6 @@
{ qtModule, qtbase, qtwebsockets }:

qtModule {
name = "qtwebglplugin";
pname = "qtwebglplugin";
qtInputs = [ qtbase qtwebsockets ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtwebkit.nix
Expand Up @@ -22,7 +22,7 @@ let
usingAnnulenWebkitFork = lib.versionAtLeast qtbase.version "5.11.0";
in
qtModule {
name = "qtwebkit";
pname = "qtwebkit";
qtInputs = [ qtbase qtdeclarative qtlocation qtsensors ]
++ optional (stdenv.isDarwin && lib.versionAtLeast qtbase.version "5.9.0") qtmultimedia
++ optional usingAnnulenWebkitFork qtwebchannel;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtwebsockets.nix
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtdeclarative }:

qtModule {
name = "qtwebsockets";
pname = "qtwebsockets";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "out" "dev" "bin" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtwebview.nix
Expand Up @@ -3,7 +3,7 @@
with lib;

qtModule {
name = "qtwebview";
pname = "qtwebview";
qtInputs = [ qtdeclarative qtwebengine ];
buildInputs = optional (stdenv.isDarwin) [
darwin.apple_sdk.frameworks.CoreFoundation
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/modules/qtx11extras.nix
@@ -1,6 +1,6 @@
{ qtModule, qtbase }:

qtModule {
name = "qtx11extras";
pname = "qtx11extras";
qtInputs = [ qtbase ];
}
@@ -1,7 +1,7 @@
{ qtModule, qtbase, qtdeclarative }:

qtModule {
name = "qtxmlpatterns";
pname = "qtxmlpatterns";
qtInputs = [ qtbase qtdeclarative ];
devTools = [ "bin/xmlpatterns" "bin/xmlpatternsvalidator" ];
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/qtModule.nix
Expand Up @@ -7,7 +7,7 @@ let inherit (lib) licenses maintainers platforms; in
args:

let
pname = args.name;
inherit (args) pname;
version = args.version or srcs.${pname}.version;
src = args.src or srcs.${pname}.src;
in
Expand Down