nixpkgs/pkgs/tools/misc/smenu/default.nix

29 lines
814 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ncurses }:
2017-12-15 16:09:27 +00:00
stdenv.mkDerivation rec {
version = "0.9.17";
pname = "smenu";
2017-12-15 16:09:27 +00:00
src = fetchFromGitHub {
owner = "p-gen";
repo = "smenu";
rev = "v${version}";
sha256 = "1p8y1fgrfb7jxmv5ycvvnqaz7ghdi50paisgzk71169fqwp1crfa";
2017-12-15 16:09:27 +00:00
};
buildInputs = [ ncurses ];
meta = with lib; {
homepage = "https://github.com/p-gen/smenu";
description = "Terminal selection utility";
2017-12-15 16:09:27 +00:00
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.gpl2Only;
maintainers = with maintainers; [ matthiasbeyer SuperSandro2000 ];
platforms = platforms.unix;
2017-12-15 16:09:27 +00:00
};
}