gpredict: init at 1.3 (#32436)

This commit is contained in:
markuskowa 2017-12-09 01:45:29 -08:00 committed by Jörg Thalheim
parent f0f64fb8f0
commit 66da9b9f8f
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ stdenv, fetchurl, pkgconfig
, gtk2-x11, glib, curl, goocanvas, intltool
}:
let
version = "1.3";
in
stdenv.mkDerivation {
name = "gpredict-${version}";
src = fetchurl {
url = "https://sourceforge.net/projects/gpredict/files/Gpredict/${version}/gpredict-${version}.tar.gz";
sha256 = "18ym71r2f5mwpnjcnrpwrk3py2f6jlqmj8hzp89wbcm1ipnvxxmh";
};
buildInputs = [ curl glib gtk2-x11 goocanvas ];
nativeBuildInputs = [ pkgconfig intltool ];
meta = with stdenv.lib; {
description = "Real time satellite tracking and orbit prediction";
longDescription = ''
Gpredict is a real time satellite tracking and orbit prediction program
written using the Gtk+ widgets. Gpredict is targetted mainly towards ham radio
operators but others interested in satellite tracking may find it useful as
well. Gpredict uses the SGP4/SDP4 algorithms, which are compatible with the
NORAD Keplerian elements.
'';
license = licenses.gpl2;
platforms = platforms.linux;
homepage = "https://sourceforge.net/projects/gpredict/";
maintainers = [ maintainers.markuskowa ];
};
}

View File

@ -2393,6 +2393,8 @@ with pkgs;
gpodder = callPackage ../applications/audio/gpodder { };
gpredict = callPackage ../applications/science/astronomy/gpredict { };
gptfdisk = callPackage ../tools/system/gptfdisk { };
grafx2 = callPackage ../applications/graphics/grafx2 {};