summary refs log tree commit diff
path: root/pkgs/applications/editors
Commit message (Collapse)AuthorAge
* atom, atom-beta: 1.27.1 -> 1.27.2, 1.28.0-beta1 -> 1.28.0-beta2 (#41318)Patrick Hilhorst2018-05-31
|
* emacsMacport: 25.3 -> 26.1Matthew Bauer2018-05-31
|
* androidStudioPackages.{dev,canary}: 3.2.0.14 -> 3.2.0.15Michael Weiss2018-05-31
|
* Merge pull request #40920 from Ma27/vim-configurable-python-overrideDaiderd Jordan2018-05-30
|\ | | | | vim_configurable: restore ability to override python for modules
| * vim_configurable: restore ability to override python for modulesMaximilian Bosch2018-05-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems as Python will be fetched from $PATH in Vim 8.1: ``` stat("/home/ma27/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/run/wrappers/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/home/ma27/.nix-profile/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/nix/var/nix/profiles/default/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/run/current-system/sw/bin/python", {st_mode=S_IFREG|0555, st_size=291, ...}) = 0 readlink("/run/current-system/sw/bin/python", "/nix/store/ggjkqbvwnv7dflkmdgmmp"..., 4096) = 72 ``` This breaks in cases where you want to use a modified Python derivation for the VIM plugins you use in `vim_configurable`: ``` let vim_configurable' = vim_configurable.override { # python with modules for ensime python = python.withPackages (ps: with ps; [ sexpdata websocket_client ]); }; in vim_configurable'.customize { # ... } ``` With VIM 8.0 this worked perfectly fine, now it's necessary to install the modified `python` in $PATH to actually use it, otherwise an error like this arises: ``` [ensime] A dependency is missing, please `pip2 install sexpdata websocket-client` and restart Vim. Press ENTER or type command to continue ``` However it should be possible to pass the modified Python to the modules, the easiest workaround is to write a wrapper which prefixes $PATH to have the Python derivation available.
* | neovim-remote: 1.8.6 -> 2.0.5Jörg Thalheim2018-05-29
| |
* | typora: gnome2 cleanup (#41167)worldofpeace2018-05-29
| |
* | Merge pull request #41162 from ryantm/name-formatMatthew Justin Bauer2018-05-28
|\ \ | | | | | | treewide: fix derivation names
| * | treewide: fix derivation namesRyan Mulligan2018-05-28
| | |
* | | emacs26: add some tweaks from jwiegley’s overlayMatthew Bauer2018-05-28
| | | | | | | | | | | | | | | original src: https://github.com/jwiegley/nix-config/blob/f85c560bf8165fecbbd6a28bc2ba0ebbafeb3cf3/overlays/10-emacs.nix
* | | emacs: readd version 25Matthew Bauer2018-05-28
| | |
* | | emacs: 25.3 → 26.1Matthew Bauer2018-05-28
| | |
* | | typora: fix gsettings error (#41125)worldofpeace2018-05-28
|/ /
* | Merge pull request #41009 from matthewbauer/normalize-namesMatthew Justin Bauer2018-05-25
|\ \ | | | | | | Add versions to packages missing it
| * | okteta: add version attr, clean upYegor Timoshenko2018-05-25
| | |
| * | treewide: add version to packagesMatthew Bauer2018-05-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #40812 from baracoder/update-jetbrainsMatthew Justin Bauer2018-05-23
|\ \ \ | |_|/ |/| | Update jetbrains IDEs
| * | jetbrains.ruby-mine: 2018.1.2 -> 2018.1.3Herman Fries2018-05-20
| | |
| * | jetbrains.rider: 2017.3.1 -> 2018.1Herman Fries2018-05-20
| | |
| * | jetbrains.pycharm-professional: 2018.1.2 -> 2018.1.3Herman Fries2018-05-20
| | |
| * | jetbrains.pycharm-community: 2018.1.2 -> 2018.1.3Herman Fries2018-05-20
| | |
| * | jetbrains.phpstorm: 2018.1.2 -> 2018.1.4Herman Fries2018-05-20
| | |
| * | jetbrains.goland: 2018.1.2 -> 2018.1.3Herman Fries2018-05-20
| | |
| * | jetbrains.datagrip: 2018.1.2 -> 2018.1.3Herman Fries2018-05-20
| | |
* | | Merge pull request #40886 from Synthetica9/atom-1-27-1xeji2018-05-22
|\ \ \ | |_|/ |/| | atom: 1.27.0 -> 1.27.1, atom-beta: 1.24.0-beta3 -> 1.28.0-beta1
| * | atom, atom-beta: 1.27.0 -> 1.27.1, 1.24.0-beta3 -> 1.28.0-beta1Patrick Hilhorst2018-05-22
| | | | | | | | | | | | | | | | | | | | | | | | Also rewrote the derivation for easier maintencence. (And added @ysndr as maintainer for atom-beta, kind of an implicit result of joining the two. If you're not okay with that, I'll patch you out, but I'll presume consent.)
* | | Kakoune version updated 2018-03-22 -> 2018-05-21, debug mode disabledGrigoriy Dmitriev2018-05-21
| |/ |/|
* | Merge pull request #40750 from veprbl/pr/vim8.1Samuel Leathers2018-05-19
|\ \ | | | | | | vim: 8.0.1655 -> 8.1.0001
| * | vim: 8.0.1655 -> 8.1.0001Dmitry Kalinkin2018-05-19
| | |
* | | androidStudioPackages.{dev,canary}: 3.2.0.13 -> 3.2.0.14Michael Weiss2018-05-18
| | |
* | | typora: 0.9.47 -> 0.9.48 (#40714)Jens Binkert2018-05-18
| | |
* | | vscode: 1.23.0 -> 1.23.1Tim Steinbach2018-05-16
| | |
* | | emacsPackages.emacs-libvterm: Fix build (flipped over libvterm-neovim)adisbladis2018-05-16
| | |
* | | emacsPackages.emacs-libvterm: init at unstable-2017-11-24adisbladis2018-05-16
| | |
* | | libvterm-neovim: init at 2017-11-05adisbladis2018-05-16
| | |
* | | Merge pull request #40221 from jokogr/u/jetbrains-2018.1.3adisbladis2018-05-16
|\ \ \ | | | | | | | | Jetbrains products' update 2018.1.3
| * | | jetbrains.webstorm: 2018.1.2 -> 2018.1.3Ioannis Koutras2018-05-09
| | | |
| * | | jetbrains.ruby-mine: 2018.1.1 -> 2018.1.2Ioannis Koutras2018-05-09
| | | |
| * | | jetbrains.idea-ultimate: 2018.1.2 -> 2018.1.3Ioannis Koutras2018-05-09
| | | |
| * | | jetbrains.idea-community: 2018.1.2 -> 2018.1.3Ioannis Koutras2018-05-09
| | | |
* | | | Merge pull request #40562 from dtzWill/update/nano-2.9.7Will Dietz2018-05-15
|\ \ \ \ | |_|_|/ |/| | | nano: 2.9.4 -> 2.9.7
| * | | nano: 2.9.6 -> 2.9.7Will Dietz2018-05-15
| | | | | | | | | | | | | | | | http://git.savannah.gnu.org/cgit/nano.git/tree/ChangeLog?h=v2.9.7
| * | | nano: 2.9.4 -> 2.9.6Will Dietz2018-04-30
| | | |
* | | | atom: add myself as maintainerPatrick Hilhorst2018-05-15
| | | |
* | | | atom: 1.26.1 -> 1.27.0Patrick Hilhorst2018-05-15
| | | |
* | | | eclipse-plugin-jdt: 4.7.2 -> 4.7.3aRobert Helgesson2018-05-15
| | | |
* | | | eclipse-sdk: 4.7.2 -> 4.7.3aRobert Helgesson2018-05-15
| | | |
* | | | eclipse-platform: 4.7.2 -> 4.7.3aRobert Helgesson2018-05-15
| | | |
* | | | sublime3: 3170 -> 3176 (#40494)Guillaume Massé2018-05-14
| | | |
* | | | Merge pull request #40400 from teto/neovim_gperfJörg Thalheim2018-05-12
|\ \ \ \ | | | | | | | | | | [RDY] neovim: fix gperf error on dev-version