tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
sgp4: unstable-2021-01-11 -> unstable-2022-11-13
Tungsten842
3 years ago
540b9615
53ada238
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
sgp4
default.nix
+4
-4
pkgs/development/libraries/sgp4/default.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake }:
2
2
3
3
stdenv.mkDerivation {
4
4
pname = "sgp4";
5
5
-
version = "unstable-2021-01-11";
5
5
+
version = "unstable-2022-11-13";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "dnwrnr";
9
9
repo = "sgp4";
10
10
-
rev = "ca9d4d97af4ee62461de6f13e0c85d1dc6000040";
11
11
-
sha256 = "sha256-56It/71R10U+Hnhw2tC16e5fZdyfQ8DLx6LVq65Rjvc=";
10
10
+
rev = "6a448b4850e5fbf8c1ca03bb5f6013a9fdc1fd91";
11
11
+
hash = "sha256-gfJQOLhys5wKzZCxFVqbo+5l7jPeGPzrvYsdZKPSCJc=";
12
12
};
13
13
14
14
nativeBuildInputs = [ cmake ];