2022-07-20 23:01:17 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
|
2022-05-15 21:57:03 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ferium";
|
2023-01-16 05:18:51 +00:00
|
|
|
version = "4.3.4";
|
2022-05-15 21:57:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gorilla-devs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-01-16 05:18:51 +00:00
|
|
|
sha256 = "sha256-nUyIMTVRaJHVYeIp037uoZQhh04GmmW5ZjPiwAurB9A=";
|
2022-05-15 21:57:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
|
2023-01-16 05:18:51 +00:00
|
|
|
cargoHash = "sha256-pjUFMvIBl5uJahJBEoSVe6msVRWGlxazcwwxPEU0S3g=";
|
2022-05-15 21:57:03 +00:00
|
|
|
|
2022-07-10 16:33:44 +00:00
|
|
|
# Disable the GUI file picker so that GTK/XDG dependencies aren't used
|
|
|
|
buildNoDefaultFeatures = true;
|
2022-05-15 21:57:03 +00:00
|
|
|
|
2022-07-10 16:33:44 +00:00
|
|
|
# Requires an internet connection
|
|
|
|
doCheck = false;
|
2022-05-15 21:57:03 +00:00
|
|
|
|
2022-07-20 23:01:17 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/ferium complete $shell > ferium.$shell
|
|
|
|
installShellCompletion ferium.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2022-05-15 21:57:03 +00:00
|
|
|
meta = with lib; {
|
2022-07-10 16:33:44 +00:00
|
|
|
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";
|
2022-05-15 21:57:03 +00:00
|
|
|
license = licenses.mpl20;
|
2022-07-20 22:59:26 +00:00
|
|
|
maintainers = with maintainers; [ leo60228 imsofi ];
|
2022-05-15 21:57:03 +00:00
|
|
|
};
|
|
|
|
}
|