python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / smenu / default.nix
blob6992158e73c9555c17b5c1ae93d2fb06cd427bc5
1 { lib, stdenv, fetchFromGitHub, ncurses }:
3 stdenv.mkDerivation rec {
4   version = "1.1.0";
5   pname = "smenu";
7   src = fetchFromGitHub {
8     owner = "p-gen";
9     repo = "smenu";
10     rev = "v${version}";
11     sha256 = "sha256-qzlBgGPzQ3lnTBKVzQ8ZN3fwOcPgeT+GSUWXray4EYw=";
12   };
14   buildInputs = [ ncurses ];
16   meta = with 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.gpl2Only;
25     maintainers = with maintainers; [ matthiasbeyer SuperSandro2000 ];
26     platforms = platforms.unix;
27   };