Merge pull request #32714 from matthiasbeyer/add-smenu

smenu: init at 0.9.10

authored by Jörg Thalheim and committed by GitHub 3ddca57d 8123bc79

+31
+29
pkgs/tools/misc/smenu/default.nix
··· 1 + { stdenv, fetchFromGitHub, ncurses }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "v0.9.10"; 5 + name = "smenu-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "p-gen"; 9 + repo = "smenu"; 10 + rev = version; 11 + sha256 = "1fh0s5zhx8ps760w0yxjv682lhahz1j63i0gdwvvr5vnvyx6c40d"; 12 + }; 13 + 14 + buildInputs = [ ncurses ]; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = https://github.com/p-gen/smenu; 18 + description = "Terminal selection utility"; 19 + longDescription = '' 20 + Terminal utility that allows you to use words coming from the standard 21 + input to create a nice selection window just below the cursor. Once done, 22 + your selection will be sent to standard output. 23 + ''; 24 + license = licenses.gpl2; 25 + maintainers = [ maintainers.matthiasbeyer ]; 26 + platforms = platforms.linux; 27 + }; 28 + } 29 +
+2
pkgs/top-level/all-packages.nix
··· 4503 4503 4504 4504 smbnetfs = callPackage ../tools/filesystems/smbnetfs {}; 4505 4505 4506 + smenu = callPackage ../tools/misc/smenu { }; 4507 + 4506 4508 smugline = python3Packages.smugline; 4507 4509 4508 4510 snabb = callPackage ../tools/networking/snabb { } ;