Skip to content

Commit 7783158

Browse files
committed
Don't check the type of paths
This avoids running cleanears and excessive copying during evaluation
1 parent 18f2028 commit 7783158

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

modules/package.nix

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ let
66
inherit (haskellLib.types) listOfFilteringNulls;
77
inherit (lib) types;
88

9-
path = types.path // { check = x: types.path.check (x.origSrc or x); };
10-
119
componentType = types.submodule [
1210
./component.nix
1311
{ _module.args = { inherit haskellLib; }; }
@@ -209,7 +207,7 @@ in
209207
};
210208

211209
src = lib.mkOption {
212-
type = types.either path types.package;
210+
type = types.str;
213211
default =
214212
pkgs.fetchurl {
215213
url = "mirror://hackage/${config.name}.tar.gz";
@@ -254,7 +252,7 @@ in
254252
};
255253

256254
patches = lib.mkOption {
257-
type = types.listOf (types.either types.unspecified path);
255+
type = types.listOf (types.str);
258256
default = [ ];
259257
};
260258

0 commit comments

Comments
 (0)