Skip to content

Commit baab5d0

Browse files
committed
Fix NIX_MAIN_PROGRAM issue
1 parent 4f5e528 commit baab5d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/check.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ in stdenv.mkDerivation ((
3535
dwarf = self drv.dwarf;
3636
};
3737

38-
inherit (drv) meta LANG LC_ALL buildInputs;
38+
inherit (drv) LANG LC_ALL buildInputs;
39+
meta = builtins.removeAttrs drv.meta ["mainProgram"];
3940

4041
nativeBuildInputs = drv.nativeBuildInputs
4142
++ [buildPackages.xorg.lndir]

0 commit comments

Comments
 (0)