From 0511eceae6d9cecc8b28f72650f44aa6946650a1 Mon Sep 17 00:00:00 2001 From: Ilesh Thiada Date: Sun, 10 Jul 2022 22:03:44 +0530 Subject: [PATCH] ferium: Update description and homepage Update the description and homepage of the ferium package --- pkgs/games/ferium/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/games/ferium/default.nix b/pkgs/games/ferium/default.nix index 11ba016adb34..2b2a26dc200f 100644 --- a/pkgs/games/ferium/default.nix +++ b/pkgs/games/ferium/default.nix @@ -15,13 +15,15 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "sha256-hR2PKQqSvtSBOOhZKW2IsGGjuU4jCdLMeruAHxErQtU="; - buildNoDefaultFeatures = true; # by default pulls in GTK 3 just for its directory picker + # Disable the GUI file picker so that GTK/XDG dependencies aren't used + buildNoDefaultFeatures = true; - doCheck = false; # requires internet + # Requires an internet connection + doCheck = false; meta = with lib; { - description = "A CLI Minecraft mod manager for mods from Modrinth, CurseForge, and Github Releases"; - homepage = "https://github.com/theRookieCoder/ferium"; + description = "Fast and multi-source CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and GitHub Releases"; + homepage = "https://github.com/gorilla-devs/ferium"; license = licenses.mpl20; maintainers = [ maintainers.leo60228 ]; };