nixpkgs/pkgs/tools/misc/smenu/default.nix
Matthias Beyer 18a9624184 smenu: 0.9.16 -> 0.9.17
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Message-Id: <20210201142257.517-2-mail@beyermatthias.de>
2021-02-03 14:17:23 +01:00

30 lines
812 B
Nix

{ lib, stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
version = "0.9.17";
pname = "smenu";
src = fetchFromGitHub {
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";
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;
};
}