about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorNick Hu <me@nickhu.co.uk>2017-08-01 01:08:15 +0100
committerNick Hu <me@nickhu.co.uk>2017-08-07 15:30:13 +0100
commit5261c449d82732f15d9570cf11958f40f2b8a5f6 (patch)
tree1814502a793d0d2414f81c6ca6811aa3eac6b359 /pkgs/applications/misc
parent9b10fcce2f1e23aefcb129179f8308153ee5a4a0 (diff)
downloadnixlib-5261c449d82732f15d9570cf11958f40f2b8a5f6.tar
nixlib-5261c449d82732f15d9570cf11958f40f2b8a5f6.tar.gz
nixlib-5261c449d82732f15d9570cf11958f40f2b8a5f6.tar.bz2
nixlib-5261c449d82732f15d9570cf11958f40f2b8a5f6.tar.lz
nixlib-5261c449d82732f15d9570cf11958f40f2b8a5f6.tar.xz
nixlib-5261c449d82732f15d9570cf11958f40f2b8a5f6.tar.zst
nixlib-5261c449d82732f15d9570cf11958f40f2b8a5f6.zip
urxvt_autocomplete_all_the_things: init at 1.6.0
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/rxvt_unicode-plugins/urxvt-autocomplete-all-the-things/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-autocomplete-all-the-things/default.nix b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-autocomplete-all-the-things/default.nix
new file mode 100644
index 000000000000..f872e8008363
--- /dev/null
+++ b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-autocomplete-all-the-things/default.nix
@@ -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;
+  };
+}
+