summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-07-03 14:03:55 +0100
committerGitHub <noreply@github.com>2021-07-03 14:03:55 +0100
commitba280803f88a4a1a474aa4cd5e1ae911dd7da6b0 (patch)
tree7b4af10cdc00658a6226778f41518a67758c48c6 /pkgs/applications/editors
parent543cde391aeb97457053bd4011022ed4620bdd71 (diff)
parent2578fb9c9f0fea270507e4546a4cbabfc6f130d7 (diff)
downloadnixpkgs-ba280803f88a4a1a474aa4cd5e1ae911dd7da6b0.tar
nixpkgs-ba280803f88a4a1a474aa4cd5e1ae911dd7da6b0.tar.gz
nixpkgs-ba280803f88a4a1a474aa4cd5e1ae911dd7da6b0.tar.bz2
nixpkgs-ba280803f88a4a1a474aa4cd5e1ae911dd7da6b0.tar.lz
nixpkgs-ba280803f88a4a1a474aa4cd5e1ae911dd7da6b0.tar.xz
nixpkgs-ba280803f88a4a1a474aa4cd5e1ae911dd7da6b0.tar.zst
nixpkgs-ba280803f88a4a1a474aa4cd5e1ae911dd7da6b0.zip
Merge pull request #128907 from lourkeur/update/spacevim
spacevim: 1.6.0 -> 1.7.0
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/spacevim/default.nix26
1 files changed, 19 insertions, 7 deletions
diff --git a/pkgs/applications/editors/spacevim/default.nix b/pkgs/applications/editors/spacevim/default.nix
index 661bec463a7..9f6f895efac 100644
--- a/pkgs/applications/editors/spacevim/default.nix
+++ b/pkgs/applications/editors/spacevim/default.nix
@@ -1,8 +1,19 @@
-{ ripgrep, git, fzf, makeWrapper, vim_configurable, vimPlugins, fetchFromGitHub
-, lib, stdenv, formats, runCommand, spacevim_config ? import ./init.nix }:
+{ ripgrep
+, git
+, fzf
+, makeWrapper
+, vim_configurable
+, vimPlugins
+, fetchFromGitHub
+, lib
+, stdenv
+, formats
+, runCommand
+, spacevim_config ? import ./init.nix
+}:
 
 let
-  format = formats.toml {};
+  format = formats.toml { };
   vim-customized = vim_configurable.customize {
     name = "vim";
     # Not clear at the moment how to import plugins such that
@@ -14,17 +25,18 @@ let
     mkdir -p $out
     cp ${format.generate "init.toml" spacevim_config} $out/init.toml
   '';
-in stdenv.mkDerivation rec {
+in
+stdenv.mkDerivation rec {
   pname = "spacevim";
-  version = "1.6.0";
+  version = "1.7.0";
   src = fetchFromGitHub {
     owner = "SpaceVim";
     repo = "SpaceVim";
     rev = "v${version}";
-    sha256 = "sha256-QQdtjEdbuzmf0Rw+u2ZltLihnJt8LqkfTrLDWLAnCLE=";
+    sha256 = "sha256-TmfPeaGkH1Wq2b5lB29PUYDVddJVN3mBuPAmu9EtiGY=";
   };
 
-  nativeBuildInputs = [ makeWrapper vim-customized];
+  nativeBuildInputs = [ makeWrapper vim-customized ];
   buildInputs = [ vim-customized ];
 
   buildPhase = ''