stellarsolver: init at 1.5
This commit is contained in:
parent
8dbd5276fe
commit
17646687c6
2 changed files with 32 additions and 0 deletions
30
pkgs/development/libraries/stellarsolver/default.nix
Normal file
30
pkgs/development/libraries/stellarsolver/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, mkDerivation, fetchFromGitHub, cmake,
|
||||
qtbase, cfitsio, gsl, wcslib, withTester ? false }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "stellarsolver";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rlancaste";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "12j20j9qbkkx55ix4nm1iw7wd36hamkpidbwhcnmj4yk5fqlyq4y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ qtbase cfitsio gsl wcslib ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DBUILD_TESTER=${if withTester then "on" else "off"}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/rlancaste/stellarsolver";
|
||||
description = "Astrometric plate solving library";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ hjones2199 ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -27470,6 +27470,8 @@ in
|
|||
|
||||
stellarium = libsForQt5.callPackage ../applications/science/astronomy/stellarium { };
|
||||
|
||||
stellarsolver = libsForQt5.callPackage ../development/libraries/stellarsolver { };
|
||||
|
||||
astrolabe-generator = callPackage ../applications/science/astronomy/astrolabe-generator { };
|
||||
|
||||
tulip = callPackage ../applications/science/misc/tulip {
|
||||
|
|
Loading…
Reference in a new issue