diff --git a/backend/.#default.nix b/backend/.#default.nix new file mode 120000 index 00000000..43d48938 --- /dev/null +++ b/backend/.#default.nix @@ -0,0 +1 @@ +balsoft@AMD-Workstation.15930:1613204272 \ No newline at end of file diff --git a/backend/default.nix b/backend/default.nix index 9beac861..770d927f 100644 --- a/backend/default.nix +++ b/backend/default.nix @@ -1,4 +1,4 @@ -{ haskell-nix, runCommand, lib }: +{ haskell-nix, runCommand, lib, hlint }: let ignoreFilter = path: type: let @@ -40,5 +40,5 @@ let library = project.edna.components.library; server = project.edna.components.exes.edna-server; test = project.edna.checks.edna-test; - hlint = runCommand "hlint.html" {} '' ${hlint}/bin/hlint ${source} --no-exit-code --report=$out -j ''; -in { inherit server test library hlint; } + hlint-html = runCommand "hlint.html" {} "${hlint}/bin/hlint ${source} --no-exit-code --report=$out -j"; +in { inherit server test library; hlint = hlint-html; }