aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/editors/kakoune/plugins/case.kak.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/kakoune/plugins/case.kak.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/kakoune/plugins/case.kak.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/kakoune/plugins/case.kak.nix b/nixpkgs/pkgs/applications/editors/kakoune/plugins/case.kak.nix
new file mode 100644
index 00000000000..20df2872628
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/kakoune/plugins/case.kak.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitLab }:
+
+stdenv.mkDerivation {
+ name = "case.kak";
+ version = "unstable-2020-04-06";
+
+ src = fetchFromGitLab {
+ owner = "FlyingWombat";
+ repo = "case.kak";
+ rev = "6f1511820aa3abfa118e0f856118adc8113e2185";
+ sha256 = "002njrlwgakqgp74wivbppr9qyn57dn4n5bxkr6k6nglk9qndwdp";
+ };
+
+ installPhase = ''
+ mkdir -p $out/share/kak/autoload/plugins
+ cp -r rc/case.kak $out/share/kak/autoload/plugins
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Ease navigation between opened buffers in Kakoune";
+ homepage = "https://gitlab.com/FlyingWombat/case.kak";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ eraserhd ];
+ platform = platforms.all;
+ };
+}
+