3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/ferium/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.1 KiB
Nix
Raw Normal View History

2022-07-21 00:01:17 +01:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
2022-05-15 22:57:03 +01:00
rustPlatform.buildRustPackage rec {
pname = "ferium";
2022-11-16 02:15:07 +00:00
version = "4.2.2";
2022-05-15 22:57:03 +01:00
src = fetchFromGitHub {
owner = "gorilla-devs";
repo = pname;
rev = "v${version}";
2022-11-16 02:15:07 +00:00
sha256 = "sha256-CtqnPHTFkfHE8IolqSlGt8n1fsLXCKMiBt8fQzLBPYk=";
2022-05-15 22:57:03 +01:00
};
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2022-11-16 02:15:07 +00:00
cargoSha256 = "sha256-EYfqdGpaAWDmvqov/k81kE9frHYNKOTHakCrHN7zpU4=";
2022-05-15 22:57:03 +01:00
# Disable the GUI file picker so that GTK/XDG dependencies aren't used
buildNoDefaultFeatures = true;
2022-05-15 22:57:03 +01:00
# Requires an internet connection
doCheck = false;
2022-05-15 22:57:03 +01:00
2022-07-21 00:01:17 +01: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 22:57:03 +01:00
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";
2022-05-15 22:57:03 +01:00
license = licenses.mpl20;
2022-07-20 23:59:26 +01:00
maintainers = with maintainers; [ leo60228 imsofi ];
2022-05-15 22:57:03 +01:00
};
}