evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sg / sgp4 / package.nix
blobb2095e93aa11b8db281210a69c81c19dfa42c530
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation {
4   pname = "sgp4";
5   version = "unstable-2022-11-13";
7   src = fetchFromGitHub {
8     owner = "dnwrnr";
9     repo = "sgp4";
10     rev = "6a448b4850e5fbf8c1ca03bb5f6013a9fdc1fd91";
11     hash = "sha256-gfJQOLhys5wKzZCxFVqbo+5l7jPeGPzrvYsdZKPSCJc=";
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.unix;
22   };