aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-11-15 09:30:57 -0300
committerEuAndreh <eu@euandre.org>2019-11-15 09:30:57 -0300
commit7e9ce9dc1a031dffaf77d8a2e7c64604874e2c64 (patch)
tree018c7722323c70c30636251c6acfe9addf270bda
parentutils.nix: Use nixfmt from nixpkgs (diff)
downloadeuandre.org-7e9ce9dc1a031dffaf77d8a2e7c64604874e2c64.tar.gz
euandre.org-7e9ce9dc1a031dffaf77d8a2e7c64604874e2c64.tar.xz
Format default.nix (linter offense)
Diffstat (limited to '')
-rw-r--r--default.nix4
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}"