2024-04-09 11:00:18 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, Security
|
|
|
|
, SystemConfiguration
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2022-05-15 21:57:03 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ferium";
|
2024-09-17 12:59:28 +00:00
|
|
|
version = "4.7.1";
|
2022-05-15 21:57:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gorilla-devs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-09-17 12:59:28 +00:00
|
|
|
hash = "sha256-eeQjezB6pRdnPADLgDLo8b+bUSP12gfBhFNt/uYCwHU=";
|
2022-05-15 21:57:03 +00:00
|
|
|
};
|
|
|
|
|
2024-04-09 11:00:18 +00:00
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security SystemConfiguration ];
|
2022-05-15 21:57:03 +00:00
|
|
|
|
2024-09-17 12:59:28 +00:00
|
|
|
cargoHash = "sha256-yBi6zyljkYEIUvSH4nXMw8fjPnt4kjqiuZ/QLT5IbqQ=";
|
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";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "ferium";
|
2022-07-10 16:33:44 +00:00
|
|
|
homepage = "https://github.com/gorilla-devs/ferium";
|
2022-05-15 21:57:03 +00:00
|
|
|
license = licenses.mpl20;
|
2023-07-28 18:01:06 +00:00
|
|
|
maintainers = with maintainers; [ leo60228 soupglasses ];
|
2022-05-15 21:57:03 +00:00
|
|
|
};
|
|
|
|
}
|