2022-11-15T02:26:06 ferium 4.2.0 -> 4.2.2 https://github.com/gorilla-devs/ferium/releases 2022-11-15T02:26:09 attrpath: ferium 2022-11-15T02:26:09 Checking auto update branch... 2022-11-15T02:26:09 No auto update branch exists 2022-11-15T02:26:09 Old version 4.2.0" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }: rustPlatform.buildRustPackage rec { pname = "ferium"; version = "4.2.1"; src = fetchFromGitHub { owner = "gorilla-devs"; repo = pname; rev = "v${version}"; sha256 = "sha256-tRJwx+yOzgy5SkVPtE2w4bhFSIaZUxXO4FBrZdhyz7g="; }; buildInputs = lib.optionals stdenv.isDarwin [ Security ]; cargoSha256 = "sha256-zfA+kCqfyI+zNleOHWAYGLePy5FHSw05xIcWRT8BHbY="; # 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"; homepage = "https://github.com/gorilla-devs/ferium"; license = licenses.mpl20; maintainers = with maintainers; [ leo60228 imsofi ]; }; }