Merge pull request #32714 from matthiasbeyer/add-smenu

smenu: init at 0.9.10
This commit is contained in:
Jörg Thalheim 2017-12-15 09:20:05 -08:00 committed by GitHub
commit 3ddca57dd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
version = "v0.9.10";
name = "smenu-${version}";
src = fetchFromGitHub {
owner = "p-gen";
repo = "smenu";
rev = version;
sha256 = "1fh0s5zhx8ps760w0yxjv682lhahz1j63i0gdwvvr5vnvyx6c40d";
};
buildInputs = [ ncurses ];
meta = with stdenv.lib; {
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.linux;
};
}

View file

@ -4503,6 +4503,8 @@ with pkgs;
smbnetfs = callPackage ../tools/filesystems/smbnetfs {};
smenu = callPackage ../tools/misc/smenu { };
smugline = python3Packages.smugline;
snabb = callPackage ../tools/networking/snabb { } ;