38 in rustPlatform.buildRustPackage rec {
42 src = fetchFromGitHub {
43 owner = "casperstorm";
46 sha256 = "sha256-oVaNLclU0EVNtxAASE8plXcC+clkwhBeb9pz1vXufV0=";
50 lockFile = ./Cargo.lock;
52 "iced-0.3.0" = "sha256-cPQ0qqcdCMx2agSpAKSvVDBEoF/vUffGg1UkX85KmfY=";
75 cp -r resources/logo $out/share/icons
76 install -Dm444 resources/linux/ajour.desktop -t $out/share/applications
80 patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}:$(patchelf --print-rpath $out/bin/ajour)" $out/bin/ajour
81 wrapProgram $out/bin/ajour --prefix PATH ":" ${lib.makeBinPath [ zenity kdialog ]}
85 description = "World of Warcraft addon manager written in Rust";
86 mainProgram = "ajour";
88 Ajour is a World of Warcraft addon manager written in Rust with a
89 strong focus on performance and simplicity. The project is
90 completely advertisement free, privacy respecting and open source.
92 homepage = "https://github.com/casperstorm/ajour";
93 changelog = "https://github.com/casperstorm/ajour/blob/master/CHANGELOG.md";
94 license = licenses.mit;
95 broken = stdenv.hostPlatform.isDarwin;
96 maintainers = with maintainers; [ hexa ];