about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-03-04 05:40:22 +0000
committerGitHub <noreply@github.com>2018-03-04 05:40:22 +0000
commit9e1548dc86c2a85b110691ec817cc0d85a2a063f (patch)
tree8f78a9de86db354ff4e764346c42bf87aab547f1 /pkgs/applications
parent799178fe453149ed8d5133d2db7a5b3b42a29e1c (diff)
parent30ba063dc3e958c38adf8bc819b3fa5523242d26 (diff)
Merge pull request #36280 from MatrixAI/gpredict
gpredict: Added hamlib to buildInputs to control radios, and wrapped …
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/astronomy/gpredict/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/science/astronomy/gpredict/default.nix b/pkgs/applications/science/astronomy/gpredict/default.nix
index 96e8e0d2d2507..9bacf6d90417f 100644
--- a/pkgs/applications/science/astronomy/gpredict/default.nix
+++ b/pkgs/applications/science/astronomy/gpredict/default.nix
@@ -1,5 +1,6 @@
 { stdenv, fetchurl, pkgconfig, intltool
 , gtk3, glib, curl, goocanvas2, gpsd
+, hamlib, wrapGAppsHook
 }:
 
 let
@@ -12,8 +13,8 @@ in stdenv.mkDerivation {
     sha256 = "0hwf97kng1zy8rxyglw04x89p0bg07zq30hgghm20yxiw2xc8ng7";
   };
 
-  nativeBuildInputs = [ pkgconfig intltool ];
-  buildInputs = [ curl glib gtk3 goocanvas2 gpsd ];
+  nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
+  buildInputs = [ curl glib gtk3 goocanvas2 gpsd hamlib ];
 
   meta = with stdenv.lib; {
     description = "Real time satellite tracking and orbit prediction";
@@ -27,6 +28,6 @@ in stdenv.mkDerivation {
     license = licenses.gpl2;
     platforms = platforms.linux;
     homepage = http://gpredict.oz9aec.net/;
-    maintainers = [ maintainers.markuskowa ];
+    maintainers = [ maintainers.markuskowa maintainers.cmcdragonkai ];
   };
 }