tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
minefair: init at 1.5.0
Clover Ison
5 months ago
47fd2277
13d52457
+25
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
mi
minefair
package.nix
+25
pkgs/by-name/mi/minefair/package.nix
···
1
1
+
{
2
2
+
fetchFromGitHub,
3
3
+
rustPlatform,
4
4
+
lib,
5
5
+
}:
6
6
+
7
7
+
rustPlatform.buildRustPackage (finalAttrs: {
8
8
+
pname = "minefair";
9
9
+
version = "1.5.0";
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "LyricLy";
12
12
+
repo = "minefair";
13
13
+
tag = finalAttrs.version;
14
14
+
hash = "sha256-gABgSjS+ZhzmWJsCbbWMFstFAoTJ+Yc159CCo5nhYBc=";
15
15
+
};
16
16
+
cargoHash = "sha256-s4Wlp3IUPDuArf9N+9qWZH7JjQeczYi1phpUs7SNUd4=";
17
17
+
18
18
+
meta = {
19
19
+
description = "Fair and infinite implementation of Minesweeper";
20
20
+
homepage = "https://github.com/LyricLy/minefair";
21
21
+
license = lib.licenses.mit;
22
22
+
maintainers = [ lib.maintainers.pyrotelekinetic ];
23
23
+
mainProgram = "minefair";
24
24
+
};
25
25
+
})