2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ncurses }:
|
2017-12-15 16:09:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-02-01 14:22:56 +00:00
|
|
|
version = "0.9.17";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "smenu";
|
2017-12-15 16:09:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "p-gen";
|
|
|
|
repo = "smenu";
|
2018-05-28 12:59:57 +00:00
|
|
|
rev = "v${version}";
|
2021-02-01 14:22:56 +00:00
|
|
|
sha256 = "1p8y1fgrfb7jxmv5ycvvnqaz7ghdi50paisgzk71169fqwp1crfa";
|
2017-12-15 16:09:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/p-gen/smenu";
|
2017-12-15 16:09:27 +00:00
|
|
|
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;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
2019-03-11 18:16:55 +00:00
|
|
|
platforms = platforms.unix;
|
2017-12-15 16:09:27 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|