Commit graph

9 commits

Author SHA1 Message Date
Louis Bettens 2578fb9c9f spacevim: 1.6.0 -> 1.7.0 2021-07-01 19:15:25 +02:00
Anderson Torres f288a8ced0
Merge pull request #109983 from lourkeur/update/spacevim
spacevim: 1.5.0 -> 1.6.0
2021-02-20 17:41:54 -03:00
Louis Bettens 92bc0f7bc6 spacevim: best practices 2021-02-20 18:08:41 +01:00
Louis Bettens b76056aebc spacevim: fix #110407 2021-02-20 10:55:37 +01:00
Sandro Jäckel 2e4ff2aaa7
spacevim: remove unused inputs 2021-02-14 06:34:21 +01:00
Louis Bettens 5983883898 spacevim: 1.5.0 -> 1.6.0 2021-01-19 19:11:28 +01:00
Alyssa Ross 3893d6c6d7 gitAndTools: move everything to the top level
The comment at the top of git-and-tools/default.nix said:

    /* All git-relates tools live here, in a separate attribute set so that users
     * can get a fast overview over what's available.

but unfortunately that hasn't actually held up in practice.

Git-related packages have continued to be added to the top level, or
into gitAndTools, or sometimes both, basically at random, so having
gitAndTools is just confusing.  In fact, until I looked as part of
working on getting rid of gitAndTools, one program (ydiff) was
packaged twice independently, once in gitAndTools and once at the top
level (I fixed this in 98c3490196).

So I think it's for the best if we move away from gitAndTools, and
just put all the packages it previously contained at the top level.
I've implemented this here by just making gitAndTools an alias for the
top level -- this saves having loads of lines in aliases.nix.  This
means that people can keep referring to gitAndTools in their
configuration, but it won't be allowed to be used within Nixpkgs, and
it won't be presented to new users by e.g. nix search.

The only other change here that I'm aware of is that
appendToName "minimal" is not longer called on the default git
package, because doing that would have necessitated having a private
gitBase variable like before.  I think it makes more sense not to do
that anyway, and reserve the "minimal" suffix only for gitMinimal.
2021-01-14 21:27:48 +00:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Farid Zakaria 01f5b9aaba spacevim: init at v1.5.0
Spacevim is a fully loaded vim/neovim installation in the spirit
of https://www.spacemacs.org/

It's configured with a TOML file rather than vimscript and includes
a wide array of configuration found at https://spacevim.org/

Update pkgs/applications/editors/spacevim/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/applications/editors/spacevim/init.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/applications/editors/spacevim/default.nix

Co-authored-by: risson <18313093+rissson@users.noreply.github.com>
2020-12-03 20:09:36 -08:00