mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
minesweep-rs: init at 6.0.11
This commit is contained in:
parent
5c31944c1d
commit
209994145d
27
pkgs/games/minesweep-rs/default.nix
Normal file
27
pkgs/games/minesweep-rs/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "minesweep-rs";
|
||||
version = "6.0.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cpcloud";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-jGg6GrPDPOWvIQiZ9UJbGHLaxTxSV7EvqIcEoGrfRZ0=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-IKf44wCCzXcasuimnAwnEhJGmag67rGxQE7+rBEUVOI=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Sweep some mines for fun, and probably not for profit";
|
||||
homepage = "https://github.com/cpcloud/minesweep-rs";
|
||||
license = licenses.asl20;
|
||||
mainProgram = "minesweep";
|
||||
maintainers = with maintainers; [ aleksana ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -36854,6 +36854,8 @@ with pkgs;
|
||||
minecraftServers = import ../games/minecraft-servers { inherit callPackage lib javaPackages; };
|
||||
minecraft-server = minecraftServers.vanilla; # backwards compatibility
|
||||
|
||||
minesweep-rs = callPackage ../games/minesweep-rs { };
|
||||
|
||||
moon-buggy = callPackage ../games/moon-buggy { };
|
||||
|
||||
inherit (callPackages ../games/minetest {
|
||||
|
Loading…
Reference in New Issue
Block a user