mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ferium";
|
|
version = "4.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gorilla-devs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-3ILDR6CmR/CTzZfUEPD10TQZRSDKSqHmwxU3GPHIyK8=";
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
cargoHash = "sha256-00rzn8eWcxRfPvIT2+EVQLd6e8gnMWx78QrwURpxstg=";
|
|
|
|
# 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 soupglasses ];
|
|
};
|
|
}
|