tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openspeedrun: init at 0.3.3
pyrox.dev
4 months ago
7e310754
53253907
verified
This commit was signed with the committer's
known signature
.
pyrox.dev
SSH Key Fingerprint:
SHA256:ihSg8ro3xVhqiuGLMtUGTeMVgmEMlaXvSS4AFyYcM/o=
+46
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
op
openspeedrun
package.nix
+46
pkgs/by-name/op/openspeedrun/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
fetchFromGitHub,
4
4
+
rustPlatform,
5
5
+
wayland,
6
6
+
libxkbcommon,
7
7
+
libGL,
8
8
+
autoPatchelfHook,
9
9
+
}:
10
10
+
11
11
+
rustPlatform.buildRustPackage (finalAttrs: {
12
12
+
pname = "openspeedrun";
13
13
+
version = "0.3.3";
14
14
+
15
15
+
src = fetchFromGitHub {
16
16
+
owner = "SrWither";
17
17
+
repo = "OpenSpeedRun";
18
18
+
tag = "v${finalAttrs.version}";
19
19
+
hash = "sha256-EZPApXUVhsaOYa6CnpR8IWeEoHEl89KJGGoBOYFqBV0=";
20
20
+
};
21
21
+
22
22
+
cargoHash = "sha256-WzsLEfDZpjpUrbyPOr5QUkTMrlAJoC9Rej5BMOKF7OM=";
23
23
+
24
24
+
nativeBuildInputs = [
25
25
+
autoPatchelfHook
26
26
+
];
27
27
+
28
28
+
runtimeDependencies = [
29
29
+
wayland
30
30
+
libxkbcommon
31
31
+
libGL
32
32
+
];
33
33
+
34
34
+
autoPatchelfIgnoreMissingDeps = [
35
35
+
"libgcc_s.so.1"
36
36
+
];
37
37
+
38
38
+
meta = {
39
39
+
changelog = "https://github.com/SrWither/OpenSpeedRun/releases/tag/v${finalAttrs.version}";
40
40
+
description = "Modern and minimalistic open-source speedrun timer";
41
41
+
homepage = "https://github.com/SrWither/OpenSpeedRun";
42
42
+
license = lib.licenses.bsd3;
43
43
+
maintainers = [ lib.maintainers.pyrox0 ];
44
44
+
mainProgram = "openspeedrun";
45
45
+
};
46
46
+
})