Daiderd Jordan
3010d99648
Merge pull request #40920 from Ma27/vim-configurable-python-override
...
vim_configurable: restore ability to override python for modules
2018-05-30 20:58:49 +02:00
Maximilian Bosch
f43446c9ca
vim_configurable: restore ability to override python for modules
...
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.
2018-05-30 09:16:55 +02:00
Jörg Thalheim
b02b464852
neovim-remote: 1.8.6 -> 2.0.5
2018-05-29 22:30:18 +01:00
worldofpeace
41bb69fa88
typora: gnome2 cleanup ( #41167 )
2018-05-29 22:04:04 +02:00
Matthew Justin Bauer
6cc070df8a
Merge pull request #41162 from ryantm/name-format
...
treewide: fix derivation names
2018-05-28 13:58:17 -04:00
Matthew Bauer
aa2160e1b6
emacs26: add some tweaks from jwiegley’s overlay
...
original src:
f85c560bf8/overlays/10-emacs.nix
2018-05-28 13:35:10 -04:00
Matthew Bauer
a87b50bc63
emacs: readd version 25
2018-05-28 13:35:05 -04:00
Matthew Bauer
ac23a7c459
emacs: 25.3 → 26.1
2018-05-28 11:35:20 -04:00
Ryan Mulligan
af9d10a91b
treewide: fix derivation names
2018-05-28 05:59:57 -07:00
worldofpeace
0e97d71126
typora: fix gsettings error ( #41125 )
2018-05-28 11:55:17 +02:00
Matthew Justin Bauer
98f2f08b4b
Merge pull request #41009 from matthewbauer/normalize-names
...
Add versions to packages missing it
2018-05-25 16:32:48 -05:00
Yegor Timoshenko
5da73fc3ff
okteta: add version attr, clean up
2018-05-25 15:48:26 -05: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
Matthew Justin Bauer
d5af1da3cd
Merge pull request #40812 from baracoder/update-jetbrains
...
Update jetbrains IDEs
2018-05-23 13:32:32 -05:00
xeji
41344b8d62
Merge pull request #40886 from Synthetica9/atom-1-27-1
...
atom: 1.27.0 -> 1.27.1, atom-beta: 1.24.0-beta3 -> 1.28.0-beta1
2018-05-22 10:38:33 +02:00
Patrick Hilhorst
2ad8e9a978
atom, atom-beta: 1.27.0 -> 1.27.1, 1.24.0-beta3 -> 1.28.0-beta1
...
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.)
2018-05-22 09:40:00 +02:00
Grigoriy Dmitriev
e4ed1d343e
Kakoune version updated 2018-03-22 -> 2018-05-21, debug mode disabled
2018-05-21 22:41:00 +03:00
Herman Fries
68fa5505d8
jetbrains.ruby-mine: 2018.1.2 -> 2018.1.3
2018-05-20 15:11:01 +02:00
Herman Fries
a3d40ac0ee
jetbrains.rider: 2017.3.1 -> 2018.1
2018-05-20 15:10:39 +02:00
Herman Fries
ce5e076329
jetbrains.pycharm-professional: 2018.1.2 -> 2018.1.3
2018-05-20 15:10:09 +02:00
Herman Fries
e4ed6ca841
jetbrains.pycharm-community: 2018.1.2 -> 2018.1.3
2018-05-20 15:09:41 +02:00
Herman Fries
4310d7f11b
jetbrains.phpstorm: 2018.1.2 -> 2018.1.4
2018-05-20 15:09:14 +02:00
Herman Fries
c0dec69ee0
jetbrains.goland: 2018.1.2 -> 2018.1.3
2018-05-20 15:08:49 +02:00
Herman Fries
61604ff9a6
jetbrains.datagrip: 2018.1.2 -> 2018.1.3
2018-05-20 15:08:17 +02:00
Samuel Leathers
e01a5b1aa8
Merge pull request #40750 from veprbl/pr/vim8.1
...
vim: 8.0.1655 -> 8.1.0001
2018-05-19 21:30:26 -04:00
Dmitry Kalinkin
c2ed843f38
vim: 8.0.1655 -> 8.1.0001
2018-05-19 00:29:50 -04:00
Michael Weiss
31712afa7b
androidStudioPackages.{dev,canary}: 3.2.0.13 -> 3.2.0.14
2018-05-18 14:26:09 +02:00
Jens Binkert
d566244039
typora: 0.9.47 -> 0.9.48 ( #40714 )
2018-05-18 11:04:13 +02:00
Tim Steinbach
3ed41f8c73
vscode: 1.23.0 -> 1.23.1
2018-05-16 07:34:24 -04:00
adisbladis
4e891cf4d5
emacsPackages.emacs-libvterm: Fix build (flipped over libvterm-neovim)
2018-05-16 14:31:43 +08:00
adisbladis
149a0dc1ff
emacsPackages.emacs-libvterm: init at unstable-2017-11-24
2018-05-16 14:02:49 +08:00
adisbladis
3290800d67
libvterm-neovim: init at 2017-11-05
2018-05-16 14:02:48 +08:00
adisbladis
11e908eca4
Merge pull request #40221 from jokogr/u/jetbrains-2018.1.3
...
Jetbrains products' update 2018.1.3
2018-05-16 13:43:59 +08:00
Will Dietz
4046c49fb5
Merge pull request #40562 from dtzWill/update/nano-2.9.7
...
nano: 2.9.4 -> 2.9.7
2018-05-15 14:06:55 -05:00
Patrick Hilhorst
36a4e54372
atom: add myself as maintainer
2018-05-15 20:33:41 +02:00
Patrick Hilhorst
87b0afb006
atom: 1.26.1 -> 1.27.0
2018-05-15 20:33:13 +02:00
Will Dietz
0f30db4222
nano: 2.9.6 -> 2.9.7
...
http://git.savannah.gnu.org/cgit/nano.git/tree/ChangeLog?h=v2.9.7
2018-05-15 13:25:31 -05:00
Robert Helgesson
d5dae23007
eclipse-plugin-jdt: 4.7.2 -> 4.7.3a
2018-05-15 18:52:58 +02:00
Robert Helgesson
726268db77
eclipse-sdk: 4.7.2 -> 4.7.3a
2018-05-15 18:52:58 +02:00
Robert Helgesson
9f20a5985d
eclipse-platform: 4.7.2 -> 4.7.3a
2018-05-15 18:52:58 +02:00
Guillaume Massé
1de744647f
sublime3: 3170 -> 3176 ( #40494 )
2018-05-14 17:11:44 +02:00
Jörg Thalheim
dcb6a74039
Merge pull request #40400 from teto/neovim_gperf
...
[RDY] neovim: fix gperf error on dev-version
2018-05-12 22:30:01 +01: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
Yannik Sander
58ab75c639
atom: fix git integration ( #40163 )
2018-05-09 18:34:57 -05:00
Michael Weiss
7fb1a79b8f
androidStudioPackages.{dev,canary}: 3.2.0.12 -> 3.2.0.13
2018-05-09 22:39:16 +02:00
Ioannis Koutras
27dc2a6883
jetbrains.webstorm: 2018.1.2 -> 2018.1.3
2018-05-09 13:01:08 +03:00
Ioannis Koutras
494188557b
jetbrains.ruby-mine: 2018.1.1 -> 2018.1.2
2018-05-09 13:00:48 +03:00
Ioannis Koutras
b184f60d7a
jetbrains.idea-ultimate: 2018.1.2 -> 2018.1.3
2018-05-09 13:00:26 +03:00
Ioannis Koutras
dd32c31605
jetbrains.idea-community: 2018.1.2 -> 2018.1.3
2018-05-09 13:00:08 +03:00
Robert Helgesson
88946527a5
eclipse-plugin-jsonedit: 1.1.0 -> 1.1.1
2018-05-08 23:20:15 +02:00
Guillaume Massé
8be7bb656f
sublime3: 3162(dev), 3143(stable) -> 3170(stable, dev)
2018-05-07 17:10:19 +02:00
Matthew Justin Bauer
1daec9d27c
Merge pull request #39696 from concatime/master
...
Updating dependencies of neovim
2018-05-07 04:26:36 +00:00
Tim Steinbach
97ca2f5d58
vscode: 1.22.2 -> 1.23.0
2018-05-04 22:34:40 +00:00
Matthew Bauer
143978a477
treewide: remove platform assertions
...
linux: readd assertion
2018-05-03 13:09:20 -05:00
Robin Gloster
646865afe2
idea.*: bump
...
Closes #39873
2018-05-02 22:06:08 +02:00
Issam Maghni
cb9f4f1ae3
pythonPackages.neovim: 0.2.4 -> 0.2.6, gem-neovim & gem-msgpack
2018-05-02 08:48:21 -04:00
Matthew Justin Bauer
5e6f1abfd3
Merge pull request #39790 from matthewbauer/gnu-on-darwin
...
GNUs on Darwin
2018-05-01 13:56:54 -05:00
Michael Weiss
b8f9b2e552
androidStudioPackages.{dev,canary}: 3.2.0.11 -> 3.2.0.12
2018-05-01 11:44:52 +02:00
Matthew Bauer
e1bc2fbfdd
moe: supports darwin
2018-04-30 22:44:14 -05:00
Will Dietz
4b7b083bcb
treewide: stdenv.lib.platforms.gnu -> ... gnu ++ linux
...
Include all linux platforms.
2018-04-30 18:12:10 -05:00
Will Dietz
decaeb1bfa
nano: 2.9.4 -> 2.9.6
2018-04-30 14:00:19 -05:00
Vladyslav Mykhailichenko
e55677bffa
tiled: 1.1.4 -> 1.1.5
2018-04-29 17:09:11 +03:00
Matthew Justin Bauer
08364a929a
Merge pull request #39101 from jokogr/u/jetbrains-2018.1.1
...
Jetbrains products' update 2018.1.1
2018-04-28 00:03:04 -05:00
xeji
b5f21c25a8
Merge pull request #39385 from jensbin/typora_0.9.47
...
typora: 0.9.44 -> 0.9.47
2018-04-27 23:51:29 +02:00
Patrick Hilhorst
fc7ae1fefe
atom: 1.26.0 -> 1.26.1
2018-04-27 13:40:20 +02:00
Ioannis Koutras
2479b449b6
webstorm: 2018.1 -> 2018.1.2
2018-04-25 11:33:03 +03:00
Ioannis Koutras
ef038375f8
ruby-mine: 2017.3.3 -> 2017.3.4
2018-04-25 11:33:02 +03:00
Ioannis Koutras
609766bf80
pycharm-professional: 2018.1 -> 2018.1.1
2018-04-25 11:33:02 +03:00
Ioannis Koutras
12f07ac1bc
pycharm-community: 2018.1 -> 2018.1.1
2018-04-25 11:33:02 +03:00
Ioannis Koutras
21feb8a2ed
idea-ultimate: 2018.1 -> 2018.1.2
2018-04-25 11:32:49 +03:00
Ioannis Koutras
e74d28ef96
idea-community: 2018.1 -> 2018.1.2
2018-04-25 11:32:40 +03:00
Ioannis Koutras
a52b5be4a2
goland: 2018.1 -> 2018.1.1
2018-04-25 11:29:53 +03:00
Ioannis Koutras
8ffaeecfca
clion: 2018.1 -> 2018.1.1
2018-04-25 11:29:53 +03:00
Jörg Thalheim
ab5e6073d9
Merge pull request #39436 from LnL7/vim-ft-nix
...
vim_configurable: replace default ftNix patch with sources from vim-nix
2018-04-25 08:36:36 +01:00
Bastian Köcher
58f53dc4d4
okteta: Move into own package
...
Okteta was removed from kde applications and will now be released
independently. So, we currently use the released version from 17.12.3.
2018-04-25 09:35:49 +08:00
Robert Helgesson
f54a9994e3
eclipse-plugin-spotbugs: 3.1.2 -> 3.1.3
...
Also switch to using zipped update site provided on GitHub.
2018-04-24 22:58:15 +02:00
Daiderd Jordan
1c3d38c69b
vim_configurable: replace default ftNix patch with sources from vim-nix
2018-04-24 22:56:25 +02:00
lewo
18c6c495ea
Merge pull request #39171 from nocent/add/bonzomatic
...
bonzomatic: init at 2018-03-29
2018-04-24 17:58:55 +02:00
nocent
0ada4b37d7
Added version info, set compatible platforms
...
Thanks for the review @nlewo and @Infinisil
2018-04-24 15:32:47 +00:00
Jens Binkert
e304b6b216
typora: 0.9.44 -> 0.9.47
2018-04-23 22:02:24 +02:00
Michael Weiss
42a9ba28d1
androidStudioPackages.{dev,canary}: 3.2.0.10 -> 3.2.0.11
2018-04-23 20:24:51 +02:00
Michael Weiss
84ace02e87
android-studio: 3.1.1.0 -> 3.1.2.0
2018-04-23 20:24:51 +02:00
Daiderd Jordan
313b5fce7b
Merge pull request #39260 from chreekat/idiomatic-vim-ft-plugin
...
vim: idiomatic nix filetype plugin
2018-04-22 00:25:40 +02:00
Jörg Thalheim
f27b83fd7e
Merge pull request #39244 from r-ryantm/auto-update/focuswriter
...
focuswriter: 1.6.11 -> 1.6.12
2018-04-21 11:40:38 +01:00
Tim Steinbach
0ce3be7872
Merge pull request #39279 from r-ryantm/auto-update/atom
...
atom: 1.25.1 -> 1.26.0
2018-04-20 18:06:31 -04:00
R. RyanTM
19742d0baf
atom: 1.25.1 -> 1.26.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/atom/versions .
These checks were done:
- built on NixOS
- ran ‘/nix/store/q560gnycgnl44jmldg5y2a9akg47q8kb-atom-1.26.0/bin/apm -h’ got 0 exit code
- ran ‘/nix/store/q560gnycgnl44jmldg5y2a9akg47q8kb-atom-1.26.0/bin/apm --help’ got 0 exit code
- ran ‘/nix/store/q560gnycgnl44jmldg5y2a9akg47q8kb-atom-1.26.0/bin/apm help’ got 0 exit code
- ran ‘/nix/store/q560gnycgnl44jmldg5y2a9akg47q8kb-atom-1.26.0/bin/atom help’ got 0 exit code
- ran ‘/nix/store/q560gnycgnl44jmldg5y2a9akg47q8kb-atom-1.26.0/bin/.atom-wrapped help’ got 0 exit code
- found 1.26.0 with grep in /nix/store/q560gnycgnl44jmldg5y2a9akg47q8kb-atom-1.26.0
- directory tree listing: https://gist.github.com/10c433ad7807e5aeaa581f442b89dd6c
2018-04-20 12:39:31 -07:00
Bryan Richter
16bfd5a2be
vim: Set softtabstop in nix filetype plugin
2018-04-20 11:46:40 -04:00
Bryan Richter
94fd34a31b
vim: idiomatic nix filetype plugin
...
* Never modify tabstop. This causes incompatibilities with other
utilities that expect tabs to always be 8 spaces.
* Add standard boilerplate for system-level filetype plugins.
2018-04-20 10:39:58 -04:00
R. RyanTM
6809540815
focuswriter: 1.6.11 -> 1.6.12
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/focuswriter/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.6.12 with grep in /nix/store/5vxpci5k243yxhrks31rfgmdvcmw01cz-focuswriter-1.6.12
- directory tree listing: https://gist.github.com/fe69e568c10ec79e4eaa27180b24e4c0
2018-04-20 06:25:38 -07:00
Matthew Justin Bauer
8273d97128
Merge pull request #38983 from scolobb/icicles-bump
...
icicles: 2017-10-28 -> 2018-04-16
2018-04-19 12:01:32 -05:00
nocent
4959111f30
bonzomatic: init at 2018-03-29
2018-04-19 19:01:26 +02:00
lewo
1c0595f780
Merge pull request #39089 from ciil/rstudio-update
...
rstudio: 1.1.423 -> 1.1.442
2018-04-19 08:12:56 +02:00
Simon Lackerbauer
0743c349ce
rstudio: 1.1.423 -> 1.1.442
2018-04-17 23:24:49 +02:00
Jörg Thalheim
b1bdcfff58
Merge pull request #39059 from mdorman/semi-automated-emacs-package-updates
...
Semi-automated emacs package updates
2018-04-17 22:02:40 +01:00
Jörg Thalheim
82faf2a40b
Merge pull request #39065 from r-ryantm/auto-update/edbrowse
...
edbrowse: 3.7.2 -> 3.7.3
2018-04-17 20:24:54 +01:00
Matthew Bauer
52893d5276
treewide: move "extensions" drvs to dir
...
This cleans up the tree for pkgs/applications somewhat. Should not
change any hashes.
2018-04-17 13:50:49 -05:00
Michael Weiss
085e894de5
androidStudioPackages.{dev,canary}: 3.2.0.9 -> 3.2.0.10
2018-04-17 18:03:16 +02:00
R. RyanTM
8e5088593f
edbrowse: 3.7.2 -> 3.7.3
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/edbrowse/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.7.3 with grep in /nix/store/w057l445jk9l35d2z1pql5jwcp1p1y0y-edbrowse-3.7.3
- directory tree listing: https://gist.github.com/8e186ea226866b6eec7612e33cf13c32
2018-04-17 05:30:26 -07:00
Michael Alan Dorman
529e7cf070
fold-dwim-org: mark broken
...
missing upstream dependency
2018-04-17 07:09:15 -04:00
Michael Alan Dorman
6515df0258
melpa-packages: 2018-04-16
...
Removals:
- ido-ubiquitous: removed from melpa
2018-04-17 07:08:58 -04:00
Michael Alan Dorman
4ec912fc11
melpa-stable-packages: 2018-04-16
...
Removals:
- ido-ubiquitous: removed from melpa
2018-04-17 07:08:58 -04:00
Michael Alan Dorman
ee8b9d92b5
org-packages: 2018-04-16
2018-04-17 07:08:57 -04:00
Michael Alan Dorman
3aefd6c94e
elpa-packages: 2018-04-16
2018-04-17 07:08:57 -04:00
Yegor Timoshenko
c385ad455e
Merge pull request #39004 from clefru/emacs-pkgs
...
Remove overrides for dead emacs packages.
2018-04-16 19:12:29 +00:00
Clemens Fruhwirth
3476b4c7d7
Remove overrides for dead emacs packages.
2018-04-16 14:32:07 +02:00
Jan Tojnar
bd4ad008dd
sublime3-dev: 3161 → 3162
2018-04-16 13:06:38 +02:00
Robert Schütz
231e8e2a34
ghostwriter: 1.6.1 -> 1.6.2
2018-04-16 07:57:12 +02:00
Sergiu Ivanov
dec5e5a602
icicles: 2017-10-28 -> 2018-04-16
2018-04-16 02:00:29 +02:00
Jason Legler
6fd4462fcf
vscode: 1.22.1 -> 1.22.2
2018-04-12 16:26:52 -06:00
Michael Weiss
9e73f92769
android-studio,android-studio-preview: 3.1.0.16 -> 3.1.1.0
2018-04-12 00:11:49 +02:00
Yegor Timoshenko
c625dbe84b
Merge pull request #38670 from davidak/dit
...
dit: init at 0.4
2018-04-11 15:11:36 +00:00
davidak
67206c90a8
dit: init at 0.4
2018-04-11 15:15:07 +02:00
Yegor Timoshenko
6dc4e9cee6
Merge pull request #38759 from mdorman/semi-automated-emacs-package-updates
...
Semi-automated emacs package updates
2018-04-11 13:01:01 +00:00
Frederik Rietdijk
ee6894ca12
Merge staging into master
2018-04-11 14:55:52 +02:00
Michael Alan Dorman
70298659d7
emacsPackagesNg: fix evaluation issues
...
There were some overrides relating to packages that were removed, as
well as some packages that still remained but depended on packages
that were removed.
2018-04-11 06:20:11 -04:00
Michael Alan Dorman
be8c2c003c
melpa-packages: 2018-04-11
...
Removals:
- escreen : purged from emacsmirror
- fm : purged from emacsmirror
- fold-dwim : purged from emacsmirror
- hl-sexp : purged from emacsmirror
- ldap-mode : purged from emacsmirror
- list-register : purged from emacsmirror
- osx-plist : purged from emacsmirror
- psvn : purged from emacsmirror
- quack : purged from emacsmirror
- vkill : purged from emacsmirror
- x-dict : purged from emacsmirror
- xterm-frobs : purged from emacsmirror
- xterm-title : purged from emacsmirror
2018-04-11 06:20:11 -04:00
Michael Alan Dorman
e66b642764
melpa-stable-packages: 2018-04-11
...
Removals:
- fm : purged from emacsmirror
- fold-dwim : purged from emacsmirror
- hl-sexp : purged from emacsmirror
- osx-plist : purged from emacsmirror
2018-04-11 06:20:11 -04:00
Michael Alan Dorman
58fb81f358
org-packages: 2018-04-11
2018-04-11 06:20:11 -04:00
Michael Alan Dorman
c44cd4c2e3
elpa-packages: 2018-04-11
2018-04-11 06:20:11 -04:00
ajs124
7d2e232208
texstudio: 2.12.6 -> 2.12.8 ( #38663 )
...
move to github
2018-04-10 20:19:52 +02:00
Robert Schütz
80fc5f2a24
Merge branch 'master' into staging
2018-04-10 09:13:36 +02:00
Michael Weiss
9726417975
androidStudioPackages.{dev,canary}: 3.2.0.8 -> 3.2.0.9
2018-04-09 22:55:49 +02:00
Robert Schütz
c8a1993123
ghostwriter: 1.5.0 -> 1.6.1
2018-04-09 19:03:31 +02:00
Frederik Rietdijk
0aa59a08d6
Merge master into staging
2018-04-09 15:12:32 +02:00
Jörg Thalheim
610e3853fe
Merge pull request #38229 from matklad/update-jetbrains
...
Major update of various JetBrains IDEs
2018-04-08 12:32:51 +01:00
Aleksey Kladov
1a870dfe99
jetbrains.webstorm: 2017.3.5 -> 2018.1
2018-04-08 14:14:35 +03:00
Aleksey Kladov
89a16a152c
jetbrains.pycharm-professional: 2017.3.4 -> 2018.1
2018-04-08 14:14:35 +03:00
Aleksey Kladov
a55f0e65c7
jetbrains.pycharm-community: 2017.3.4 -> 2018.1
2018-04-08 14:14:35 +03:00
Aleksey Kladov
62d0a0685d
jetbrains.phpstorm: 2017.3.5 -> 2017.3.6
2018-04-08 14:14:35 +03:00
Aleksey Kladov
672c98ded0
jetbrains.idea-ultimate: 2017.3.5 -> 2018.1
2018-04-08 14:14:35 +03:00
Aleksey Kladov
0215ae062d
jetbrains.idea-community: 2017.3.5 -> 2018.1
2018-04-08 14:14:35 +03:00
Aleksey Kladov
2bddfb16d5
jetbrains.goland: 2017.3.3 -> 2018.1
2018-04-08 14:14:34 +03:00
Frederik Rietdijk
595a72589f
Merge master into staging
2018-04-08 10:54:17 +02:00
Winnie Quinn
374fde067b
vscode: 1.21.1 -> 1.22.1
2018-04-07 14:40:12 -04:00
Guillaume Massé
15a2dca15c
Sublime dev ( #38383 )
...
* Package sublime-dev build.
* sublime3-dev: Init at 3160
* Sublime3: Refactor to share derivation between sublime-text 3 dev and stable
* Sublime3: Refactor as a fuction to avoid duplicating parameters
* Sublime3: Remove unnecessary rec
https://github.com/NixOS/nixpkgs/pull/38383#discussion_r178898901
* sublime3-dev: 3160 -> 3161
2018-04-06 17:31:10 +01:00
Patrick Hilhorst
e7a352f96f
atom : 1.25.0 -> 1.25.1
2018-04-06 12:18:37 +02:00
Daiderd Jordan
13139fccc6
focuswriter: mark linux only
2018-04-05 20:05:20 +02:00
Frederik Rietdijk
a9f37d1c25
Merge master into staging
2018-04-05 19:25:05 +02:00
Tim Steinbach
59ddb3ebfb
Merge pull request #38397 from jerith666/eclipse-jdk10-gtk3
...
Update OpenJDK 10 and Eclipse to GTK 3
2018-04-05 08:05:55 -04:00
R. RyanTM
554b833c01
focuswriter: 1.6.10 -> 1.6.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/focuswriter/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.6.11 with grep in /nix/store/l07yhlav7gx82f378b7pj42bd7mmgrii-focuswriter-1.6.11
- directory tree listing: https://gist.github.com/79fa42f32dce74dd135a983506320802
2018-04-05 10:29:23 +02:00
Frederik Rietdijk
23741692fa
Merge master into staging
2018-04-04 19:36:39 +02:00
Matt McHenry
cb66a7468e
eclipse: jdk8 -> jdk10
...
in combination with the parent commit that makes jdk10 use gtk3, this
lets us get onto a current webkitgtk.
since the current version of webkitgtk is still receiving security
updates, this also reverts 49ea0e2736
"eclipse: Do not use webkitgtk2 by default".
2018-04-03 12:30:21 -04:00
Michael Weiss
38d0e1ddf5
androidStudioPackages.{dev,canary}: 3.2.0.7 -> 3.2.0.8
2018-04-03 14:45:40 +02:00
Tuomas Tynkkynen
747ebe3f66
Merge remote-tracking branch 'upstream/master' into staging
...
Conflicts:
pkgs/top-level/all-packages.nix
2018-04-03 02:22:54 +03:00
Michael Alan Dorman
b801736b75
melpa-packages: 2018-04-01
...
Removals:
- anything*, helm-anything: removed from melpa
- auth-password-store: renamed to auth-source-pass
- cake*, ac-cake*: removed from melpa
- imgur: removed from melpa
- magit-rockstar: removed from melpa
- mmm-mode: removed from melpa
- org-fstree: removed from melpa
- undo-tree: removed from melpa
2018-04-02 07:29:45 -04:00
Michael Alan Dorman
21397f11fc
melpa-stable-packages: 2018-04-01
...
Removals:
- anything*: removed from melpa
- auth-password-store: renamed to auth-source-pass
- cake*, ac-cake*: removed from melpa
- magit-rockstar: removed from melpa
- mmm-mode: removed from melpa
2018-04-02 07:29:45 -04:00
Michael Alan Dorman
7881ffdb78
org-packages: 2018-04-01
2018-04-02 07:29:45 -04:00
Michael Alan Dorman
1484edca60
elpa-packages: 2018-04-01
2018-04-02 07:29:45 -04:00
John Wiegley
6654fde548
Mark some Emacs packages as no longer broken
2018-04-01 20:50:40 -07:00
Matthew Justin Bauer
f07348890d
melpa: Remove ess-R-object-popup (again)
2018-03-31 22:55:53 -05:00
Matthew Justin Bauer
b2d0c46e4b
melpa: Remove ess-R-object-popup
2018-03-31 22:55:25 -05:00
Aleksey Kladov
b2491ba52d
jetbrains.clion: 2017.3.4 -> 2018.1
2018-03-31 17:34:24 +03:00
R. RyanTM
cb0ac866ea
tiled: 1.1.3 -> 1.1.4
...
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.
This update was made based on information from https://repology.org/metapackage/tiled/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.1.4 with grep in /nix/store/zq69nbafa5zpw6l8i0a2vq4z1yzbhl6b-tiled-1.1.4
- directory tree listing: https://gist.github.com/a9382bc683245aa13b0c434a9a7a6b63
2018-03-31 13:03:52 +02:00
R. RyanTM
5b8455c338
vim: 8.0.1605 -> 8.0.1655
...
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.
This update was made based on information from https://repology.org/metapackage/vim/versions .
These checks were done:
- built on NixOS
- ran `/nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655/bin/vim -h` got 0 exit code
- ran `/nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655/bin/vim --help` got 0 exit code
- ran `/nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655/bin/vim --version` and found version 8.0.1655
- found 8.0.1655 with grep in /nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655
- directory tree listing: https://gist.github.com/b65f9cb4045c205c8c3ee68503c42596
2018-03-30 20:06:39 +01:00
Frederik Rietdijk
9d2ff98571
Merge remote-tracking branch 'upstream/master' into HEAD
2018-03-30 08:14:35 +02:00
Michael Weiss
4e645a2781
android-studio: 3.0.1.0 -> 3.1.0.16
2018-03-29 05:02:37 +02:00
Shea Levy
05e375d710
Merge remote-tracking branch 'origin/master' into staging
2018-03-28 09:36:47 -04:00
Matthew Justin Bauer
75616ceb49
Merge pull request #37840 from matthewbauer/unixtools
...
Cross-platform "unixtools"
2018-03-27 18:43:03 -05:00
Michael Weiss
aacd7d6d58
androidStudioPackages.{dev,canary}: 3.2.0.6 -> 3.2.0.7
2018-03-27 17:02:40 +02:00
Pascal Wittmann
2dec4a94ed
vis: 0.4 -> 0.5
2018-03-25 20:49:15 +02:00
Shea Levy
0f854cd2d1
Merge branch 'master' into staging
2018-03-24 01:34:53 -04:00
Jörg Thalheim
0203a6281c
vis: patch shebang to use system bash
2018-03-23 07:59:21 +00:00
Matthew Bauer
ed2a9cf65f
treewide: remove libintl hacks
2018-03-22 16:50:11 -05:00
Matthew Justin Bauer
6ff61bb5f9
Revert "melpaStablePackages.caml: don't run configure"
2018-03-22 11:32:47 -05:00
Matthew Justin Bauer
66b1712a62
Merge pull request #31798 from catern/fixcamlmod
...
melpaStablePackages.caml: don't run configure
2018-03-22 11:26:35 -05:00
Matthew Justin Bauer
12f14a0909
Merge branch 'master' into texmacsDarwin
2018-03-22 11:25:09 -05:00
gspia
05eafd27b1
kakoune: 2018-02-15 -> 2018-03-22 ( #37617 )
2018-03-22 12:12:27 +00:00
Jörg Thalheim
b9b08f8a09
webstorm: fix incorrect jre usuage
...
it tried to use its own jre, which is not patched
fixes #36943 #37328
2018-03-22 11:28:40 +00:00
Averell Dalton
33e6ef1790
jetbrains.clion: 2017.3.3 -> 2017.3.4
2018-03-22 07:30:12 +01:00
Averell Dalton
89cd01dabd
jetbrains.datagrip: 2017.3.5 -> 2017.3.7
2018-03-22 07:30:12 +01:00
Averell Dalton
be827e70c3
jetbrains.goland: 2017.3.2 -> 2017.3.3
2018-03-22 07:30:12 +01:00
Averell Dalton
09b05ede82
jetbrains.idea-community: 2017.3.4 -> 2017.3.5
2018-03-22 07:30:12 +01:00
Averell Dalton
413f63c512
jetbrains.idea-ultimate: 2017.3.4 -> 2017.3.5
2018-03-22 07:30:12 +01:00
Averell Dalton
9438b02411
jetbrains.phpstorm: 2017.3.4 -> 2017.3.5
2018-03-22 07:30:12 +01:00
Averell Dalton
a144405dd9
jetbrains.pycharm-community: 2017.3.3 -> 2017.3.4
2018-03-22 07:30:12 +01:00
Averell Dalton
4360ab458f
jetbrains.pycharm-professional: 2017.3.3 -> 2017.3.4
2018-03-22 07:30:12 +01:00
Averell Dalton
10909f0916
jetbrains.ruby-mine: 2017.3.2 -> 2017.3.3
2018-03-22 07:30:12 +01:00
Averell Dalton
0cf4d76897
jetbrains.webstorm: 2017.3.4 -> 2017.3.5
2018-03-22 07:30:12 +01:00
Michael Weiss
629d121980
androidStudioPackages.{dev,canary}: 3.2.0.5 -> 3.2.0.6
2018-03-21 13:09:09 +01:00
Michael Weiss
07361daf04
androidStudioPackages.beta: 3.1.0.14 -> 3.1.0.15
2018-03-21 13:09:09 +01:00
Matthew Justin Bauer
5675f17b0e
Merge pull request #35590 from TomSmeets/android-studio-ndk-fix
...
android-studio: Depend on ncurses5
2018-03-19 15:31:39 -05:00
Matthew Justin Bauer
11c34d55bf
Merge pull request #36838 from markuskowa/texmaker-pr
...
texmaker: 4.5 -> 5.0.2
2018-03-19 12:25:05 -05:00
Maximilian Bosch
08a9e31c42
zed: remove
...
`zed` is obviously dead and not maintained anymore
(https://zef.me/how-to-abandon-open-source-d5ebbc6e45e5 ).
As the last upstream commit was in 2015 we faced and will face many
issues with its dependencies due to the outdated upstream which can be
fatal when having security issues in the NodeJS ecosystem to fix.
One example is the handling of `nwjs` which is currently version `0.23`,
but `zed` relies on `0.9`. In order to reduce the maintenance overload
because of dead packages it's better to get rid of `zed` entirely.
Fixes #37361
2018-03-19 18:01:40 +01:00
Matthew Justin Bauer
79a40fc30c
Merge pull request #37156 from matthewbauer/auto-update/emacsPackagesNg.elpaPackages
...
elpa-packages 2018-03-15
2018-03-19 03:33:10 -05:00
Matthew Justin Bauer
f62b2fe132
Merge pull request #37221 from matthewbauer/auto-update/emacsPackagesNg.melpaPackages
...
emacsPackagesNg.melpaPackages 2018-03-17
2018-03-19 03:32:55 -05:00
Jörg Thalheim
fa534f3509
edbrowse: use fetchFromGitHub instead of fetchurl
2018-03-18 12:42:43 +00:00
Jörg Thalheim
711bef7bcf
Merge pull request #37077 from Maxdamantus/edbrowse
...
edbrowse: 3.6.1 -> 3.7.2
2018-03-18 12:39:15 +00:00
Gabriel Ebner
17cb96204c
Merge pull request #36415 from dywedir/tiled
...
tiled: 1.1.2 -> 1.1.3
2018-03-18 12:20:23 +01:00
Jörg Thalheim
2f07f28707
Merge pull request #37244 from ryantm/auto-update/vim
...
vim: 8.0.1451 -> 8.0.1605
2018-03-17 14:11:36 +00:00
Ryan Mulligan
a998162d7f
vim: 8.0.1451 -> 8.0.1605
...
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- ran `/nix/store/5afa788kqasx65plvzwjnffq9ihzdbmn-vim-8.0.1605/bin/vim -h` got 0 exit code
- ran `/nix/store/5afa788kqasx65plvzwjnffq9ihzdbmn-vim-8.0.1605/bin/vim --help` got 0 exit code
- ran `/nix/store/5afa788kqasx65plvzwjnffq9ihzdbmn-vim-8.0.1605/bin/vim --version` and found version 8.0.1605
- found 8.0.1605 with grep in /nix/store/5afa788kqasx65plvzwjnffq9ihzdbmn-vim-8.0.1605
- directory tree listing: https://gist.github.com/f9af564ba8cc53b90d1d262c2e786eee
2018-03-17 05:38:34 -07:00
Matthew Bauer
508c9b831c
melpa-packages 2018-03-17
2018-03-17 01:25:24 -05:00
Robert Helgesson
4dd5948134
eclipse-plugin-jsonedit: 1.0.2 -> 1.1.0
...
Also add `antlr-runtime-4.7.1`.
2018-03-16 23:28:50 +01:00
Matthew Bauer
a7afedd2e7
elpa-packages 2018-03-15
2018-03-15 21:49:26 -05:00
Tim Steinbach
f93d4b6181
vscode: 1.21.0 -> 1.21.1
2018-03-15 18:40:40 -04:00
Tim Steinbach
520642b6e6
atom: 1.24.1 -> 1.25.0
2018-03-15 18:35:02 -04:00
Max Zerzouri
cff69fdd50
edbrowse: 3.6.1 -> 3.7.2
...
Unmarked as broken, as the newer version uses duktape rather than an
incompatible version of spidermonkey.
2018-03-15 23:46:54 +13:00
Joachim F
137e1fdd3e
Merge pull request #36519 from ryantm/auto-update/focuswriter
...
focuswriter: 1.6.8 -> 1.6.10
2018-03-14 19:49:34 +00:00
Nikolay Amiantov
d7470c1f1e
android-studio: fix GTK LaF
...
Closes #36887 .
2018-03-13 16:13:18 +03:00
volth
7ec0471242
treewide: s/xlibs/xorg/g ( #36889 )
2018-03-13 10:16:03 +00:00
Sander van der Burg
f9bb730d77
zed: regenerate packages with node2nix 1.5.3
2018-03-13 10:38:38 +01:00