minefair: init at 1.5.0

+25
+25
pkgs/by-name/mi/minefair/package.nix
··· 1 + { 2 + fetchFromGitHub, 3 + rustPlatform, 4 + lib, 5 + }: 6 + 7 + rustPlatform.buildRustPackage (finalAttrs: { 8 + pname = "minefair"; 9 + version = "1.5.0"; 10 + src = fetchFromGitHub { 11 + owner = "LyricLy"; 12 + repo = "minefair"; 13 + tag = finalAttrs.version; 14 + hash = "sha256-gABgSjS+ZhzmWJsCbbWMFstFAoTJ+Yc159CCo5nhYBc="; 15 + }; 16 + cargoHash = "sha256-s4Wlp3IUPDuArf9N+9qWZH7JjQeczYi1phpUs7SNUd4="; 17 + 18 + meta = { 19 + description = "Fair and infinite implementation of Minesweeper"; 20 + homepage = "https://github.com/LyricLy/minefair"; 21 + license = lib.licenses.mit; 22 + maintainers = [ lib.maintainers.pyrotelekinetic ]; 23 + mainProgram = "minefair"; 24 + }; 25 + })