1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4 pname = "urxvt-autocomplete-all-the-things";
7 src = fetchFromGitHub {
9 repo = "autocomplete-ALL-the-things";
11 sha256 = "06xd59c6gd9rglwq4km93n2p078k7v4x300lqrg1f32vvnjvs7sr";
15 mkdir -p $out/lib/urxvt/perl
16 cp autocomplete-ALL-the-things $out/lib/urxvt/perl
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;