nixpkgs/pkgs/tools/misc/smenu/default.nix
R. RyanTM 64c13ec01c smenu: 0.9.13 -> 0.9.14 (#46189)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
smenu
2018-09-07 20:12:53 +02:00

30 lines
797 B
Nix

{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
version = "0.9.14";
name = "smenu-${version}";
src = fetchFromGitHub {
owner = "p-gen";
repo = "smenu";
rev = "v${version}";
sha256 = "1q2jvzia5ggkifkawm791p2nkmnpm6cmd5x3al7zf76gpdm6j87d";
};
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 = [ ];
platforms = platforms.linux;
};
}