1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
{
stdenv,
lib,
fetchFromGitHub,
gradle,
jdk23,
makeWrapper,
wrapGAppsHook3,
libXxf86vm,
libXtst,
libglvnd,
glib,
copyDesktopItems,
makeDesktopItem,
nix-update-script,
}:
stdenv.mkDerivation rec {
pname = "ed-odyssey-materials-helper";
version = "2.156";
src = fetchFromGitHub {
owner = "jixxed";
repo = "ed-odyssey-materials-helper";
tag = version;
hash = "sha256-T7Mh9QZRQbDJmW976bOg5YNQoFxJ2SUFl6qBjos8LSo=";
};
nativeBuildInputs = [
gradle
makeWrapper
wrapGAppsHook3
copyDesktopItems
];
patches = [
# We'll set up the edomh: URL scheme in makeDesktopItem,
# so this removes 1) the popup about it when you first start the program, 2) the option in the settings
# and makes the program always know that it is set up
./remove-urlscheme-settings.patch
];
postPatch = ''
# oslib doesn't seem to do releases and hasn't had a change since 2021, so always use commit d6ee6549bb
# it is not the latest commit because using a commit here whose hash starts with a number causes issues, but this works
substituteInPlace build.gradle \
--replace-fail '"com.github.wille:oslib:master-SNAPSHOT"' '"com.github.wille:oslib:d6ee6549bb"'
substituteInPlace application/src/main/java/module-info.java \
--replace-fail 'requires oslib.master.SNAPSHOT;' 'requires oslib.d6ee6549bb;'
'';
mitmCache = gradle.fetchDeps {
inherit pname;
data = ./deps.json;
};
gradleFlags = [ "-Dorg.gradle.java.home=${jdk23}" ];
gradleBuildTask = "application:jpackage";
gradleUpdateTask = "application:nixDownloadDeps";
installPhase = ''
runHook preInstall
mkdir -p $out/{share/ed-odyssey-materials-helper,bin}
cp -r application/build/jpackage/Elite\ Dangerous\ Odyssey\ Materials\ Helper/* $out/share/ed-odyssey-materials-helper
mkdir -p $out/share/icons/hicolor/512x512/apps/
ln -s $out/share/ed-odyssey-materials-helper/lib/Elite\ Dangerous\ Odyssey\ Materials\ Helper.png $out/share/icons/hicolor/512x512/apps/ed-odyssey-materials-helper.png
runHook postInstall
'';
dontWrapGApps = true;
postFixup = ''
# The logs would go into the current directory, so the wrapper will cd to the config dir first
makeShellWrapper $out/share/ed-odyssey-materials-helper/bin/Elite\ Dangerous\ Odyssey\ Materials\ Helper $out/bin/ed-odyssey-materials-helper \
--run 'mkdir -p ~/.config/odyssey-materials-helper/ && cd ~/.config/odyssey-materials-helper/' \
--prefix LD_LIBRARY_PATH : ${
lib.makeLibraryPath [
libXxf86vm
glib
libXtst
libglvnd
]
} "''${gappsWrapperArgs[@]}"
'';
desktopItems = [
(makeDesktopItem {
name = "ed-odyssey-materials-helper";
type = "Application";
desktopName = "Elite Dangerous Odyssey Materials Helper";
comment = "Helper for managing materials in Elite Dangerous Odyssey";
icon = "ed-odyssey-materials-helper";
exec = "ed-odyssey-materials-helper %u";
categories = [ "Game" ];
mimeTypes = [ "x-scheme-handler/edomh" ];
})
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Helper for managing materials in Elite Dangerous Odyssey";
homepage = "https://github.com/jixxed/ed-odyssey-materials-helper";
downloadPage = "https://github.com/jixxed/ed-odyssey-materials-helper/releases/tag/${version}";
changelog = "https://github.com/jixxed/ed-odyssey-materials-helper/releases/tag/${version}";
license = lib.licenses.gpl3Only;
sourceProvenance = with lib.sourceTypes; [
fromSource
binaryBytecode # mitm cache
];
maintainers = with lib.maintainers; [
elfenermarcell
toasteruwu
];
mainProgram = "ed-odyssey-materials-helper";
platforms = lib.platforms.linux;
};
}
|