mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 17:10:48 +00:00
gpredict: init at 1.3 (#32436)
This commit is contained in:
parent
f0f64fb8f0
commit
66da9b9f8f
33
pkgs/applications/science/astronomy/gpredict/default.nix
Normal file
33
pkgs/applications/science/astronomy/gpredict/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2393,6 +2393,8 @@ with pkgs;
|
||||||
|
|
||||||
gpodder = callPackage ../applications/audio/gpodder { };
|
gpodder = callPackage ../applications/audio/gpodder { };
|
||||||
|
|
||||||
|
gpredict = callPackage ../applications/science/astronomy/gpredict { };
|
||||||
|
|
||||||
gptfdisk = callPackage ../tools/system/gptfdisk { };
|
gptfdisk = callPackage ../tools/system/gptfdisk { };
|
||||||
|
|
||||||
grafx2 = callPackage ../applications/graphics/grafx2 {};
|
grafx2 = callPackage ../applications/graphics/grafx2 {};
|
||||||
|
|
Loading…
Reference in a new issue