{ lib , stdenv , fetchFromGitHub , rustPlatform , Security , SystemConfiguration , installShellFiles }: rustPlatform.buildRustPackage rec { pname = "ferium"; version = "4.6.0"; src = fetchFromGitHub { owner = "gorilla-devs"; repo = pname; rev = "v${version}"; hash = "sha256-a4bX5pC3FSCswvUG1wFeo3e6F+CmyfYowv7OhF2DZss="; }; buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; cargoHash = "sha256-CyDFBSTdUjapMtb6cNOEV53wTJDWotdSZZgHAQpsa9I="; # Disable the GUI file picker so that GTK/XDG dependencies aren't used buildNoDefaultFeatures = true; # Requires an internet connection doCheck = false; nativeBuildInputs = [ installShellFiles ]; postInstall = '' for shell in bash fish zsh; do $out/bin/ferium complete $shell > ferium.$shell installShellCompletion ferium.$shell done ''; meta = with lib; { description = "Fast and multi-source CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and GitHub Releases"; mainProgram = "ferium"; homepage = "https://github.com/gorilla-devs/ferium"; license = licenses.mpl20; maintainers = with maintainers; [ leo60228 soupglasses ]; }; }