We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3682ad4 commit 2b712baCopy full SHA for 2b712ba
nix/pkgs/mantis/default.nix
@@ -12,10 +12,9 @@
12
filter = path: _: !lib.hasSuffix "nix" path;
13
};
14
in
15
- if lib.isStorePath src then src
16
- else if isGit then
17
- if dirty then mkSrc (gitignoreSource src) else repo
18
- else filterSrc src;
+ if isGit then
+ if dirty then filterSrc (gitignoreSource src) else repo
+ else src;
19
20
mantis-source = mkSrc src;
21
0 commit comments