Merge pull request #36280 from MatrixAI/gpredict

gpredict: Added hamlib to buildInputs to control radios, and wrapped …

authored by Jörg Thalheim and committed by GitHub 9e1548dc 799178fe

+4 -3
+4 -3
pkgs/applications/science/astronomy/gpredict/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, intltool 2 2 , gtk3, glib, curl, goocanvas2, gpsd 3 + , hamlib, wrapGAppsHook 3 4 }: 4 5 5 6 let ··· 12 13 sha256 = "0hwf97kng1zy8rxyglw04x89p0bg07zq30hgghm20yxiw2xc8ng7"; 13 14 }; 14 15 15 - nativeBuildInputs = [ pkgconfig intltool ]; 16 - buildInputs = [ curl glib gtk3 goocanvas2 gpsd ]; 16 + nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ]; 17 + buildInputs = [ curl glib gtk3 goocanvas2 gpsd hamlib ]; 17 18 18 19 meta = with stdenv.lib; { 19 20 description = "Real time satellite tracking and orbit prediction"; ··· 27 28 license = licenses.gpl2; 28 29 platforms = platforms.linux; 29 30 homepage = http://gpredict.oz9aec.net/; 30 - maintainers = [ maintainers.markuskowa ]; 31 + maintainers = [ maintainers.markuskowa maintainers.cmcdragonkai ]; 31 32 }; 32 33 }