Skip to content

Commit 0580d9e

Browse files
Try #1598:
2 parents 638ed96 + 10a527c commit 0580d9e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

modules/shell.nix

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,29 @@
4141
type = lib.types.unspecified;
4242
default = projectConfig.crossPlatforms;
4343
};
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+
};
4468
};
4569
}

0 commit comments

Comments
 (0)