3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/smenu/default.nix

30 lines
797 B
Nix
Raw Normal View History

2017-12-15 16:09:27 +00:00
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
version = "0.9.14";
2017-12-15 16:09:27 +00:00
name = "smenu-${version}";
src = fetchFromGitHub {
owner = "p-gen";
repo = "smenu";
2018-05-28 13:59:57 +01:00
rev = "v${version}";
sha256 = "1q2jvzia5ggkifkawm791p2nkmnpm6cmd5x3al7zf76gpdm6j87d";
2017-12-15 16:09:27 +00:00
};
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 = [ ];
2017-12-15 16:09:27 +00:00
platforms = platforms.linux;
};
}