Minijackson
de6283bebf
gnvim: fix install phase with Rust with custom target
2021-03-06 22:02:30 +01:00
Ben Siraphob
e03c068af5
treewide: makeWrapper buildInputs to nativeBuildInputs
2021-02-19 20:09:16 +07:00
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed
2021-01-25 18:31:47 +01:00
Jonathan Ringer
9bb3fccb5b
treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
...
continuation of #109595
pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.
python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Ben Siraphob
badf51221d
treewide: stdenv.lib -> lib
2021-01-16 17:58:11 +07: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
Ben Siraphob
3ae5e6ce03
treewide: remove enableParallelBuilding = true if using cmake
2021-01-03 18:37:40 +07:00
Klemens Nanni
e0f258f596
neovim: Do $PATH lookup in neovim.desktop instead of hardcoding derivation
...
See db236e588d
"steam: Do $PATH lookup in steam.desktop [...]".
tl;dr: Otherwise widget/panel/desktop icons in DEs like KDE break.
Simply stop adding the full derivation path for neovim and stick with
how upstream uses no path at all.
While here, take care of gnvim.desktop as well by adjusting the sed(1)
expression (and simplifying it in one go); I do not use gnvim.desktop
but built it and confirmed the resulting files to contain no full paths
any longer.
2020-11-05 11:41:53 +01:00
Matthieu Coudron
86d7ed8d10
neovim: take into account vi(m)Alias
...
restore feature broken by compatibility layer
2020-11-03 09:31:56 +01:00
Matthieu Coudron
42cc40ddc8
neovim: fix nodejs and ruby generation
...
These were not translated correctly in the new wrapper.
2020-11-02 23:27:49 +01:00
Matthieu Coudron
295948f40f
neovim: dont wrap when is null
...
restore previous behavior
2020-11-01 18:55:57 +01:00
Matthieu Coudron
95702fe6d2
neovim: revert change to extraMakeWrapperArgs
...
wrapNeovim incited users to use a list instead of a string. Revert that:
the change is not super useful while breaking home-manager.
2020-10-31 14:32:02 +01:00
Matthieu Coudron
2eb1610725
neovimUtils: neovim utilities to handle more usecases
...
Current nixpkgs always wraps neovim with the "-u" which has sideeffects as explained in https://github.com/NixOS/nixpkgs/issues/55376 :
1. vim won't set the variable $MYVIMRC as explained #34215
2. vim skips loading folder-specific .vimrc / .nvimrc
I wanted to provide a way for users to better control what flags are used to wrap neovim. This is achived by introducing wrapNeovimUnstable et neovimUtils, utilities to help with that. We provide a compatibility layer so that wrapNeovim still works and to let us experiment with wrapNeovimUnstable to better control neovim configuration, plugin dependencies, haskell environment etc so that it becomes easier to generate per-project neovim config.
With this commit, it's possible for instance for home-manager to wrap neovim without the `-u` and just write the config in the
expected $XDG_CONFIG_HOME/nvim/init.vim .
Expect wrapNeovimUnstable interface to evolve in the upcoming months.
2020-10-29 09:50:26 +01:00
Matthieu Coudron
4c4c4874c4
neovim: add config to passthru ( #101100 )
...
first will register the config under the name init.vim which is more
appropriate for neovim.
Pass the generated config to passthru so that one can easily pass the
current config to a
raw/unwrapped neovim (helps with development).
For instance, home-manager can reference the config in $XDG_CONFIG_HOME/nvim/init.vim
without the need to wrap nvim with its config.
2020-10-20 12:26:39 +02:00
Viacheslav Lotsmanov
897d92c854
neovim-qt: 0.2.15 -> 0.2.16.1
2020-10-03 19:12:57 +02:00
Kevin Cox
599089ed1d
neovim-qt: Add homepage
2020-08-31 07:19:40 -04:00
Sirio Balmelli
0f1434cb2a
neovim: fix build on Darwin
...
libluv path passed to -DLIBLUV_LIBRARY broken by change in libluv, eg:
libluv.dylib -> libluv.1.30.0.dylib
Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2020-08-14 23:29:31 +02:00
Konstantin Alekseev
f9a5d8539d
neovim: fix node neovim binary link
2020-08-12 13:59:02 -07:00
Maximilian Bosch
71ca3bf31d
Merge pull request #94705 from yoctocell/neovim-0.4.4
...
neovim: 0.4.3 -> 0.4.4
2020-08-05 22:20:03 +02:00
yoctocell
7f137849e8
neovim: 0.4.3 -> 0.4.4
2020-08-05 10:22:53 +02:00
Doron Behar
c63b5c4c36
wrapNeovim: fix darwin build
2020-08-04 09:14:09 +03:00
Doron Behar
85f6da6eed
wrapNeovim: Rewrite
...
Cleanups:
- Removed unneeded neovim.meta.description reset.
- Remove unnecessary -x checks in `postBuild`.
- Use a ${placeholder "out"} if needed.
Changes:
- Switch to symlinkJoin, so e.g manpages link to the environment (#87929 ).
- Use nvim-node from $out/bin/ just like all other providers.
- Compute all arguments to makeWrapper in pure Nix "before" `postBuild`.
- Prevent double wrapping in case `configure != {}` and rplugin.vim
needs to be generated.
Co-authored-by: Silvan Mosberger <contact@infinisil.com>
2020-07-31 20:39:12 +03:00
Minijackson
1e02256cac
gnvim: 0.1.5 -> 0.1.6
2020-07-08 23:03:42 +02:00
Frederik Rietdijk
d0532e79ae
Merge staging-next into staging
2020-06-07 09:25:46 +02:00
Matthieu Coudron
b4c7a0b762
neovim-unwrapped: improve testing ability
...
Make functionaltests more complete.
2020-06-06 20:21:17 +02:00
Maximilian Bosch
068beb2c07
gnvim: fix build
...
When running the default builder for Rust, the artifacts would be stored
in `target/<arch>/<profile>`, however the `install`-target expects the
default structure (`target/<profile>`) of `cargo`-builds.
When using the Makefile for building as well, the expected structure is
created instead.
2020-05-13 22:19:47 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
Michael Fellinger
f92600b406
update versions in Gemfile.lock
2020-04-06 15:02:13 +02:00
Ersin Akinci
588ca6e310
neovim: use TMPDIR as home during initilizaiton
2020-03-15 12:55:06 +00:00
Benjamin Hipple
fa353a0f0a
gnvim: upgrade cargo fetcher and cargoSha256 ( #82015 )
2020-03-08 19:19:41 -04:00
Benjamin Hipple
eb11feaa0b
treewide: change fetchCargoTarball default to opt-out
...
Changes the default fetcher in the Rust Platform to be the newer
`fetchCargoTarball`, and changes every application using the current default to
instead opt out.
This commit does not change any hashes or cause any rebuilds. Once integrated,
we will start deleting the opt-outs and recomputing hashes.
See #79975 for details.
2020-02-13 22:41:37 -08:00
Doron Behar
d4169851a5
neovim-remote: add now needed setuptools as input
2020-02-13 13:20:29 -08:00
Peter Hoeg
6ac6bf2927
Merge pull request #73854 from Dema/neovim-qt-version-bump
...
neovim-qt: 0.2.12 -> 0.2.15
2020-01-13 09:07:58 +08:00
Maximilian Bosch
5f6df74f66
Merge pull request #77166 from r-ryantm/auto-update/neovim-remote
...
neovim-remote: 2.2.3 -> 2.4.0
2020-01-07 23:39:17 +01:00
Wael M. Nasreddine
7909787a7d
Revert "vimPlugins: turn filetype and syntax before sourcing the plugins ( #66536 )"
...
This reverts commit a3bf0c2e40
.
2020-01-07 13:13:41 -08:00
R. RyanTM
42a0d7f315
neovim-remote: 2.2.3 -> 2.4.0
2020-01-06 19:10:52 -08:00
Maximilian Bosch
9842c4b107
treewide: update which packages I'm currently maintaining
...
Idea shamelessly stolen from 4e60b0efae
.
I realized that I don't really know anymore where I'm listed as maintainer and what
I'm actually (co)-maintaining which means that I can't proactively take
care of packages I officially maintain.
As I don't have the time, energy and motivation to take care of stuff I
was interested in 1 or 2 years ago (or packaged for someone else in the
past), I decided that I make this explicit by removing myself from several
packages and adding myself in some other stuff I'm now interested in.
I've seen it several times now that people remove themselves from a
package without removing the package if it's unmaintained after that
which is why I figured that it's fine in my case as the affected pkgs
are rather low-prio and were pretty easy to maintain.
2019-12-26 15:27:47 +01:00
Manuel Mendez
b840977407
neovim: Drop jemalloc
...
See https://github.com/neovim/neovim/pull/9526 .
2019-12-25 23:49:21 +01:00
R. RyanTM
8413dbee82
neovim-remote: 2.2.2 -> 2.2.3
2019-12-01 18:42:33 +01:00
Matthias Beyer
44465d3480
neovim: 0.4.2 -> 0.4.3
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2019-11-23 19:24:49 +01:00
Dmitry Olyenyov
e40adc8788
neovim-qt: 0.2.12 -> 0.2.15
2019-11-21 11:45:00 +03:00
R. RyanTM
1550417b51
neovim-remote: 2.2.1 -> 2.2.2
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-remote/versions
2019-10-22 19:00:29 -07:00
Shreyansh Khajanchi
7885eeaffd
neovim-qt: fix icons
2019-10-17 14:11:41 +09:00
Shreyansh Khajanchi
3388941c59
neovim: fix icon not displaying
2019-10-17 11:34:40 +09:00
Matthieu Coudron
81487f73eb
Merge pull request #70215 from LnL7/darwin-lua-libluv
...
neovim: fix darwin build
2019-10-04 13:05:32 +09:00
Minijackson
4e7364abab
gnvim: init at 0.1.5
2019-10-02 14:08:40 +09:00
Daiderd Jordan
c819648a68
neovim: link against libluv on darwin
2019-10-02 00:30:42 +02:00
Matthieu Coudron
60f3c94965
Merge pull request #68882 from rvolosatovs/update/neovim
...
Neovim: 0.3.8 -> 0.4.2
2019-09-23 22:15:01 +09:00
Doron Behar
c5f3851909
neovim-remote: 2.2.0 -> 2.2.1
2019-09-21 01:23:01 +09:00
Roman Volosatovs
824869c3fc
neovim: 0.3.8 -> 0.4.2
2019-09-16 22:00:43 +02:00
Craig Hall
6bdaca51e8
neovim: sort lists alphabetically
2019-09-16 16:10:13 +02:00
Vladimír Čunát
2e6bf42a22
Merge branch 'master' into staging-next
...
There ver very many conflicts, basically all due to
name -> pname+version. Fortunately, almost everything was auto-resolved
by kdiff3, and for now I just fixed up a couple evaluation problems,
as verified by the tarball job. There might be some fallback to these
conflicts, but I believe it should be minimal.
Hydra nixpkgs: ?compare=1538299
2019-08-24 08:55:37 +02:00
Doron Behar
a111f95401
neovim-remote: 2.1.9 -> 2.2.0
2019-08-20 17:15:08 +09:00
volth
46420bbaa3
treewide: name -> pname (easy cases) ( #66585 )
...
treewide replacement of
stdenv.mkDerivation rec {
name = "*-${version}";
version = "*";
to pname
2019-08-15 13:41:18 +01:00
Wael Nasreddine
a3bf0c2e40
vimPlugins: turn filetype and syntax before sourcing the plugins ( #66536 )
...
Vim Terraform expects the `filetypedetect` group to exist. However, since we were enabling the filetype and the syntax *after* loading the plugins, it was exiting with an error preventing us from generating the remote plugins manifest with the plugin enabled. See #65894 for context.
2019-08-13 12:25:06 -07:00
Peter Hoeg
0b9b95d5b1
neovim-qt: 0.2.11 -> 0.2.12
2019-08-05 14:42:37 +09:00
R. RyanTM
f1f66e2296
neovim-remote: 2.1.7 -> 2.1.9
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-remote/versions
2019-07-19 15:54:05 -07:00
Roman Volosatovs
c7a4a0c852
neovim: 0.3.7 -> 0.3.8
2019-07-07 10:22:59 +02:00
Rok Garbas
65781e204d
Remove me (garbas) as maintainer since I don't have much time to maintain anything
2019-07-03 11:27:39 +02:00
R. RyanTM
f11a3e6685
neovim-unwrapped: 0.3.5 -> 0.3.7
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-unwrapped/versions
2019-06-02 20:35:36 +09:00
Matthieu Coudron
66a1e97719
neovim-unwrapped: don't fix cmake
...
Pollutes git status
2019-05-31 17:07:09 +09:00
Jonas Holst Damtoft
dbb27af6c6
neovim: Allow passing extra makeWrapperArgs
2019-05-29 18:15:15 +09:00
Gabriel Ebner
b8a6775227
neovim: use lua on aarch64
2019-05-16 12:37:15 +02:00
R. RyanTM
ac843c34bb
neovim-unwrapped: 0.3.4 -> 0.3.5
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-unwrapped/versions
2019-05-01 06:38:34 -07:00
R. RyanTM
632ff800d1
neovim-remote: 2.1.5 -> 2.1.7
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-remote/versions
2019-04-16 18:47:21 +02:00
R. RyanTM
8c9566ec84
neovim-remote: 2.1.4 -> 2.1.5 ( #57330 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-remote/versions
2019-04-01 23:02:39 +02:00
Artemis Tosini
77cf0b05bf
neovim: Update ruby provider to 0.8.0 ( #56316 )
2019-02-25 16:34:35 +01:00
Jörg Thalheim
25bab3958d
Merge pull request #54717 from Mic92/nvr
...
neovim-remote: use buildPythonApplication
2019-02-10 09:02:52 +00:00
Matthieu Coudron
aaeaa6d1c6
Add checkPhase for neovim (disabled by default) ( #55266 )
...
* neovim-unwrapped: now use lua environments
* mpv: use lua environments
* luaPackages.inspect: init at 3.1.1-0
* luaPackages.lgi: mark as a lua module
* luaPackages.vicious: mark as a lua module
2019-02-05 15:00:19 +00:00
Jörg Thalheim
e2d44a6ec7
neovim-remote: use buildPythonApplication
2019-01-27 18:35:44 +00:00
Silvan Mosberger
f3e03ff438
Merge pull request #54591 from symphorien/nvim-refs
...
neovim: remove spurious references to compilation flags
2019-01-26 00:03:57 +01:00
Symphorien Gibol
b9a9f28dad
neovim: remove spurious references to compilation flags
2019-01-25 22:20:12 +01:00
Timo Kaufmann
ab22e8cc9c
neovim: generate remote plugin manifest
...
This makes sure the user doesn't have to call `UpdateRemotePlugins`
manually for plugins installed through nix. A minor patch to neovim is
necessary, but it should be harmless. See
https://github.com/neovim/neovim/issues/9413 for a discussion about
the patch.
2019-01-18 21:18:32 +01:00
Timo Kaufmann
51c4768f67
neovim: fix indentation
2019-01-18 21:15:17 +01:00
Jörg Thalheim
478188d41c
Merge pull request #54092 from r-ryantm/auto-update/python3.7-neovim-remote
...
neovim-remote: 2.1.3 -> 2.1.4
2019-01-17 09:47:52 +00:00
R. RyanTM
db44656467
neovim-unwrapped: 0.3.3 -> 0.3.4
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-unwrapped/versions
2019-01-17 00:13:16 -08:00
R. RyanTM
db5ee28843
neovim-remote: 2.1.3 -> 2.1.4
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-neovim-remote/versions
2019-01-16 11:38:19 -08:00
Timo Kaufmann
0d028c3bee
neovim-qt: add desktop file to wrapper ( #53777 )
...
My recent change in #53447 caused neovim-qt to no longer be recognized
as a desktop application.
2019-01-10 22:18:04 +01:00
Peter Hoeg
15c8362c14
Merge pull request #53447 from timokau/neovim-qt-wrapper
...
neovim-qt: wrap in separate derivation
2019-01-08 20:24:03 +08:00
Roman Volosatovs
b4ed953bb2
neovim: 0.3.2 -> 0.3.3
2019-01-06 21:49:31 +01:00
Timo Kaufmann
ee9bc405b9
neovim-qt: wrap in separate derivation
...
This makes it possible to swap out the (wrapped) neovim without
recompiling neovim-qt. In particular, the user can use `neovim.override`
to configure their neovim and then use that same configuration for
neovim-qt, without having to give up binary caching.
2019-01-06 10:56:27 +01:00
R. RyanTM
1c78a0313d
neovim-remote: 2.1.1 -> 2.1.3 ( #52798 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-neovim-remote/versions
2019-01-01 19:35:21 +01:00
Milan Svoboda
b58ccb43c9
neovim: 0.3.1 -> 0.3.2 ( #53130 )
...
* update neovim
* neovim: -> 0.3.2
2019-01-01 19:03:47 +01:00
Timo Kaufmann
d9d9ac989a
neovim: mark as broken for aarch64
...
Has always been broken.
2018-12-31 11:12:51 +01:00
Maximilian Bosch
5e16e65dcf
Merge pull request #52175 from r-ryantm/auto-update/neovim-qt
...
neovim-qt: 0.2.10 -> 0.2.11
2018-12-18 23:54:57 +01:00
R. RyanTM
4c3e1114d8
neovim-qt: 0.2.10 -> 0.2.11
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-qt/versions
2018-12-14 23:01:19 -08:00
Alexey Shmalko
bc51418f1a
neovim-pygui: remove
2018-12-10 23:19:45 +02:00
Alexey Shmalko
211938532c
pythonPackages.neovim-remote: 2.1.0 -> 2.1.1
2018-12-09 01:25:54 +02:00
Alexey Shmalko
4898e09215
pythonPackages.neovim-0.3.0 -> pythonPackages.pynvim-0.3.1
2018-12-09 01:15:41 +02:00
Wael M. Nasreddine
da4a004193
neovim wrapper: add withNodeJs to build wrapper with nodejs support
2018-11-14 19:54:47 -08:00
R. RyanTM
93a2ad09f5
neovim-remote: 2.0.5 -> 2.1.0
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-neovim-remote/versions
2018-10-24 02:39:03 -07:00
R. RyanTM
76051c1ef6
neovim-qt: 0.2.9 -> 0.2.10 ( #46234 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
neovim-qt
2018-09-15 17:19:19 +02:00
John Ericson
51907d257c
stdenv, neovim: Use lib.warn
for deprecation warnings
2018-09-05 11:40:29 -04:00
Jörg Thalheim
663951eaa3
Merge pull request #43388 from symphorien/neovim-python-env
...
Fix neovim PYTHONPATH handling
2018-08-30 08:51:21 +01:00
R. RyanTM
9dfb851c6f
neovim-qt: 0.2.8 -> 0.2.9
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neovim-qt/versions .
2018-08-24 00:21:53 -07:00
Andrew Childs
3f0fa8fd77
neovim-qt: fix msgpack dependency, disable failing test, Darwin
2018-08-20 01:07:57 +09:00
Orivej Desh
65663f883c
msgpack: rename from libmsgpack
...
The project does not use the name "libmsgpack". It variously uses "msgpack" and
"msgpack-c", and "msgpackc" for the name of the library.
2018-08-18 23:19:54 +00:00
Symphorien Gibol
dddaa94ac2
neovim wrapper: also make <vimplugin>.pythonDepedencies a function
...
A function of the same signature as the argument of python.withPackages
2018-07-27 00:27:44 +02:00
Symphorien Gibol
c1752666df
neovim wrapper: use python.withPackages instead of python.buildEnv
...
They are both as powerful, but buildEnv is treacherous: if you pass a
package which depends on another python (for example the one of unstable
when you are on stable) it will be *silently* dropped, leading to hair
pulling.
Use case:
override neovim from unstable, but still keep stable's pythonPackages.
2018-07-24 15:05:50 +02:00
Symphorien Gibol
10436a707a
neovim wrapper: do not unset PYTHONPATH
...
This solves the following bug:
opening neovim in nix-shell -p pythonPackages.numpy does not enable to
run successfully
:!python -c "import numpy"
because the PYTHONPATH is wiped by the neovim wrapper.
This wiping is necessary for the python providers, though, otherwise a
python2 nix-shell will make the python3 provider read python2 files.
We wrap the providers only, instead of neovim as whole.
2018-07-24 15:02:48 +02:00
Wael M. Nasreddine
5c7c2be709
neovim: fix the xsel path in the clipboard runtime provider
2018-07-22 21:32:16 -07:00
Frederik Rietdijk
e3d4ef9c7e
Merge pull request #43925 from r-ryantm/auto-update/neovim-unwrapped
...
neovim-unwrapped: 0.3.0 -> 0.3.1
2018-07-22 08:37:44 +02:00
R. RyanTM
4c1eb7fbe6
neovim-unwrapped: 0.3.0 -> 0.3.1
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/neovim-unwrapped/versions .
2018-07-21 14:18:00 -07:00
volth
52f53c69ce
pkgs/*: remove unreferenced function arguments
2018-07-21 02:48:04 +00:00
Frederik Rietdijk
ced21f5e1a
pythonPackages: remove name
attribute`
...
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.
While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00
Jörg Thalheim
b494ef4db6
neovim: add missing libiconv
2018-06-12 10:16:55 +01:00
Cole Mickens
47348e20d1
neovim: 0.2.2 -> 0.3.0
2018-06-11 17:43:18 -07:00
Jörg Thalheim
b02b464852
neovim-remote: 1.8.6 -> 2.0.5
2018-05-29 22:30:18 +01:00
Ryan Mulligan
af9d10a91b
treewide: fix derivation names
2018-05-28 05:59:57 -07:00
Matthew Bauer
02297beade
treewide: add version to packages
...
Lots of packages are missing versions in their name. This adds them
where appropriate. These were found with this command:
$ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$'
See issue #41007 .
2018-05-25 15:48:05 -05:00
adisbladis
3290800d67
libvterm-neovim: init at 2017-11-05
2018-05-16 14:02:48 +08:00
Matthieu Coudron
ba4b1d2bee
neovim: fix gperf error on dev-version
...
[ 50%] Generating auto/api/private/dispatch_wrappers.c.generated.h, ../../include/api/private/dispatch_wrappers.h.generated.h
[ 50%] Generating auto/funcs.generated.h, ../../funcs_data.mpack
/nix/store/xn5gv3lpfy91yvfy9b0i7klfcxh9xskz-bash-4.4-p19/bin/bash: ../../../.deps/usr/bin/gperf: No such file or directory
2018-05-13 07:21:34 +09:00
Issam Maghni
cb9f4f1ae3
pythonPackages.neovim: 0.2.4 -> 0.2.6, gem-neovim & gem-msgpack
2018-05-02 08:48:21 -04:00
Gabriel Ebner
ba58b425f1
neovim: fix bundlerEnv
2018-02-22 21:18:04 +01:00
Matthieu Coudron
bec047eca3
neovim: remove confusing neovim parameter
...
The neovim package refers to itself, hopefully it is shadowed by a
function parameter but it is confusing, let's remove it.
2018-01-25 16:38:22 +09:00
José Luis Lafuente
2c95ce9081
neovim: 0.2.1 -> 0.2.2
2018-01-21 20:50:08 +01:00
Tobias Geerinckx-Rice
0f84673f3d
Remove nckx as a maintainer for all packages
...
Goodbye, and thanks for all the Nix...
2018-01-16 23:00:49 +01:00
Matthieu Coudron
266a65eaa9
neovim: don't install desktop file on darwin
...
nvim.desktop doesn't exist on darwin so forcefully reading it fails.
2018-01-16 17:41:31 +09:00
Matthieu Coudron
ab06f3e99c
neovim: init wrapper
...
Adding a python package to the neovim environment should not trigger a recompilation.
This adds a wrapper to prevent that.
2018-01-15 23:24:20 +01:00
Orivej Desh
f4afbf6e77
neovim: fix quoting for makeWrapper
...
Fixes #33625 after #31497
2018-01-09 01:47:16 +00:00
Patrick Lambein
15c4b78c36
neovim: add viAlias argument
...
The argument viAlias mimicks the behavior of vimAlias: when set to true, it
creates a symbolic link from $out/bin/vi to $out/bin/nvim.
2017-12-16 15:38:36 +01:00
Rok Garbas
fb5f41bb00
neovim: ruby and python isolation
...
the code has been taken from #31604 and fixed so that :CheckHealth for
ruby provider is also green (ruby and gem are required to be in PATH).
2017-11-20 13:10:13 +01:00
Rok Garbas
7dce6c88d2
neovim: 0.2.0 -> 0.2.1
...
* neovimLibvterm: 5a748f97 -> 4ca7ebf7
* neovim ruby: 0.5.0 -> 0.5.1
* pythonPackages.neovim: 0.1.13 -> 0.2.0
* libmpack: 1.0.3-rev80bd55ea6 -> 1.0.5
* luaPackages.mpack: switched to new source location, 1.0.7_ef025224a7
* only one set of lua packages, switched to luajit
2017-11-15 01:21:46 +01:00
Peter Hoeg
608fe16482
neovim-qt: 0.2.7 -> 0.2.8
...
We now also run some of the tests which is better than nothing.
2017-09-09 09:32:13 +08:00
Matthieu Coudron
9889c1c661
neovim: fix missing dependancy luajit lpeg
...
luajit libraries are not the same as vanilla lua ones, hence when luajit
is enabled, the build fails.
Fixes https://github.com/NixOS/nixpkgs/issues/14442
2017-09-03 15:29:13 +02:00
Benno Fünfstück
bf6ebda141
Merge pull request #25772 from jbaum98/neovim-ruby
...
neovim: neovim-ruby 0.3.1 -> 0.4.0
2017-07-15 19:03:46 +02:00
Benno Fünfstück
549df83e8e
neovim-ruby: 0.4.0 -> 0.5.0
2017-07-15 18:56:51 +02:00
Thomas Tuegel
c816bbc8a8
qt5: remove makeQtWrapper
2017-06-18 08:44:42 -05:00
Jake Waksbaum
171e3f85ce
neovim: neovim-ruby 0.3.1 -> 0.4.0
2017-05-14 00:41:54 -04:00
Rok Garbas
ec7f620831
neovim-remote: 1.4.0 -> 1.6.0
2017-05-02 16:57:40 +02:00
Rok Garbas
33960efb13
neovim-qt: 0.2.6 -> 0.2.7
2017-05-02 16:57:40 +02:00
Rok Garbas
fe3c124064
neovim: 0.1.7 -> 0.2.0
2017-05-02 16:57:40 +02:00
Tuomas Tynkkynen
5658324d82
neovim: Fix eval error
...
Not sure at all if this is the right thing to do. cc @edanaher
2017-03-18 20:01:15 +02:00
Michael Raskin
846b6d250a
Merge pull request #23256 from edanaher/ensime
...
Ensime
2017-03-18 18:24:19 +01:00
Peter Hoeg
26625c928b
neovim-qt: run tests
2017-03-08 20:31:29 +08:00
Peter Hoeg
a9e990b818
neovim: 0.2.5 -> 0.2.6
2017-03-08 20:07:40 +08:00
Peter Hoeg
2c99575c66
neovim-qt: 0.2.4 -> 0.2.5
2017-03-08 17:35:37 +08:00
Evan Danaher
dcab427908
vim-plugins: Add infrastructure for python[3]Dependencies.
...
This allows vim plugins to specify python dependencies required at
runtime, and they will be added to the python environment.
2017-02-27 12:36:03 -05:00
Peter Hoeg
5e0dbfe931
Merge branch 'master' into f/nvim-qt
2017-02-11 11:46:37 +08:00
Peter Hoeg
f0d0e21a5e
neovim-qt: clean up
2017-02-11 02:39:15 +08:00
Evan Danaher
ee4f732633
neovim-remote: add meta section.
...
Also add myself to maintainers; it's time to admit I'm not leaving
anytime soon ;)
2017-02-10 11:43:42 -05:00
Evan Danaher
b2fb95a6cf
neovim-remote: move from python-packages to /neovim/neovim-remote.
2017-02-03 16:58:22 -05:00
Anmol Sethi
3799f9322a
neovim: removed unncessary man configuration
...
Latest neovim uses a rewritten man plugin that does not need
these changes.
2017-01-06 18:31:11 +01:00
Evan Danaher
d4b960550b
neovim: Inherit meta into neovim-configured
...
When adding neovim's configure option to config.nix, builds fail with
error: attribute ‘platforms’ missing, at
/nix/store/*/nixos/pkgs/applications/editors/neovim/qt.nix:41:28
Inheriting meta into neovim-configured fixes this, and seems reasonable.
2017-01-04 18:33:26 +01:00
Michael Fellinger
bb80d77d84
neovim: green :CheckHealth
2016-12-19 23:05:31 +01:00
Igor Sharonov
b5286f3747
neovim-qt: 0.2.3 -> 0.2.4
2016-12-03 16:16:45 +03:00
Rok Garbas
880d616ec0
neovim: 0.1.6 -> 0.1.7
2016-11-28 04:06:19 +01:00
Rok Garbas
c27c1b2696
neovim-qt: 0.2.1 -> 0.2.3
2016-10-30 23:06:59 +01:00
Rok Garbas
2002469c7b
neovim: 0.1.5 -> 0.1.6
...
also neovim-libvterm update: 2015-11-06 -> 2016-10-07
2016-10-29 22:35:50 +02:00
obadz
3de6e5be50
Merge branch 'master' into staging
...
Conflicts:
pkgs/applications/misc/navit/default.nix
pkgs/applications/networking/mailreaders/alpine/default.nix
pkgs/applications/networking/mailreaders/realpine/default.nix
pkgs/development/compilers/ghc/head.nix
pkgs/development/libraries/openssl/default.nix
pkgs/games/liquidwar/default.nix
pkgs/games/spring/springlobby.nix
pkgs/os-specific/linux/kernel/perf.nix
pkgs/servers/sip/freeswitch/default.nix
pkgs/tools/archivers/cromfs/default.nix
pkgs/tools/graphics/plotutils/default.nix
2016-08-27 23:54:54 +01:00
Rok Garbas
c3ef13a828
neovim: 0.1.4 -> 0.1.5 (and related dependencies)
...
* neovimLibvterm: a9c7c6f -> 487f21db
* libmpack: 071d944c -> 80bd55e
2016-08-22 12:15:41 +02:00
Robin Gloster
b7787d932e
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-08-12 09:46:53 +00:00
Aneesh Agrawal
5e3eb476f5
neovim: remove unused glib dependency ( #17499 )
...
As far as I can tell, neovim has never required glib to build.
The neovim libtermkey does include a demo-glib.c example, but that is
optional.
2016-08-05 09:33:05 +02:00
Michael Raskin
ef46388c48
neovim-qt: 0pre -> 0.2.1, use libmsgpack 1.4
2016-08-03 17:58:22 +02:00
Robin Gloster
5185bc1773
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-07-15 14:41:01 +00:00
Matthew Bauer
e0884e85cf
neovim: fix build on darwin, cleanup lua paths
...
fixes #16152
The cmake script had trouble finding the lua paths, this sets them
using “luaPackages.getLuaPath” and “luaPackages.getLuaCPath”.
2016-06-12 21:02:09 -05:00
Robin Gloster
8031cba2ab
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-06-10 09:27:04 +00:00
Rok Garbas
28ddc8c043
neovim: pkgs argument was unused
2016-06-06 13:00:44 +02:00
Rok Garbas
f878018ece
neovim: 0.1.3 -> 0.1.4
...
* removing luaMessagePack (only used by neovim)
* using libmpack (updated to latest master since they fixed a lot of packaging
issues)
* package libmpack lua bidnings
* neovim expression now excepts luaPackages as an input and not individual
lua packages (to avoid depending on different lua version)
2016-06-04 17:58:01 +02:00
Tobias Pflug
71c9c5dffe
neovim: fix broken build ( #15876 )
2016-05-31 21:38:43 +02:00
Robin Gloster
2d382f3d98
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-05-30 19:39:34 +00:00
Rok Garbas
e9c86755dd
neovim: make clipboard work ootb
2016-05-25 15:02:41 +02:00
Nick Novitski
15c6fa023f
neovim: fix Man command
2016-05-21 21:51:40 +02:00
Franz Pletz
f8d481754c
Merge remote-tracking branch 'origin/master' into hardened-stdenv
2016-05-18 17:10:02 +02:00
Tobias Geerinckx-Rice
237168d452
neovim: unmaintain
...
*reinstalls emacs*
2016-05-06 19:17:07 +02:00
Robin Gloster
c92bca56f8
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-05-02 22:58:02 +00:00
Aneesh Agrawal
2e80f19f39
neovim: 0.1.2 -> 0.1.3
2016-04-19 15:20:34 -04:00
Robin Gloster
a36f51f773
neovim: disable fortify hardening
2016-04-19 02:05:50 +00:00
Moritz Ulrich
6cd2eccdc7
neovim: Fix build by via order of buildInputs
...
See #14442 for details and further real fixes.
2016-04-06 21:08:23 +02:00
Rok Garbas
d58ae071fd
neovim: 0.1.1 -> 0.1.2
...
also updated neovim's forked libvterm to latest revision
2016-02-16 01:34:57 +01:00
Tobias Geerinckx-Rice
ba0dcb95ad
neovim: fix -configured evaluation
2016-01-26 06:16:45 +01:00
Tobias Geerinckx-Rice
9fb8020e4e
Add version attribute where maintainers |= nckx
...
This will probably be mandatory soon, and is a step in the right
direction. Removes the deprecated meta.version, and move some meta
sections to the end of the file where I should have put them in
the first place.
2016-01-25 17:35:21 +01:00
Rok Garbas
9d1bbf7a02
neovim: update 0.1.0 -> 0.1.1
2015-12-05 23:08:22 +01:00
Rok Garbas
0b516052e8
neovim: collect gui's in one place
2015-11-07 19:53:41 +01:00
Vladimír Čunát
261791992c
neovim: fix wrong ad30764d68
...
I'm sorry. I had tested that `neovim.src` still built ;-)
Thanks to @codedmart.
2015-11-02 20:52:08 +01:00
Vladimír Čunát
ad30764d68
neovim: fetch by version tag instead of commit hash
...
/cc #10787 .
2015-11-02 12:57:48 +01:00
Scott Milliken
f89ddefd97
neovim: update to 0.1.0., closes #10787
2015-11-02 12:50:54 +01:00
Vladimír Čunát
abbe5f27a9
neovim: make pynvim runnable even if not in $PATH
2015-10-30 09:21:08 +01:00
Rok Garbas
b7ab0a47de
neovim: adding python gui option
...
- pythonPackages.neovim_gui init
2015-10-29 19:58:08 +01:00
Jude Taylor
8f663ee0fb
neovim: don't link with libutil on Darwin
2015-10-22 13:47:03 -07:00
Joe Hermaszewski
d5a364cf8f
neovim: 2015-10-08 -> 2015-10-12
2015-10-14 20:15:42 +01:00
Joe Hermaszewski
d6d88aaa2b
neovim: Create symlink to correct python3 binary
...
The symlink being created pointed to 'python' rather than 'python3'
2015-10-14 11:57:40 +02:00
Joe Hermaszewski
36be2e9144
neovim: 2015-06-09 -> 2015-10-08
2015-10-10 20:29:06 +01:00
Tobias Geerinckx-Rice
6c6201a99b
Remove unnecessary rec{s from "my" packages
2015-07-31 02:02:07 +02:00
Tobias Geerinckx-Rice
98b2d7b727
Separate nativeBuildInputs where maintainers |= nckx
2015-06-17 22:21:32 +02:00
Daiderd Jordan
c7f36cb5f0
fix neovim on darwin
2015-06-11 14:42:55 +02:00
Rok Garbas
19248c309a
neovim: uses vimUtils to make it configurable like vim_configurable is
...
- vimAlias argument , when true, will create a @out/bin/vim symlink
- configure argument, which will configure neovim the same way as it does
vim_configurable. eg.: ~/.nixpkgs/config.nix
{
packageOverrides = pkgs : with pkgs; rec {
vimg = neovim.override {
vimAlias = true;
configure = {
customRC = ''
set spell
'';
vam.pluginDictionaries = [
{ names = [ "youcompleteme" "ctrlp"]; }
];
};
};
};
}
Enjoy!
2015-06-11 10:48:29 +02:00
Rok Garbas
f2d7f573af
neovim: adding python2 and python3 support
...
neovim:
- possibility to extend neovim (via .override) and passing extraPythonPackages
or extraPython3Packages
- neovim's python interpreter can be found as nvim-python / nvim-python3
- wrapping nvim binary and setting `g:python_host_prog` and
`g:python3_host_prog` via --cmd flag
python-packages.nix fixes:
- ordereddict builds for py26 and uses disabled argument to tell this
- trollius builds on all python platforms except 3.4 (where is included in
standard librarary)
- neovim builds on all python platforms
2015-06-11 02:54:10 +02:00
Tobias Geerinckx-Rice
ef94547093
neovim -> 2015-06-09
2015-06-10 00:50:35 +02:00
Tobias Geerinckx-Rice
af15a201e1
neovim: update to latest master 2015-05-26
2015-05-27 01:22:43 +02:00
Tobias Geerinckx-Rice
bd67bfa306
neovim: various small improvements
...
- Fix package name ("neovim-nightly" -> "neovim")
- Use fetchFromGitHub, remove unused parameters
- Improve metadata
- Maintain
2015-05-27 00:13:24 +02:00
Michael Fellinger
917bf6865a
add neovim
2014-11-27 22:16:43 +01:00