1 { lib, stdenv, fetchFromGitHub, ncurses }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-qzlBgGPzQ3lnTBKVzQ8ZN3fwOcPgeT+GSUWXray4EYw=";
14 buildInputs = [ ncurses ];
17 homepage = "https://github.com/p-gen/smenu";
18 description = "Terminal selection utility";
20 Terminal utility that allows you to use words coming from the standard
21 input to create a nice selection window just below the cursor. Once done,
22 your selection will be sent to standard output.
24 license = licenses.gpl2Only;
25 maintainers = with maintainers; [ matthiasbeyer SuperSandro2000 ];
26 platforms = platforms.unix;