python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / ferium / default.nix
blob7fc79f8be438923694a353b780b20c8e1107c113
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ferium";
5   version = "4.2.0";
7   src = fetchFromGitHub {
8     owner = "gorilla-devs";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-pJis4Lab/qRc5taeTxSoJOvNrhsWhGJrPILvkmB8k2A=";
12   };
14   buildInputs = lib.optionals stdenv.isDarwin [ Security ];
16   cargoSha256 = "sha256-J1BY0gSkUQRFZJ/UlikvQqrLvCjHlf2jxbg6BIoZZUE=";
18   # Disable the GUI file picker so that GTK/XDG dependencies aren't used
19   buildNoDefaultFeatures = true;
21   # Requires an internet connection
22   doCheck = false;
24   nativeBuildInputs = [ installShellFiles ];
26   postInstall = ''
27     for shell in bash fish zsh; do
28       $out/bin/ferium complete $shell > ferium.$shell
29       installShellCompletion ferium.$shell
30     done
31   '';
33   meta = with lib; {
34     description = "Fast and multi-source CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and GitHub Releases";
35     homepage = "https://github.com/gorilla-devs/ferium";
36     license = licenses.mpl20;
37     maintainers = with maintainers; [ leo60228 imsofi ];
38   };