summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2018-03-24 12:08:06 +0100
committerRobin Gloster <mail@glob.in>2018-03-24 12:08:06 +0100
commit1b27260a0b9f7ef8ca8e75743ec5d6117f029e30 (patch)
tree37f8d71c33aaff1dddc55c276d5772f486e1048f
parent8a244db9f37920fc48ec259c3f4fd2a5ae51a452 (diff)
downloadnixpkgs-1b27260a0b9f7ef8ca8e75743ec5d6117f029e30.tar
nixpkgs-1b27260a0b9f7ef8ca8e75743ec5d6117f029e30.tar.gz
nixpkgs-1b27260a0b9f7ef8ca8e75743ec5d6117f029e30.tar.bz2
nixpkgs-1b27260a0b9f7ef8ca8e75743ec5d6117f029e30.tar.lz
nixpkgs-1b27260a0b9f7ef8ca8e75743ec5d6117f029e30.tar.xz
nixpkgs-1b27260a0b9f7ef8ca8e75743ec5d6117f029e30.tar.zst
nixpkgs-1b27260a0b9f7ef8ca8e75743ec5d6117f029e30.zip
qgroundcontrol: 3.2.7 -> 3.3.0
-rw-r--r--pkgs/applications/science/robotics/qgroundcontrol/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
index 087969fe61a..95462c02eb5 100644
--- a/pkgs/applications/science/robotics/qgroundcontrol/default.nix
+++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
@@ -1,17 +1,17 @@
 { stdenv, fetchgit, git,  espeak, SDL2, udev, doxygen, cmake
 , qtbase, qtlocation, qtserialport, qtdeclarative, qtconnectivity, qtxmlpatterns
-, qtsvg, qtquick1, qtquickcontrols, qtgraphicaleffects, qmake
+, qtsvg, qtquick1, qtquickcontrols, qtgraphicaleffects, qmake, qtspeech
 , makeWrapper, lndir
 , gst_all_1, qt-gstreamer1, pkgconfig, glibc
 }:
 
 stdenv.mkDerivation rec {
   name = "qgroundcontrol-${version}";
-  version = "3.2.7";
+  version = "3.3.0";
 
   qtInputs = [
     qtbase qtlocation qtserialport qtdeclarative qtconnectivity qtxmlpatterns qtsvg
-    qtquick1 qtquickcontrols qtgraphicaleffects
+    qtquick1 qtquickcontrols qtgraphicaleffects qtspeech
   ];
 
   gstInputs = with gst_all_1; [
@@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
   src = fetchgit {
     url = "https://github.com/mavlink/qgroundcontrol.git";
     rev = "refs/tags/v${version}";
-    sha256 = "1sla3sgj2p3h87d7kcaj53f8z5xzyadvsqlqzgh4d2n1f7sikdc5";
+    sha256 = "0abjm0wywp24qlgg9w8g35ijprjg5csq4fgba9caaiwvmpfbhmpw";
     fetchSubmodules = true;
   };