cpustat: newlines between (most) attributes

Exception is made for pname/version as is convention.

+4
+4
pkgs/os-specific/linux/cpustat/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 pname = "cpustat"; 5 5 version = "0.02.09"; 6 + 6 7 src = fetchurl { 7 8 url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.xz"; 8 9 sha256 = "12xahv65yrhs5r830clkl1qnwg3dnrk5qn3zsznzbv1iy2f3cj7y"; 9 10 }; 11 + 10 12 buildInputs = [ ncurses ]; 13 + 11 14 installFlags = [ 12 15 "BINDIR=${placeholder "out"}/bin" 13 16 "MANDIR=${placeholder "out"}/share/man/man8" 14 17 ]; 18 + 15 19 meta = with lib; { 16 20 description = "CPU usage monitoring tool"; 17 21 homepage = "https://kernel.ubuntu.com/~cking/cpustat/";