kstars: init at 2.9.8 (#86032)
* kstars: init at 2.9.8 * Update pkgs/applications/science/astronomy/kstars/default.nix Co-authored-by: Manuel Bärenz <programming@manuelbaerenz.de> Co-authored-by: Manuel Bärenz <programming@manuelbaerenz.de>
This commit is contained in:
parent
32585ddcec
commit
33b968049a
48
pkgs/applications/science/astronomy/kstars/default.nix
Normal file
48
pkgs/applications/science/astronomy/kstars/default.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
mkDerivation, lib, fetchgit,
|
||||||
|
extra-cmake-modules,
|
||||||
|
|
||||||
|
kconfig, kdoctools, kguiaddons, ki18n, kinit, kiconthemes, kio,
|
||||||
|
knewstuff, kplotting, kwidgetsaddons, kxmlgui,
|
||||||
|
|
||||||
|
qtx11extras, qtwebsockets,
|
||||||
|
|
||||||
|
eigen, zlib,
|
||||||
|
|
||||||
|
cfitsio, indilib, xplanet
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kstars";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://anongit.kde.org/kstars.git";
|
||||||
|
rev = "7acc527939280edd22823371dc4e22494c6c626a";
|
||||||
|
sha256 = "1n1lgi7p3dj893fdnzjbnrha40p4apl0dy8zppcabxwrb1khb84v";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
buildInputs = [
|
||||||
|
kconfig kdoctools kguiaddons ki18n kinit kiconthemes kio
|
||||||
|
knewstuff kplotting kwidgetsaddons kxmlgui
|
||||||
|
|
||||||
|
qtx11extras qtwebsockets
|
||||||
|
|
||||||
|
eigen zlib
|
||||||
|
|
||||||
|
cfitsio indilib xplanet
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Virtual planetarium astronomy software";
|
||||||
|
homepage = "https://kde.org/applications/education/org.kde.kstars";
|
||||||
|
longDescription = ''
|
||||||
|
It provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time.
|
||||||
|
The display includes up to 100 million stars, 13.000 deep-sky objects, all 8 planets, the Sun and Moon, and thousands of comets, asteroids, supernovae, and satellites.
|
||||||
|
For students and teachers, it supports adjustable simulation speeds in order to view phenomena that happen over long timescales, the KStars Astrocalculator to predict conjunctions, and many common astronomical calculations.
|
||||||
|
'';
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ timput ];
|
||||||
|
};
|
||||||
|
}
|
@ -4553,6 +4553,8 @@ in
|
|||||||
|
|
||||||
kst = libsForQt5.callPackage ../tools/graphics/kst { gsl = gsl_1; };
|
kst = libsForQt5.callPackage ../tools/graphics/kst { gsl = gsl_1; };
|
||||||
|
|
||||||
|
kstars = libsForQt5.callPackage ../applications/science/astronomy/kstars { };
|
||||||
|
|
||||||
kytea = callPackage ../tools/text/kytea { };
|
kytea = callPackage ../tools/text/kytea { };
|
||||||
|
|
||||||
k6 = callPackage ../development/tools/k6 { };
|
k6 = callPackage ../development/tools/k6 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user