Commit ec6f63da authored by OPNA2608's avatar OPNA2608
Browse files

libsForQt5.qtpositioning: init at 5.15.2

parent dbd00191
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -157,6 +157,7 @@ let
        inherit gstreamer gst-plugins-base;
      };
      qtnetworkauth = callPackage ../modules/qtnetworkauth.nix {};
      qtpositioning = callPackage ../modules/qtpositioning.nix {};
      qtquick1 = null;
      qtquickcontrols = callPackage ../modules/qtquickcontrols.nix {};
      qtquickcontrols2 = callPackage ../modules/qtquickcontrols2.nix {};
+11 −0
Original line number Diff line number Diff line
@@ -22,6 +22,17 @@ let
in
lib.mapAttrs mk (lib.importJSON ./srcs-generated.json)
// {
  # Has no kde/5.15 branch
  qtpositioning = rec {
    version = "5.15.2";
    src = fetchFromGitHub {
      owner = "qt";
      repo = "qtpositioning";
      rev = "v${version}";
      hash = "sha256-L/P+yAQItm3taPpCNoOOm7PNdOFZiIwJJYflk6JDWvU=";
    };
  };

  # qtwebkit does not have an official release tarball on the qt mirror and is
  # mostly maintained by the community.
  qtwebkit = rec {
+14 −0
Original line number Diff line number Diff line
{ qtModule
, qtbase
, qtdeclarative
, qtserialport
, pkg-config
, openssl
}:

qtModule {
  pname = "qtpositioning";
  qtInputs = [ qtbase qtdeclarative qtserialport ];
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ openssl ];
}