diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-08-15 09:06:05 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-08-15 09:06:05 +0200 |
commit | be672e2dc6357c00f179a37c1db71b48dfa4fa24 (patch) | |
tree | 73c2129a0b036f812d609e9ea5737ffdc7b5435c /gnu/packages/text-editors.scm | |
parent | e380ef14cfc0126bb75e43fc237b2fbc05a7c7d2 (diff) | |
parent | 1a275962302fa18e54da790e89e2c826e6b60b53 (diff) |
Merge remote-tracking branch 'origin/master' into wip-haskell
Diffstat (limited to 'gnu/packages/text-editors.scm')
-rw-r--r-- | gnu/packages/text-editors.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 81475b4d0f..88ec19d898 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -122,7 +122,7 @@ based command language.") (define-public kakoune (package (name "kakoune") - (version "2020.01.16") + (version "2020.08.04") (source (origin (method url-fetch) @@ -130,7 +130,7 @@ based command language.") "releases/download/v" version "/" "kakoune-" version ".tar.bz2")) (sha256 - (base32 "1bhd990gywdwdhxc5dn83wwj418c5cw1ndqycf7k0a02kxlg3550")))) + (base32 "08gikjxyvcr415br1g1llzh5pnq737q55yinalb92cgq3yn9yih2")))) (build-system gnu-build-system) (arguments `(#:make-flags @@ -149,7 +149,7 @@ based command language.") "\";\n " line))) #t)) (delete 'configure) ; no configure script - ;; kakoune requires us to be in the src/ directory to build + ;; kakoune requires us to be in the src/ directory to build. (add-before 'build 'chdir (lambda _ (chdir "src") #t))))) (native-inputs |