python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / sgp4 / default.nix
blob98c62f9cd34577000e924152c45e809f660e0791
1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
3 stdenv.mkDerivation {
4   pname = "sgp4";
5   version = "unstable-2021-01-11";
7   src = fetchFromGitHub {
8     owner = "dnwrnr";
9     repo = "sgp4";
10     rev = "ca9d4d97af4ee62461de6f13e0c85d1dc6000040";
11     sha256 = "sha256-56It/71R10U+Hnhw2tC16e5fZdyfQ8DLx6LVq65Rjvc=";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     description = "Simplified perturbations models library";
18     homepage = "https://github.com/dnwrnr/sgp4";
19     license = licenses.asl20;
20     maintainers = with maintainers; [ alexwinter ];
21     platforms = platforms.linux;
22   };