tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
orbvis: init at 0.3.2
thtrf
6 months ago
cc31439e
af17f1e5
+54
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
or
orbvis
package.nix
+54
pkgs/by-name/or/orbvis/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchFromGitHub,
5
5
+
pkg-config,
6
6
+
gtk3,
7
7
+
curl,
8
8
+
libepoxy,
9
9
+
meson,
10
10
+
ninja,
11
11
+
wrapGAppsHook3,
12
12
+
nix-update-script,
13
13
+
}:
14
14
+
15
15
+
stdenv.mkDerivation (finalAttrs: {
16
16
+
pname = "orbvis";
17
17
+
version = "0.3.2";
18
18
+
19
19
+
src = fetchFromGitHub {
20
20
+
owner = "wojciech-graj";
21
21
+
repo = "orbvis";
22
22
+
tag = "v${finalAttrs.version}";
23
23
+
hash = "sha256-kPbRhm+HymY6DuR4JgE6qTTYKGIqVxvwxtveu7dOOO0=";
24
24
+
};
25
25
+
26
26
+
nativeBuildInputs = [
27
27
+
meson
28
28
+
ninja
29
29
+
pkg-config
30
30
+
wrapGAppsHook3
31
31
+
];
32
32
+
33
33
+
buildInputs = [
34
34
+
gtk3
35
35
+
curl
36
36
+
libepoxy
37
37
+
];
38
38
+
39
39
+
postInstall = ''
40
40
+
install -Dm444 $src/flatpak/io.github.wojciech_graj.OrbVis.desktop -t $out/share/applications
41
41
+
install -Dm444 $src/flatpak/128x128/io.github.wojciech_graj.OrbVis.png -t $out/share/icons/hicolor/128x128/apps
42
42
+
'';
43
43
+
44
44
+
passthru.updateScript = nix-update-script { };
45
45
+
46
46
+
meta = {
47
47
+
description = "View and propagate the full CelesTrak satellite catalog in realtime";
48
48
+
homepage = "https://github.com/wojciech-graj/OrbVis";
49
49
+
license = lib.licenses.gpl2;
50
50
+
maintainers = with lib.maintainers; [ thtrf ];
51
51
+
mainProgram = "orbvis";
52
52
+
platforms = lib.platforms.linux;
53
53
+
};
54
54
+
})