about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-12 16:54:50 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-12 16:54:50 +0100
commit73ac41146bd325ca0b0e32fc203486e3764215ba (patch)
tree950a64860773791d1f95e4f855fdb3b3599573ae /pkgs/tools
parent79270a3152268452fb7111df58a77115b47a3d08 (diff)
downloadnixlib-73ac41146bd325ca0b0e32fc203486e3764215ba.tar
nixlib-73ac41146bd325ca0b0e32fc203486e3764215ba.tar.gz
nixlib-73ac41146bd325ca0b0e32fc203486e3764215ba.tar.bz2
nixlib-73ac41146bd325ca0b0e32fc203486e3764215ba.tar.lz
nixlib-73ac41146bd325ca0b0e32fc203486e3764215ba.tar.xz
nixlib-73ac41146bd325ca0b0e32fc203486e3764215ba.tar.zst
nixlib-73ac41146bd325ca0b0e32fc203486e3764215ba.zip
smenu: format, add SuperSandro2000 as maintainer
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/smenu/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/tools/misc/smenu/default.nix b/pkgs/tools/misc/smenu/default.nix
index dbfb5fb1cf82..1d1ed78b2faf 100644
--- a/pkgs/tools/misc/smenu/default.nix
+++ b/pkgs/tools/misc/smenu/default.nix
@@ -5,25 +5,24 @@ stdenv.mkDerivation rec {
   pname = "smenu";
 
   src = fetchFromGitHub {
-    owner  = "p-gen";
-    repo   = "smenu";
-    rev    = "v${version}";
+    owner = "p-gen";
+    repo = "smenu";
+    rev = "v${version}";
     sha256 = "1p8y1fgrfb7jxmv5ycvvnqaz7ghdi50paisgzk71169fqwp1crfa";
   };
 
   buildInputs = [ ncurses ];
 
   meta = with lib; {
-    homepage        = "https://github.com/p-gen/smenu";
-    description     = "Terminal selection utility";
+    homepage = "https://github.com/p-gen/smenu";
+    description = "Terminal selection utility";
     longDescription = ''
       Terminal utility that allows you to use words coming from the standard
       input to create a nice selection window just below the cursor. Once done,
       your selection will be sent to standard output.
     '';
-    license     = licenses.gpl2;
-    maintainers = [ maintainers.matthiasbeyer ];
-    platforms   = platforms.unix;
+    license = licenses.gpl2Only;
+    maintainers = with maintainers; [ matthiasbeyer SuperSandro2000 ];
+    platforms = platforms.unix;
   };
 }
-