Commit 44ca3686 authored by Thiago Kenji Okada's avatar Thiago Kenji Okada
Browse files

nixos-option: format

parent aded7584
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
{
  lib,
  makeWrapper,
  stdenvNoCC,
  coreutils,
  installShellFiles,
  shellcheck,
  nix,
  jq,
  makeWrapper,
  man-db,
  coreutils,
  nix,
  shellcheck,
  stdenvNoCC,
}:

stdenvNoCC.mkDerivation {
@@ -44,7 +44,9 @@ stdenvNoCC.mkDerivation {
  doInstallCheck = true;
  installCheckPhase = ''
    runHook preInstallCheck

    shellcheck $out/bin/nixos-option

    runHook postInstallCheck
  '';

@@ -52,10 +54,10 @@ stdenvNoCC.mkDerivation {
    wrapProgram $out/bin/nixos-option \
      --prefix PATH : ${
        lib.makeBinPath [
          nix
          coreutils
          jq
          man-db
          coreutils
          nix
        ]
      }
  '';