File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 41
41
type = lib . types . unspecified ;
42
42
default = projectConfig . crossPlatforms ;
43
43
} ;
44
+ name = lib . mkOption {
45
+ type = lib . types . unspecified ;
46
+ default = pkgs . mkShell . name ;
47
+ } ;
48
+ inputsFrom = lib . mkOption {
49
+ type = lib . types . unspecified ;
50
+ default = pkgs . mkShell . inputsFrom ;
51
+ } ;
52
+ shellHook = lib . mkOption {
53
+ type = lib . types . unspecified ;
54
+ default = pkgs . mkShell . shellHook ;
55
+ } ;
56
+ buildInputs = lib . mkOption {
57
+ type = lib . types . unspecified ;
58
+ default = mkDerivation . buildInputs ;
59
+ } ;
60
+ nativeBuildInputs = lib . mkOption {
61
+ type = lib . types . unspecified ;
62
+ default = mkDerivation . nativeBuildInputs ;
63
+ } ;
64
+ passthru = lib . mkOption {
65
+ type = lib . types . unspecified ;
66
+ default = mkDerivation . passthru ;
67
+ } ;
44
68
} ;
45
69
}
You can’t perform that action at this time.
0 commit comments