mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
8890e540d9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/smenu/versions. These checks were done: - built on NixOS - /nix/store/d1fp4j713cffpq0kkvi90aqh0bh6pd4d-smenu-0.9.13/bin/smenu passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 1 of 1 passed binary check by having the new version present in output. - found 0.9.13 with grep in /nix/store/d1fp4j713cffpq0kkvi90aqh0bh6pd4d-smenu-0.9.13 - directory tree listing: https://gist.github.com/26b5e2b7abfe62fcfd01cdbf1c27f655 - du listing: https://gist.github.com/ff013902ab9eca9065e3794daccf7700
30 lines
797 B
Nix
30 lines
797 B
Nix
{ stdenv, fetchFromGitHub, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.13";
|
|
name = "smenu-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "p-gen";
|
|
repo = "smenu";
|
|
rev = "v${version}";
|
|
sha256 = "0ixfl1dxkvmzb3xy6zs1x94hlf8y7zmd14gmb50rp7gb7ff1ivm5";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|
|
|