File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 29
29
EOFTAG
30
30
runHook postInstall
31
31
'' ;
32
+ meta = {
33
+ mainProgram = APPNAME ;
34
+ description = "classic minesweeper where you can choose any size, number of bombs, or number of lives" ;
35
+ license = lib . licenses . mit ;
36
+ homepage = "https://github.com/BirdeeHub/minesweeper" ;
37
+ maintainers = if lib . maintainers ? birdee then [ lib . maintainers . birdee ] else [ ] ;
38
+ } ;
32
39
} ;
33
40
in
34
41
APPDRV
Original file line number Diff line number Diff line change 15
15
16
16
APPNAME = "minesweeper" ;
17
17
appOverlay = final : _ : {
18
- ${ APPNAME } = final . callPackage ./. { inherit inputs APPNAME ; inherit ( final ) system ; } ;
18
+ ${ APPNAME } = final . callPackage ./. { inherit APPNAME ; } ;
19
19
} ;
20
20
21
21
in {
32
32
packages = [ jdk ] ;
33
33
DEVSHELL = 0 ;
34
34
JAVA_HOME = "${ jdk } " ;
35
- shellHook = ''exec ${ zsh } /bin/zsh'' ;
35
+ shellHook = ''
36
+ '' ;
36
37
} ;
37
38
} ;
38
39
} )
You can’t perform that action at this time.
0 commit comments