Merge pull request #305674 from r-ryantm/auto-update/ukmm

ukmm: 0.10.1 -> 0.11.0
This commit is contained in:
Kira Bruneau 2024-04-24 15:57:58 -04:00 committed by GitHub
commit 1e1b1060c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1647 additions and 1554 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,50 +4,40 @@
, cmake , cmake
, pkg-config , pkg-config
, wrapGAppsHook , wrapGAppsHook
, atk , libglvnd
, glib
, gtk3-x11
, nix-update-script , nix-update-script
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ukmm"; pname = "ukmm";
version = "0.10.1"; version = "0.11.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "NiceneNerd"; owner = "NiceneNerd";
repo = pname; repo = pname;
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-suxUiJ++39aJe5XmAqh5sQajLzYoXo06k9mYw9rLU9E="; hash = "sha256-/w1oJVn/JGBKPYhFqbvvY+HlA3owOei64ZqrPUXHu/E=";
}; };
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
outputHashes = { outputHashes = {
"catppuccin-egui-1.0.2" = "sha256-+ILfvDgZxe/QPJuVqIbRjaHNovpRAX+ym2QZ96glb4w="; "egui-aesthetix-0.2.2" = "sha256-LtrMSnz5KWUrYCe50kgGU98WdPxWlo+U7FtRmxSIeI8=";
"ecolor-0.20.0" = "sha256-uTDkNRWsA1nM8Qhb0X2LjVDRuaW31vWxR8kDLL27BVE=";
"egui-notify-0.4.0" = "sha256-jybtUnv9xqzulZ5nfg+T1u8iTOsPjKGVVQ7JhwbvPdU=";
"egui_commonmark-0.6.0" = "sha256-hsVbtL2F+jifnzN6FgcDAVtLd1bVxTs0twn0SMvq9eU=";
"egui_dock-0.2.1" = "sha256-gGIO0boXKxLu0ABDH/uJhEZEoE/ql8E65LRmr0Xhv3s=";
"junction-0.2.0" = "sha256-6+pPp5wG1NoIj16Z+OvO4Pvy0jnQibn/A9cTaHAEVq4="; "junction-0.2.0" = "sha256-6+pPp5wG1NoIj16Z+OvO4Pvy0jnQibn/A9cTaHAEVq4=";
"msbt-0.1.1" = "sha256-PtBs60xgYrwS7yPnRzXpExwYUD3azIaqObRnnJEL5dE="; "msbt-0.1.1" = "sha256-PtBs60xgYrwS7yPnRzXpExwYUD3azIaqObRnnJEL5dE=";
"msyt-1.2.1" = "sha256-aw5whCoQBhO0u9Fx2rTO1sRuPdGnAAlmPWv5q8CbQcI="; "msyt-1.2.1" = "sha256-aw5whCoQBhO0u9Fx2rTO1sRuPdGnAAlmPWv5q8CbQcI=";
}; };
}; };
RUSTC_BOOTSTRAP = true;
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
pkg-config pkg-config
wrapGAppsHook wrapGAppsHook
]; ];
buildInputs = [ preFixup = ''
atk gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libglvnd ]})
glib '';
gtk3-x11
];
cargoTestFlags = [ cargoTestFlags = [
"--all" "--all"
@ -71,11 +61,11 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "A new mod manager for The Legend of Zelda: Breath of the Wild"; description = "A new mod manager for The Legend of Zelda: Breath of the Wild";
mainProgram = "ukmm";
homepage = "https://github.com/NiceneNerd/ukmm"; homepage = "https://github.com/NiceneNerd/ukmm";
changelog = "https://github.com/NiceneNerd/ukmm/blob/${src.rev}/CHANGELOG.md"; changelog = "https://github.com/NiceneNerd/ukmm/blob/${src.rev}/CHANGELOG.md";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ kira-bruneau ]; maintainers = with maintainers; [ kira-bruneau ];
platforms = platforms.linux; platforms = platforms.linux;
mainProgram = "ukmm";
}; };
} }