mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Merge pull request #27823 from NickHu/aatt
urxvt_autocomplete_all_the_things: init at 1.6.0
This commit is contained in:
commit
c734648f4f
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "urxvt-autocomplete-all-the-things-${version}";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Vifon";
|
||||
repo = "autocomplete-ALL-the-things";
|
||||
rev = version;
|
||||
sha256 = "06xd59c6gd9rglwq4km93n2p078k7v4x300lqrg1f32vvnjvs7sr";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib/urxvt/perl
|
||||
cp autocomplete-ALL-the-things $out/lib/urxvt/perl
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "urxvt plugin allowing user to easily complete arbitrary text";
|
||||
homepage = "https://github.com/Vifon/autocomplete-ALL-the-things";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ nickhu ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
||||
|
@ -15887,6 +15887,7 @@ with pkgs;
|
||||
|
||||
rxvt_unicode-with-plugins = callPackage ../applications/misc/rxvt_unicode/wrapper.nix {
|
||||
plugins = [
|
||||
urxvt_autocomplete_all_the_things
|
||||
urxvt_perl
|
||||
urxvt_perls
|
||||
urxvt_tabbedex
|
||||
@ -15897,6 +15898,7 @@ with pkgs;
|
||||
};
|
||||
|
||||
# urxvt plugins
|
||||
urxvt_autocomplete_all_the_things = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-autocomplete-all-the-things { };
|
||||
urxvt_perl = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-perl { };
|
||||
urxvt_perls = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-perls { };
|
||||
urxvt_tabbedex = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-tabbedex { };
|
||||
|
Loading…
Reference in New Issue
Block a user