File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 74
74
name = base . name + "-activate-rs" ;
75
75
text = ''
76
76
#!${ final . runtimeShell }
77
- exec ${ self . defaultPackage . ${ system } } /bin/activate "$@"
77
+ exec ${ self . packages . ${ system } . default } /bin/activate "$@"
78
78
'' ;
79
79
executable = true ;
80
80
destination = "/activate-rs" ;
133
133
in
134
134
{
135
135
defaultPackage = self . packages . "${ system } " . deploy-rs ;
136
+ packages . default = self . packages . "${ system } " . deploy-rs ;
136
137
packages . deploy-rs = pkgs . deploy-rs . deploy-rs ;
137
138
138
139
defaultApp = self . apps . "${ system } " . deploy-rs ;
140
+ apps . default = self . apps . "${ system } " . deploy-rs ;
139
141
apps . deploy-rs = {
140
142
type = "app" ;
141
- program = "${ self . defaultPackage . "${ system } " } /bin/deploy" ;
143
+ program = "${ self . packages . "${ system } " . default } /bin/deploy" ;
142
144
} ;
143
145
144
146
devShell = pkgs . mkShell {
157
159
} ;
158
160
159
161
checks = {
160
- deploy-rs = self . defaultPackage . ${ system } . overrideAttrs ( super : { doCheck = true ; } ) ;
162
+ deploy-rs = self . packages . ${ system } . default . overrideAttrs ( super : { doCheck = true ; } ) ;
161
163
} ;
162
164
163
165
lib = pkgs . deploy-rs . lib ;
You can’t perform that action at this time.
0 commit comments