minefair: init at 1.5.0 (#435044)

authored by philiptaron.tngl.sh and committed by GitHub 7dfdb92f c9b0aebb

+27 -3
+2 -3
maintainers/maintainer-list.nix
··· 20821 20821 githubId = 7279609; 20822 20822 }; 20823 20823 pyrotelekinetic = { 20824 - name = "Clover"; 20825 - email = "carter@isons.org"; 20824 + name = "Clover Ison"; 20825 + email = "clover@isons.org"; 20826 20826 github = "pyrotelekinetic"; 20827 20827 githubId = 29682759; 20828 - keys = [ { fingerprint = "5963 78DB 25AA 608D 2743 D466 5D6A D9AE 71B3 F983"; } ]; 20829 20828 }; 20830 20829 pyrox0 = { 20831 20830 name = "Pyrox";
+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 + })