ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
30 lines
792 B
Nix
30 lines
792 B
Nix
{ stdenv, fetchFromGitHub, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "v0.9.11";
|
|
name = "smenu-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "p-gen";
|
|
repo = "smenu";
|
|
rev = version;
|
|
sha256 = "1va5gsxniin02casgdrqxvpzccm0vwjiql60qrsvncrq6nm6bz0d";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|
|
|