python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / terminal-emulators / rxvt-unicode-plugins / urxvt-autocomplete-all-the-things / default.nix
blob6217bc0659a2214a34a115efe491db9ab7cd0f03
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "urxvt-autocomplete-all-the-things";
5   version = "1.6.0";
7   src = fetchFromGitHub {
8     owner = "Vifon";
9     repo = "autocomplete-ALL-the-things";
10     rev = version;
11     sha256 = "06xd59c6gd9rglwq4km93n2p078k7v4x300lqrg1f32vvnjvs7sr";
12   };
14   installPhase = ''
15     mkdir -p $out/lib/urxvt/perl
16     cp autocomplete-ALL-the-things $out/lib/urxvt/perl
17   '';
19   meta = with lib; {
20     description = "urxvt plugin allowing user to easily complete arbitrary text";
21     homepage = "https://github.com/Vifon/autocomplete-ALL-the-things";
22     license = licenses.gpl3;
23     maintainers = with maintainers; [ nickhu ];
24     platforms = with platforms; unix;
25   };