diff options
author | EuAndreh <eu@euandre.org> | 2019-11-15 09:30:57 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-11-15 09:30:57 -0300 |
commit | 7e9ce9dc1a031dffaf77d8a2e7c64604874e2c64 (patch) | |
tree | 018c7722323c70c30636251c6acfe9addf270bda | |
parent | utils.nix: Use nixfmt from nixpkgs (diff) | |
download | euandre.org-7e9ce9dc1a031dffaf77d8a2e7c64604874e2c64.tar.gz euandre.org-7e9ce9dc1a031dffaf77d8a2e7c64604874e2c64.tar.xz |
Format default.nix (linter offense)
Diffstat (limited to '')
-rw-r--r-- | default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix index c5ea26f..4ff2220 100644 --- a/default.nix +++ b/default.nix @@ -13,7 +13,7 @@ let src = ./hakyll; phases = "unpackPhase buildPhase"; buildInputs = - [ (pkgsPinned.haskellPackages.ghcWithPackages (p: [ p.hakyll ])) ]; + [ (pkgsPinned.haskellPackages.ghcWithPackages (p: [ p.hakyll ])) ]; buildPhase = '' mkdir -p $out/bin ghc -O2 -dynamic --make Main.hs -o $out/bin/build-site @@ -55,7 +55,7 @@ in rec { hunspellCheck = utils.baseTask.overrideAttrs (baseAttrs: { name = "${baseAttrs.name}-hunspell"; buildInputs = baseAttrs.buildInputs - ++ [ (pkgs.hunspellWithDicts (with pkgs.hunspellDicts; [ en-us ])) ]; + ++ [ (pkgs.hunspellWithDicts (with pkgs.hunspellDicts; [ en-us ])) ]; buildPhase = '' patchShebangs . ./spelling/check-spelling.sh "${subtasks.docs}" |