about summary refs log tree commit diff
path: root/pkgs/by-name/ha
diff options
context:
space:
mode:
authorCoutinho de Souza <dev@onemoresuza.com>2024-05-16 20:13:39 -0300
committerCoutinho de Souza <dev@onemoresuza.com>2024-06-04 20:32:55 -0300
commit6893d370fc493cb5bba95f1d325a5293756c089a (patch)
tree213d915ad6ef8769a3e0391a4a2aae039513d6e6 /pkgs/by-name/ha
parentb0fcfa88cf11fe6e2546ff4a1452e96d4c7a41bb (diff)
haredoc: format with nixfmt-rfc-style
Diffstat (limited to 'pkgs/by-name/ha')
-rw-r--r--pkgs/by-name/ha/haredoc/package.nix21
1 files changed, 13 insertions, 8 deletions
diff --git a/pkgs/by-name/ha/haredoc/package.nix b/pkgs/by-name/ha/haredoc/package.nix
index 2476e7d937c50..021df50b0671d 100644
--- a/pkgs/by-name/ha/haredoc/package.nix
+++ b/pkgs/by-name/ha/haredoc/package.nix
@@ -1,24 +1,29 @@
-{ lib
-, stdenv
-, scdoc
-, hare
+{
+  lib,
+  stdenv,
+  scdoc,
+  hare,
 }:
 let
   arch = stdenv.hostPlatform.uname.processor;
 in
 stdenv.mkDerivation {
   pname = "haredoc";
-  outputs = [ "out" "man" ];
+  outputs = [
+    "out"
+    "man"
+  ];
   inherit (hare) version src;
 
-  strictDeps = true;
-  enableParallelBuilding = true;
-
   nativeBuildInputs = [
     scdoc
     hare
   ];
 
+  strictDeps = true;
+
+  enableParallelBuilding = true;
+
   preBuild = ''
     HARECACHE="$(mktemp -d)"
     export HARECACHE