sgp4: init at 20210111

This commit is contained in:
Alex Winter 2022-04-17 13:54:46 +02:00 committed by Matthew Leach
parent 5de43b6538
commit 91aa25cc04
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
stdenv.mkDerivation {
pname = "sgp4";
version = "unstable-2021-01-11";
src = fetchFromGitHub {
owner = "dnwrnr";
repo = "sgp4";
rev = "ca9d4d97af4ee62461de6f13e0c85d1dc6000040";
sha256 = "sha256-56It/71R10U+Hnhw2tC16e5fZdyfQ8DLx6LVq65Rjvc=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Simplified perturbations models library";
homepage = "https://github.com/dnwrnr/sgp4";
license = licenses.asl20;
maintainers = with maintainers; [ alexwinter ];
platforms = platforms.linux;
};
}

View File

@ -4610,6 +4610,8 @@ with pkgs;
sfz = callPackage ../tools/misc/sfz { };
sgp4 = callPackage ../development/libraries/sgp4 {};
shab = callPackage ../tools/text/shab { };
sheldon = callPackage ../tools/misc/sheldon { };