summary refs log tree commit diff
path: root/pkgs/applications/editors/kakoune
diff options
context:
space:
mode:
authorSebastian Zivota <sebastian.zivota@mailbox.org>2020-08-27 13:38:56 +0200
committerSebastian Zivota <sebastian.zivota@mailbox.org>2020-12-20 19:01:24 +0100
commit53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41 (patch)
tree55aeddf38c270b35c8796aa7c369d00498240095 /pkgs/applications/editors/kakoune
parent5f04cf274984c76439ba8ed5998593b2e5a5ef7a (diff)
downloadnixpkgs-53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41.tar
nixpkgs-53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41.tar.gz
nixpkgs-53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41.tar.bz2
nixpkgs-53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41.tar.lz
nixpkgs-53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41.tar.xz
nixpkgs-53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41.tar.zst
nixpkgs-53cc6bbce3eb32dd10bd688d704cdd48f6cfbb41.zip
kak-powerline: 2019-07-23 -> 2020-08-22
Moreover, the original repository is unmaintained. I changed it
to the current maintainer's fork.
Diffstat (limited to 'pkgs/applications/editors/kakoune')
-rw-r--r--pkgs/applications/editors/kakoune/plugins/kak-powerline.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/kakoune/plugins/kak-powerline.nix b/pkgs/applications/editors/kakoune/plugins/kak-powerline.nix
index d328e47f7e1..5d0d2596248 100644
--- a/pkgs/applications/editors/kakoune/plugins/kak-powerline.nix
+++ b/pkgs/applications/editors/kakoune/plugins/kak-powerline.nix
@@ -1,12 +1,12 @@
 { stdenv, git, fetchFromGitHub }:
 stdenv.mkDerivation {
   name = "kak-powerline";
-  version = "2019-07-23";
+  version = "2020-08-22";
   src = fetchFromGitHub {
-    owner = "andreyorst";
+    owner = "jdugan6240";
     repo = "powerline.kak";
-    rev = "82b01eb6c97c7380b7da253db1fd484a5de13ea4";
-    sha256 = "1480wp2jc7c84z1wqmpf09lzny6kbnbhiiym2ffaddxrd4ns9i6z";
+    rev = "d641b2cd8024f872bcda23f9256e7aff36da02ae";
+    sha256 = "65948f5ef3ab2f46f6d186ad752665c251d887631d439949decc2654a67958a4";
   };
 
   configurePhase = ''
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib;
   { description = "Kakoune modeline, but with passion";
-    homepage = "https://github.com/andreyorst/powerline.kak";
+    homepage = "https://github.com/jdugan6240/powerline.kak";
     license = licenses.mit;
     maintainers = with maintainers; [ nrdxp ];
     platform = platforms.all;