nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 23 lines 597 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake }: 2 3stdenv.mkDerivation { 4 pname = "sgp4"; 5 version = "unstable-2022-11-13"; 6 7 src = fetchFromGitHub { 8 owner = "dnwrnr"; 9 repo = "sgp4"; 10 rev = "6a448b4850e5fbf8c1ca03bb5f6013a9fdc1fd91"; 11 hash = "sha256-gfJQOLhys5wKzZCxFVqbo+5l7jPeGPzrvYsdZKPSCJc="; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 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.unix; 22 }; 23}