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 8a3434f commit 688ba51Copy full SHA for 688ba51
nix/default.nix
@@ -4,7 +4,7 @@ with {
4
_: pkgs:
5
{
6
inherit (import sources.niv {}) niv;
7
- inherit (import sources.ormolu) ormolu;
+ inherit (import sources.ormolu { }) ormolu;
8
inherit (import sources.canonix {}) canonix;
9
cabal-fmt = null;
10
packages = pkgs.callPackages ./packages.nix {};
nix/run.nix
@@ -76,8 +76,8 @@ let
76
${pre-commit}/bin/pre-commit run --all-files
77
exitcode=$?
78
git diff
79
- [ $? -eq 0 ] && exit $exitcode
80
touch $out
+ [ $? -eq 0 ] && exit $exitcode
81
'';
82
in
83
run // {
0 commit comments