summary refs log tree commit diff
path: root/pkgs/development/libraries/stfl
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-11-09 20:53:19 +0100
committerFelix Buehler <account@buehler.rocks>2021-11-10 14:03:48 +0100
commit66e4f4b3ee5d06694d083bdee4cbd692c3f9e30b (patch)
treed6783cfca24cab9d95a9085fc12c22235f8933a3 /pkgs/development/libraries/stfl
parent345d71ffd0a4f1693cb5d1e74b49fe5c34405705 (diff)
pkgs/development: followup fmt
Diffstat (limited to 'pkgs/development/libraries/stfl')
-rw-r--r--pkgs/development/libraries/stfl/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/stfl/default.nix b/pkgs/development/libraries/stfl/default.nix
index e28ecd5f64ae5..48c5edd13bf30 100644
--- a/pkgs/development/libraries/stfl/default.nix
+++ b/pkgs/development/libraries/stfl/default.nix
@@ -14,9 +14,9 @@ stdenv.mkDerivation rec {
   buildPhase = ''
     sed -i s/gcc/cc/g Makefile
     sed -i s%ncursesw/ncurses.h%ncurses.h% stfl_internals.h
-  '' + ( lib.optionalString stdenv.isDarwin ''
+  '' + (lib.optionalString stdenv.isDarwin ''
     sed -i s/-soname/-install_name/ Makefile
-  '' ) + ''
+  '') + ''
     make
   '';
 
@@ -28,10 +28,10 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-    homepage    = "http://www.clifford.at/stfl/";
+    homepage = "http://www.clifford.at/stfl/";
     description = "A library which implements a curses-based widget set for text terminals";
     maintainers = with lib.maintainers; [ lovek323 ];
-    license     = lib.licenses.lgpl3;
-    platforms   = lib.platforms.unix;
+    license = lib.licenses.lgpl3;
+    platforms = lib.platforms.unix;
   };
 }