about summary refs log tree commit diff
path: root/pkgs/applications/editors/spacevim
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-14 04:32:11 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-14 06:34:21 +0100
commit2e4ff2aaa7f4d4081b53f74053f4e0ba6d50109f (patch)
tree7cea0429227a386cfc3a813e32fbeb0f1c8a02b2 /pkgs/applications/editors/spacevim
parent703d23bb904b8e58c4e6fa91e2cdd0a8dca2b007 (diff)
spacevim: remove unused inputs
Diffstat (limited to 'pkgs/applications/editors/spacevim')
-rw-r--r--pkgs/applications/editors/spacevim/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/spacevim/default.nix b/pkgs/applications/editors/spacevim/default.nix
index 2193d0ea5bb0a..c32130986b84a 100644
--- a/pkgs/applications/editors/spacevim/default.nix
+++ b/pkgs/applications/editors/spacevim/default.nix
@@ -1,6 +1,6 @@
-{ ripgrep, git, fzf, makeWrapper, vim_configurable, vimPlugins, fetchFromGitHub, writeTextDir
-, lib, stdenv, runCommandNoCC, remarshal, formats, spacevim_config ? import ./init.nix }:
-with stdenv;
+{ ripgrep, git, fzf, makeWrapper, vim_configurable, vimPlugins, fetchFromGitHub
+, lib, stdenv, formats, spacevim_config ? import ./init.nix }:
+
 let
   format = formats.toml {};
   vim-customized = vim_configurable.customize {
@@ -11,7 +11,7 @@ let
     vimrcConfig.packages.myVimPackage = with vimPlugins; { start = [ ]; };
   };
   spacevimdir = format.generate "init.toml" spacevim_config;
-in mkDerivation rec {
+in stdenv.mkDerivation rec {
   pname = "spacevim";
   version = "1.5.0";
   src = fetchFromGitHub {