mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ferium: init at 4.1.1
This commit is contained in:
parent
fc658c86f7
commit
7d1a3b110f
2 changed files with 32 additions and 0 deletions
28
pkgs/games/ferium/default.nix
Normal file
28
pkgs/games/ferium/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ferium";
|
||||
version = "4.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gorilla-devs";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "5DYdeK6JdA7oLBkjP3WkwLwlBitdf4Yt2dNP7P0INN0=";
|
||||
};
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
cargoSha256 = "7rpxHfe+pWarPJ72WSXjgr63YctZ5+RrsEgmw7o66VI=";
|
||||
|
||||
buildNoDefaultFeatures = true; # by default pulls in GTK 3 just for its directory picker
|
||||
|
||||
doCheck = false; # requires internet
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI Minecraft mod manager for mods from Modrinth, CurseForge, and Github Releases";
|
||||
homepage = "https://github.com/theRookieCoder/ferium";
|
||||
license = licenses.mpl20;
|
||||
maintainers = [ maintainers.leo60228 ];
|
||||
};
|
||||
}
|
|
@ -31942,6 +31942,10 @@ with pkgs;
|
|||
|
||||
fairymax = callPackage ../games/fairymax { };
|
||||
|
||||
ferium = callPackage ../games/ferium {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
fheroes2 = callPackage ../games/fheroes2 { };
|
||||
|
||||
fish-fillets-ng = callPackage ../games/fish-fillets-ng { };
|
||||
|
|
Loading…
Reference in a new issue