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