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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
796 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ncurses }:
2017-12-15 17:09:27 +01:00
stdenv.mkDerivation rec {
version = "1.3.0";
pname = "smenu";
2017-12-15 17:09:27 +01:00
src = fetchFromGitHub {
owner = "p-gen";
repo = "smenu";
rev = "v${version}";
sha256 = "sha256-r2N+MmZI2KCuYarrFL2Xn5hu4FO3n5MqADRuTXMOtk0=";
2017-12-15 17:09:27 +01:00
};
buildInputs = [ ncurses ];
meta = with lib; {
homepage = "https://github.com/p-gen/smenu";
description = "Terminal selection utility";
2017-12-15 17:09:27 +01: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;
2023-07-23 19:30:22 +02:00
maintainers = with maintainers; [ matthiasbeyer ];
platforms = platforms.unix;
2017-12-15 17:09:27 +01:00
};
}