2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-23 21:33:49 +00:00
nixpkgs/pkgs/tools/games/ajour/default.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

106 lines
2.0 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
rustPlatform,
autoPatchelfHook,
cmake,
makeWrapper,
pkg-config,
python3,
expat,
freetype,
kdialog,
zenity,
openssl,
libglvnd,
libX11,
libxcb,
libXcursor,
libXi,
libxkbcommon,
libXrandr,
vulkan-loader,
wayland,
}:
let
rpathLibs = [
libglvnd
libXcursor
libXi
libxkbcommon
libXrandr
libX11
vulkan-loader
wayland
];
in
rustPlatform.buildRustPackage rec {
pname = "ajour";
version = "1.3.2";
src = fetchFromGitHub {
owner = "casperstorm";
repo = "ajour";
rev = version;
sha256 = "sha256-oVaNLclU0EVNtxAASE8plXcC+clkwhBeb9pz1vXufV0=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"iced-0.3.0" = "sha256-cPQ0qqcdCMx2agSpAKSvVDBEoF/vUffGg1UkX85KmfY=";
};
};
nativeBuildInputs = [
autoPatchelfHook
cmake
makeWrapper
pkg-config
python3
];
buildInputs = [
expat
freetype
openssl
libxcb
libX11
libxkbcommon
];
postInstall = ''
mkdir -p $out/share
cp -r resources/logo $out/share/icons
install -Dm444 resources/linux/ajour.desktop -t $out/share/applications
'';
fixupPhase = ''
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}:$(patchelf --print-rpath $out/bin/ajour)" $out/bin/ajour
wrapProgram $out/bin/ajour --prefix PATH ":" ${
lib.makeBinPath [
zenity
kdialog
]
}
'';
meta = with lib; {
description = "World of Warcraft addon manager written in Rust";
mainProgram = "ajour";
longDescription = ''
Ajour is a World of Warcraft addon manager written in Rust with a
strong focus on performance and simplicity. The project is
completely advertisement free, privacy respecting and open source.
'';
homepage = "https://github.com/casperstorm/ajour";
changelog = "https://github.com/casperstorm/ajour/blob/master/CHANGELOG.md";
license = licenses.mit;
broken = stdenv.hostPlatform.isDarwin;
maintainers = with maintainers; [ hexa ];
};
}