summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2017-08-13 22:37:05 +0200
committerRobert Helgesson <robert@rycee.net>2017-08-13 22:40:16 +0200
commit247974025bf909ef6305fd7e878790e2a94f9889 (patch)
treeb2f6e37d814784e113e241154290a18704bc78a4
parent207ed51615dd7e2aae32f400182f0f45b6064241 (diff)
downloadnixpkgs-247974025bf909ef6305fd7e878790e2a94f9889.tar
nixpkgs-247974025bf909ef6305fd7e878790e2a94f9889.tar.gz
nixpkgs-247974025bf909ef6305fd7e878790e2a94f9889.tar.bz2
nixpkgs-247974025bf909ef6305fd7e878790e2a94f9889.tar.lz
nixpkgs-247974025bf909ef6305fd7e878790e2a94f9889.tar.xz
nixpkgs-247974025bf909ef6305fd7e878790e2a94f9889.tar.zst
nixpkgs-247974025bf909ef6305fd7e878790e2a94f9889.zip
gkrellm: minor formatting fix
-rw-r--r--pkgs/applications/misc/gkrellm/default.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/pkgs/applications/misc/gkrellm/default.nix b/pkgs/applications/misc/gkrellm/default.nix
index 77ce0327a92..b9cbf8064a0 100644
--- a/pkgs/applications/misc/gkrellm/default.nix
+++ b/pkgs/applications/misc/gkrellm/default.nix
@@ -20,22 +20,23 @@ stdenv.mkDerivation rec {
   # Makefiles are patched to fix references to `/usr/X11R6' and to add
   # `-lX11' to make sure libX11's store path is in the RPATH.
   patchPhase = ''
-     echo "patching makefiles..."
-     for i in Makefile src/Makefile server/Makefile
-     do
-       sed -i "$i" -e "s|/usr/X11R6|${libX11.dev}|g ; s|-lICE|-lX11 -lICE|g"
-     done '';
+    echo "patching makefiles..."
+    for i in Makefile src/Makefile server/Makefile
+    do
+      sed -i "$i" -e "s|/usr/X11R6|${libX11.dev}|g ; s|-lICE|-lX11 -lICE|g"
+    done
+  '';
 
   makeFlags = [ "STRIP=-s" ];
   installFlags = [ "DESTDIR=$(out)" ];
 
-   meta = {
+  meta = {
     description = "Themeable process stack of system monitors";
-    longDescription =
-      '' GKrellM is a single process stack of system monitors which supports
-         applying themes to match its appearance to your window manager, Gtk,
-         or any other theme.
-      '';
+    longDescription = ''
+      GKrellM is a single process stack of system monitors which
+      supports applying themes to match its appearance to your window
+      manager, Gtk, or any other theme.
+    '';
 
     homepage = http://gkrellm.srcbox.net;
     license = licenses.gpl3Plus;