We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f2028 commit 7783158Copy full SHA for 7783158
modules/package.nix
@@ -6,8 +6,6 @@ let
6
inherit (haskellLib.types) listOfFilteringNulls;
7
inherit (lib) types;
8
9
- path = types.path // { check = x: types.path.check (x.origSrc or x); };
10
-
11
componentType = types.submodule [
12
./component.nix
13
{ _module.args = { inherit haskellLib; }; }
@@ -209,7 +207,7 @@ in
209
207
};
210
208
211
src = lib.mkOption {
212
- type = types.either path types.package;
+ type = types.str;
213
default =
214
pkgs.fetchurl {
215
url = "mirror://hackage/${config.name}.tar.gz";
@@ -254,7 +252,7 @@ in
254
252
255
253
256
patches = lib.mkOption {
257
- type = types.listOf (types.either types.unspecified path);
+ type = types.listOf (types.str);
258
default = [ ];
259
260
0 commit comments