summary refs log tree commit diff
path: root/pkgs/applications/science/robotics/qgroundcontrol
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2020-07-11 15:27:23 -0400
committerBen Wolsieffer <benwolsieffer@gmail.com>2020-07-11 15:27:23 -0400
commit060c1ef6a5771778919a638048aae614c3998823 (patch)
tree0ee6dbeab959f27c60a3abf7aedf4fc0673f0d56 /pkgs/applications/science/robotics/qgroundcontrol
parent8d05772134f17180fb2711d0660702dae2a67313 (diff)
downloadnixpkgs-060c1ef6a5771778919a638048aae614c3998823.tar
nixpkgs-060c1ef6a5771778919a638048aae614c3998823.tar.gz
nixpkgs-060c1ef6a5771778919a638048aae614c3998823.tar.bz2
nixpkgs-060c1ef6a5771778919a638048aae614c3998823.tar.lz
nixpkgs-060c1ef6a5771778919a638048aae614c3998823.tar.xz
nixpkgs-060c1ef6a5771778919a638048aae614c3998823.tar.zst
nixpkgs-060c1ef6a5771778919a638048aae614c3998823.zip
qgroundcontrol: 4.0.8 -> 4.0.9
Diffstat (limited to 'pkgs/applications/science/robotics/qgroundcontrol')
-rw-r--r--pkgs/applications/science/robotics/qgroundcontrol/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
index 63247bcff72..ff299cbb0bf 100644
--- a/pkgs/applications/science/robotics/qgroundcontrol/default.nix
+++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
@@ -1,4 +1,4 @@
-{ lib, mkDerivation, fetchgit, SDL2
+{ lib, mkDerivation, fetchFromGitHub, SDL2
 , qtbase, qtcharts, qtlocation, qtserialport, qtsvg, qtquickcontrols2
 , qtgraphicaleffects, qtspeech, qtx11extras, qmake, qttools
 , gst_all_1, wayland, pkgconfig
@@ -6,7 +6,7 @@
 
 mkDerivation rec {
   pname = "qgroundcontrol";
-  version = "4.0.8";
+  version = "4.0.9";
 
   qtInputs = [
     qtbase qtcharts qtlocation qtserialport qtsvg qtquickcontrols2
@@ -58,10 +58,11 @@ mkDerivation rec {
   '';
 
   # TODO: package mavlink so we can build from a normal source tarball
-  src = fetchgit {
-    url = "https://github.com/mavlink/qgroundcontrol.git";
+  src = fetchFromGitHub {
+    owner = "mavlink";
+    repo = pname;
     rev = "v${version}";
-    sha256 = "0jr9jpjqdwizsvh9zm0fdp8k2r4536m40dxrn30fbr3ba8vnzkgq";
+    sha256 = "0fwibgb9wmxk2zili5vsibi2q6pk1gna21870y5abx4scbvhgq68";
     fetchSubmodules = true;
   };