summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-09-16 22:19:02 -0500
committerWill Dietz <w@wdtz.org>2019-09-16 22:19:02 -0500
commit93818840793620b11d73f9eac0ab29bea8154caa (patch)
tree01d7e9c53e71c974a46de70c6721c393b276045b
parent3ba36885524e6a283b75b3ae57b20be1ef23d8e3 (diff)
downloadnixpkgs-93818840793620b11d73f9eac0ab29bea8154caa.tar
nixpkgs-93818840793620b11d73f9eac0ab29bea8154caa.tar.gz
nixpkgs-93818840793620b11d73f9eac0ab29bea8154caa.tar.bz2
nixpkgs-93818840793620b11d73f9eac0ab29bea8154caa.tar.lz
nixpkgs-93818840793620b11d73f9eac0ab29bea8154caa.tar.xz
nixpkgs-93818840793620b11d73f9eac0ab29bea8154caa.tar.zst
nixpkgs-93818840793620b11d73f9eac0ab29bea8154caa.zip
health-check: whitespace between attributes
-rw-r--r--pkgs/os-specific/linux/health-check/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/health-check/default.nix b/pkgs/os-specific/linux/health-check/default.nix
index e76d77a4448..c90029907c0 100644
--- a/pkgs/os-specific/linux/health-check/default.nix
+++ b/pkgs/os-specific/linux/health-check/default.nix
@@ -3,16 +3,21 @@
 stdenv.mkDerivation rec {
   pname = "health-check";
   version = "0.03.02";
+
   src = fetchurl {
     url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
     sha256 = "12n2qp5lrlahkgrkwy3mjm0nscz6yhhh80z4xmd2n96pn8f3d4hh";
   };
+
   buildInputs = [ json_c libbsd ];
+
   makeFlags = [ "JSON_OUTPUT=y" "FNOTIFY=y" ];
+
   installFlags = [
     "BINDIR=${placeholder "out"}/bin"
     "MANDIR=${placeholder "out"}/share/man/man8"
   ];
+
   meta = with lib; {
     description = "Process monitoring tool";
     homepage = "https://kernel.ubuntu.com/~cking/health-check/";