cpustat: newlines between (most) attributes

Exception is made for pname/version as is convention.

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