Commit graph

2215 commits

Author SHA1 Message Date
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
Tim Steinbach 96d07508bf Merge pull request #22608 from NeQuissimus/atom_1_14_1
atom: 1.13.1 -> 1.14.1
2017-02-09 18:23:57 -05:00
Tim Steinbach efa0efa796
atom: 1.13.1 -> 1.14.1 2017-02-09 18:22:55 -05:00
David Terry bf92c77001 vscode: 1.9.0 -> 1.9.1 2017-02-09 21:35:02 +01:00
Ambroz Bizjak 3801ecb0d9 kdevplatform: Add patch to fix build with newer KF5. 2017-02-07 19:54:03 +01:00
Benjamin Staffin 35fdfa8597 Merge pull request #22453 from benley/vim-desktop
vim: Create xdg apps/icons dirs so .desktop items get installed
2017-02-06 17:54:24 -05:00
Matthew Bauer 3a9a707fd4
emacs24macport: remove 2017-02-06 16:46:05 -06:00
Gabriel Ebner d77d31b312 vscode: fix download url
Fixes #22465.
2017-02-06 08:29:49 +01:00
Peter Hoeg bc6b917100 emacs: make gtk3 default 2017-02-06 14:32:36 +08:00
Daiderd Jordan b5957eaf2f Merge pull request #22389 from matthewbauer/emacs-new-icons
emacs25Macport: use newer icons
2017-02-05 23:52:26 +01:00
Benjamin Staffin 24716fe954 vim: Create xdg apps/icons dirs so .desktop items get installed
In theory this ought to make gvim show up in the kde/gnome/xfce
application menus.
2017-02-04 21:29:59 -05:00
Michael Alan Dorman 339089fa28 melpa-packages: 2017-02-04 2017-02-04 16:57:43 -05:00
Michael Alan Dorman 04f50f2466 melpa-stable-packages: 2017-02-04 2017-02-04 16:57:42 -05:00
Evan Danaher b2fb95a6cf neovim-remote: move from python-packages to /neovim/neovim-remote. 2017-02-03 16:58:22 -05:00
Vladimír Čunát adab4cd58b
Merge branch 'master' into staging 2017-02-03 11:47:38 +01:00
David Terry dbda1c4331 vscode: 1.8.1 -> 1.9.0 2017-02-02 21:31:28 +01:00
Michael Alan Dorman 711a22096c melpa-packages: 2017-02-01
Removals:
  meacupla-theme - removed from melpa
  rustfmt - removed from melpa
  ttrss - removed from melpa
2017-02-02 08:06:43 -05:00
Michael Alan Dorman 89cbe137c3 melpa-stable-packages: 2017-02-01
Removals:
  ttrss - removed from melpa
2017-02-02 08:06:43 -05:00
Michael Alan Dorman 98f8cd6017 elpa-packages: 2017-02-01 2017-02-02 08:06:42 -05:00
Vladimír Čunát a2e7770b51
Merge branch 'master' into staging
There have been some larger security rebuilds on master.
2017-02-01 15:56:35 +01:00
Benjamin Staffin 3dd2a271ef vim: make it possible to build with --enable-gui=gtk3
This doesn't change any defaults; I suspect that dropping gtk2 support
would annoy some people so I didn't want to do that without asking
around first.
2017-01-31 02:17:11 -05:00
Vladimír Čunát 9cd2dbc569
Merge branch 'master' into staging
Hopefully this will fix the mass abortion on Hydra;
restarting the jobs didn't help.
2017-01-30 18:39:36 +01:00
Franz Pletz f68b7be364
brackets: 1.7 -> 1.8 2017-01-30 01:16:26 +01:00
Parnell Springmeyer 6777e6f812
Merging with upstream 2017-01-29 05:54:01 -06:00
Parnell Springmeyer 4aa0923009
Getting rid of the var indirection and using a bin path instead 2017-01-29 04:11:01 -06:00
Parnell Springmeyer e92b8402b0
Addressing PR feedback 2017-01-28 20:48:03 -08:00
Chris Hodapp 7638578342 RStudio: Optionally allow packages from custom R environment
https://nixos.org/nixpkgs/manual/#r-packages contains a method for
setting up an R environment with a specific set of libraries, and it
creates an R wrapper which points R to those libraries.

The package RStudio relies on the standard R package, which then
cannot access any of the libraries specified in a custom R
environment.  While one may easily use pkgs.rstudio.override to change
rstudio's R dependency to the custom R environment, this accomplishes
nothing because while RStudio runs the correct R wrapper it clears out
the environment variable R_LIBS_SITE - and so it is still unable to
use any of those packages.

In order to work around this problem, these changes allow the user to
optionally modify rstudio's wrapper to set environment variable
R_PROFILE_USER to an R script which sets R's .libPaths(..) to point to
the same libraries; that script is generated from R_LIBS_SITE in the R
wrapper.

By default, this change has no effect.  If R is overridden to
something else, and if useRPackages is changed from its default of
false, then the change described above is made; for instance:

{
  packageOverrides = pkgs: let self = pkgs.pkgs; in
  rec {
    rEnv = pkgs.rWrapper.override {
      packages = with self.rPackages; [
        dplyr ggplot2 e1071 rpart reshape
      ];
    };
    rstudioEnv = pkgs.rstudio.override { R = rEnv; useRPackages = true; };
  };
}
2017-01-27 18:54:50 -05:00
Vladimír Čunát 6973c7739e
Merge branch 'master' into staging
There were some larger rebuilds because of security.
2017-01-26 16:49:41 +01:00
Tim Steinbach cc3426fdaf Merge pull request #22152 from NeQuissimus/atom_1_13_1
atom: 1.13.0 -> 1.13.1
2017-01-26 08:43:45 -05:00
Parnell Springmeyer a26a796d5c
Merging against master - updating smokingpig, rebase was going to be messy 2017-01-26 02:00:04 -08:00
Tim Steinbach d258f054cd
atom: 1.13.0 -> 1.13.1 2017-01-25 17:22:55 -05:00
Robin Gloster d7b17e8b1c
edbrowse: mark as broken 2017-01-25 20:12:42 +01:00
Parnell Springmeyer bae00e8aa8
setcap-wrapper: Merging with upstream master and resolving conflicts 2017-01-25 11:08:05 -08:00
Michael Alan Dorman 87a651f4e3 melpa-packages: 2017-01-24
Removals:
 - flycheck-google-cpplint: Removed from melpa
2017-01-25 06:54:18 -05:00
Michael Alan Dorman 46cf112619 melpa-stable-packages: 2017-01-24
Removals:
 - evil: tags disappeared in repository move, so no stable version
2017-01-25 06:52:36 -05:00
Michael Alan Dorman aa9da623ff org-packages: 2017-01-24 2017-01-25 06:50:40 -05:00
Matthew Bauer 516300624e
emacs25Macport: use newer icons 2017-01-23 17:49:39 -06:00
Jonathan Haddock 654167e17f Updated versions of various Jetbrains applications, including PHPStorm, IntelliJ, PyCharm.
clion                 2016.3   -> 2016.3.2
datagrip	      2016.3.2 -> 2016.3.2
idea-community        2016.3.2 -> 2016.3.3
idea-ultimate         2016.3.2 -> 2016.3.3
pycharm-community     2016.3   -> 2016.3.2
pycharm-professional  2016.3   -> 2016.3.2
phpstorm              2016.3   -> 2016.3.2
ruby-mine              2016.2.5 -> 2016.3.1
webstorm              2016.3.1 -> 2016.3.2
2017-01-22 21:29:11 +00:00
Vladimír Čunát 40003aa2ed
Merge branch 'master' into staging 2017-01-18 15:54:04 +01:00
gnidorah 4a662e5206 nano: add nix syntax hightlight, nano module: provide default (#21912)
this is awesome! thanks.
2017-01-18 12:05:30 +01:00
Michael Alan Dorman 31556f2fab melpa-packages: 2017-01-17
Removals:
 - character-fold+: Removed from melpa
2017-01-17 09:10:26 -05:00
Michael Alan Dorman d119a43321 melpa-stable-packages: 2017-01-17 2017-01-17 09:10:23 -05:00
Michael Alan Dorman c97b7fd640 elpa-packages: 2017-01-17 2017-01-17 09:10:19 -05:00
Jörg Thalheim 489e6eaf4c Merge pull request #21921 from jansuchomel/update-vscode
vscode: 1.8.0 -> 1.8.1
2017-01-16 10:44:53 +01:00
Jan Suchomel a6e183b42e vscode: fix .desktop file 2017-01-16 10:03:47 +01:00
Jan Suchomel 75175a04c3 vscode: 1.8.0 -> 1.8.1 2017-01-16 09:51:08 +01:00
Lancelot SIX 7a4b15020a
ed: 1.13 -> 1.14.1
See http://lists.gnu.org/archive/html/info-gnu/2017-01/msg00004.html
for full release announcement.
2017-01-15 18:27:59 +01:00
Ignat Loskutov 5d89ad0447
datagrip: 2016.3 -> 2016.3.2 2017-01-15 20:11:37 +03:00
Vincent Laporte 503329e050 bluefish: 2.2.7 -> 2.2.9
And fix some missing icons
2017-01-14 16:33:02 +01:00
Michael Raskin fbe3a9c229 Merge pull request #21827 from srp/nvi
nvi: link against libncurses as there is no libcurses
2017-01-13 10:44:47 +00:00
Thomas Tuegel ce26a4d3d4 Merge pull request #21826 from mdorman/emacs-updates
Automated emacs package updates
2017-01-12 06:48:36 -06:00
Scott R. Parish 4c1703786c nvi: fix linking with ncurses 2017-01-11 19:21:18 -08:00
Michael Alan Dorman ac393d299c melpa-packages: 2017-01-11
removals:
 - ctags: repository no longer available
 - latest-clojure-libraries: removed from melpa
 - slamhound: removed from melpa
2017-01-11 20:49:26 -05:00
Michael Alan Dorman 2c4ee516d5 melpa-stable-package: 2017-01-11
removals:
 - ctags: repository no longer available
 - ctags-update: version tags lost when moved to new repository
 - slamhound: removed from melpa
2017-01-11 20:48:21 -05:00
Michael Alan Dorman adbc201147 elpa-packages: 2017-01-11 2017-01-11 20:46:20 -05:00
Tim Steinbach f124cb7611
atom: 1.12.9 -> 1.13.0 2017-01-11 17:18:24 -05:00
Jiří Daněk 0f83aa5167 idea-community: 2016.3 -> 2016.3.2 (#21807) 2017-01-11 16:36:25 +01:00
Graham Christensen acc889f5ed Merge pull request #21462 from phunehehe/android-studio
Fontconfig for Android Studio
2017-01-10 20:05:42 -05:00
Hoang Xuan Phu 4b3f79b3ca android-studio: use a dedicated fontconfig file 2017-01-10 13:36:02 +08:00
Hoang Xuan Phu d849f00af5 android-studio: reindent wrapProgram parameters 2017-01-10 13:35:37 +08:00
Hoang Xuan Phu 1f67c179ac android-studio: rearrange dependencies 2017-01-10 13:35:37 +08:00
Hoang Xuan Phu 4e513cbc9f android-studio: no need for jdk anymore
Android Studio now bundles its own JDK ¯\_(ツ)_/¯
2017-01-10 13:35:36 +08:00
Robert Helgesson 5bf06ac710
eclipse-plugin-checkstyle: 7.2.0 -> 7.3.0 2017-01-09 23:08:10 +01:00
Vladimír Čunát 936bc23b41
ed: avoid the useless rebuild due to #21752 2017-01-08 22:17:18 +01:00
Sebastian Hagen 547b203b9a ed: Add fedoraproject mirror.
The existing URL has gone dark; this commit adds one from fedoraproject.org
that still works. We put the new mirror first since ed is in the bootstrap
path, and 16.09 bootstrap doesn't try later URLs.
2017-01-08 13:46:16 +00: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
Tim Steinbach f2502c9d86
atom: 1.12.8 -> 1.12.9 2017-01-05 19:48:25 -05:00
Tim Steinbach d222761121
atom: 1.12.7 -> 1.12.8 2017-01-04 17:20:00 -05: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
Joachim F 68ab32fbf8 Merge pull request #21644 from mdorman/emacs-updates
Automated Emacs package updates
2017-01-04 17:54:54 +01:00
Michael Alan Dorman 080926b479 melpa-packages: 2017-01-03 2017-01-04 08:29:25 -05:00
Michael Alan Dorman 29472c62e1 melpa-stable-packages: 2017-01-03 2017-01-04 08:29:25 -05:00
Michael Alan Dorman 1b5f9394ed elpa-packages: 2017-01-03 2017-01-04 08:29:25 -05:00
Thomas Tuegel 0723aa8108 Merge pull request #21466 from abbradar/kde-wrapper
Flatten nested kdeWrappers
2017-01-03 08:21:39 -06:00
Nikolay Amiantov e908442693 kdeWrapper: allow wrapping several packages 2017-01-03 02:33:15 +03:00
Karn Kallio f16eda3fb1
eclipse-platform: add Neon 2 Platform 2017-01-02 17:57:32 +01:00
Karn Kallio 2c31127edc
eclipse-sdk-46: 4.6.1 -> 4.6.2 2017-01-02 17:55:13 +01:00
Joachim F 01fdbac60c Merge pull request #21550 from mimadrid/update/nano-2.7.3
nano: 2.7.2 -> 2.7.3
2016-12-31 16:12:10 +01:00
mimadrid ae5c3f6fc5
nano: 2.7.2 -> 2.7.3 2016-12-31 15:37:41 +01:00
Dmitry Kalinkin 9a5e34faca
kakoune: 2016-12-10 -> 2016-12-30, fix on Darwin 2016-12-30 14:27:49 -05:00
Graham Christensen fd826a0b71 Merge pull request #21492 from vdemeester/idea-ultimate_2016_3_2
idea-ultimate: 2016.3.1 -> 2016.3.2
2016-12-29 21:44:35 -05:00
Vincent Demeester 37632cbf5f
idea-ultimate: 2016.3.1 -> 2016.3.2
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-12-29 10:31:22 +01:00
Michael Alan Dorman 49992887e5 melpa-packages: 2016-12-27 2016-12-28 08:12:18 -05:00
Michael Alan Dorman 7ccd91b067 melpa-stable-packages: 2016-12-27 2016-12-28 08:12:18 -05:00
Michael Alan Dorman 4de8a35225 org-packages: 2016-12-27 2016-12-28 08:12:18 -05:00
Michael Alan Dorman 060c8493c7 elpa-packages: 2016-12-27 2016-12-28 08:12:18 -05:00
Peter Simons 06f51e17fa Merge pull request #21362 from lverns/rstudio-add-desktop-file
Rstudio add desktop file
2016-12-23 10:26:39 +01:00
Laverne Schrock 9872e65037 rstudio: make mkDerivation recursive
Needed since we want to access desktopItem from postInstall.
2016-12-22 08:16:49 -06:00
Laverne Schrock 4154adb128 rstudio: add desktop file
Fixes #20230
2016-12-22 08:15:56 -06:00
Michael Fellinger bb80d77d84 neovim: green :CheckHealth 2016-12-19 23:05:31 +01:00
volth ac97fbab3a fte: init at 0.50.02 2016-12-19 16:15:59 +01:00
Jascha Geerds 62c3d9ad0b Merge pull request #21239 from mimadrid/update/nano-2.7.2
nano: 2.7.1 -> 2.7.2
2016-12-17 17:44:13 +01:00
mimadrid b899b8945f
nano: 2.7.1 -> 2.7.2 2016-12-17 16:39:42 +01:00
Joachim F 7aa8fa28ae Merge pull request #21190 from mdorman/emacs-updates
Emacs package updates: 2016-12-15
2016-12-16 12:34:09 +01:00
Michael Alan Dorman 8cd481b5fd org-packages: 2016-12-15 2016-12-15 17:55:56 -05:00
Michael Alan Dorman 01d5fda8c1 melpa-stable-packages: 2016-12-15
Removals:
 - dummy-h-mode: github account no longer exists
 - judge-indent: github account no longer exists
2016-12-15 17:55:56 -05:00
Michael Alan Dorman c5e64ba4c8 melpa-packages: 2016-12-15
Removals:
 - cursor-in-brackets: github account no longer exists
 - dummy-h-mode: github account no longer exists
 - general-close: removed from melpa
 - judge-indent: github account no longer exists
2016-12-15 17:55:55 -05:00
Michael Alan Dorman 994b243dd3 elpa-packages: 2016-12-15 2016-12-15 17:55:55 -05:00
David Terry 1152b97925 vscode: 1.7.2 -> 1.8.0 2016-12-15 21:47:31 +01:00
David Terry 35399f93d6 vscode: 1.6.1 -> 1.7.2 2016-12-15 12:04:48 +01:00
Vincent Demeester 910dcdb7d2 idea-ultimate: 2016.3 -> 2016.3.1
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-12-15 11:24:07 +01:00
taku0 bd55e9db63 android-studio: 2.1.3 -> 2.2.3 2016-12-15 10:41:18 +01:00
Daiderd Jordan 3bd81a0620 Merge pull request #20536 from TikhonJelvis/master
emacs-24.5-mac-5.15: fixed package by adding build tools
2016-12-13 23:28:37 +01:00
Daiderd Jordan 29d53f3d5f Merge pull request #20706 from matthewbauer/emacs-macport-version-fix
emacs-macport: 6.0 -> 6.1
2016-12-13 23:16:49 +01:00
Aristid Breitkreuz 78ffee7f06 kakoune: update 2016-07-26 -> 2016-12-10 2016-12-13 20:57:35 +01:00
Michael Alan Dorman 5df4ed710a melpa-stable-packages: 2016-12-12 2016-12-12 13:07:33 -05:00
Michael Alan Dorman a448d478c0 melpa-packages: 2016-12-12
Removals:
 - bitly - github repo no longer exists
 - gitty - github repo no longer exists
 - gplusify - github repo no longer exists
2016-12-12 13:07:32 -05:00
Michael Alan Dorman 7a25ceade1 elpa-packages: 2016-12-12 2016-12-12 13:07:32 -05:00
Tim Steinbach 8c8abafc2d
atom: 1.12.6 -> 1.12.7 2016-12-09 15:34:25 -05:00
Michael Alan Dorman 6ef023a62b melpa-stable-packages: 2016-12-07
Removals:
 - elang: removed from melpa
2016-12-07 16:51:35 -05:00
Michael Alan Dorman 6f0564bb8c melpa-packages: 2016-12-07
Removals:
 - debian-bug: cvs server timed out
 - elang: removed from melpa
2016-12-07 16:51:35 -05:00
Joachim F 48cad0441b Merge pull request #20901 from ambrop72/kdevelop-5.0.3
kdevelop: 5.0.2 -> 5.0.3
2016-12-07 05:23:17 +01:00
Ignat Loskutov 1915170dde
idea.datagrip: init at 2016.3 2016-12-06 00:28:09 +03:00
Ambroz Bizjak 4c9bebf8c2 kdevelop: 5.0.2 -> 5.0.3 2016-12-04 18:17:25 +01:00
Igor Sharonov b5286f3747 neovim-qt: 0.2.3 -> 0.2.4 2016-12-03 16:16:45 +03:00
Tim Steinbach 1ac1d93427
atom: 1.12.5 -> 1.12.6 2016-11-28 17:37:32 -05:00
Rok Garbas 880d616ec0 neovim: 0.1.6 -> 0.1.7 2016-11-28 04:06:19 +01:00
Stefan Siegl 92383e669d idea.webstorm: 2016.3 -> 2016.3.1 2016-11-25 14:20:29 +01:00
Stefan Siegl e87f28fbb1 idea.phpstorm: 2016.2.2 -> 2016.3 2016-11-25 14:17:20 +01:00
Stefan Siegl cb8f804b1d idea.pycharm-{community,professional}: 2016.2.3 -> 2016.3 2016-11-25 14:14:42 +01:00
Stefan Siegl cf709b544a clion: 2016.2.3 -> 2016.3 2016-11-25 14:10:04 +01:00
Matthew Bauer 558551399d
emacs-macport: 6.0 -> 6.1 2016-11-25 00:29:55 -06:00
Matthew Bauer 25cfafdf5b
emacs-macport: fix "Carbon.h" present but cannot be compiled
Previously, emacs-macport was giving the error:

- AppKit/AppKit.h: present but cannot be compiled
- Carbon/Carbon.h: present but cannot be compiled

This add "MAC_OS_X_VERSION_MIN_REQUIRED=1090" to CFLAGS to allow them
to compile with the new 10.10 headers.

Fixes #20682.
2016-11-25 00:25:05 -06:00
Michael Alan Dorman 781723b423 org-packages: 2016-11-23 2016-11-23 11:10:13 -05:00
Michael Alan Dorman 9c826dd24c melpa-stable-packages: 2016-11-23
Removals:
 - gnome-calendar: release tag has been removed from github
2016-11-23 11:10:13 -05:00
Michael Alan Dorman 6cf5768356 melpa-packages: 2016-11-23 2016-11-23 11:10:08 -05:00
Michael Alan Dorman 5b45caa1de elpa-packages: 2016-11-23 2016-11-23 11:04:32 -05:00
Edward Tjörnhammar 38d77bc86b
idea.idea-{community,ultimate}: 2016.2.5 -> 2016.3 2016-11-22 23:47:52 +01:00
Tim Steinbach 48fad82911
atom: 1.12.4 -> 1.12.5 2016-11-21 18:06:27 -05:00
Pascal Wittmann f7e0bc2ae7
Make all meta.maintainers attributes lists 2016-11-20 18:06:03 +01:00
Tikhon Jelvis f4c96de8f9 Fixed the emacs24 macport package by adding automake and autoconf build tools. 2016-11-18 11:05:52 -08:00
Tim Steinbach 3b2b5b97fb Merge pull request #20479 from goetzst/webstorm
webstorm: 2016.2.4 -> 2016.3
2016-11-17 22:21:00 -05:00
Tim Steinbach fe0d46d05b
atom: 1.12.2 -> 1.12.4 2016-11-17 19:43:52 -05:00
Robert Helgesson c92aa1ba6d
eclipse-plugin-checkstyle: 6.19.1 -> 7.2.0 2016-11-18 00:11:46 +01:00
Robert Helgesson add010f694
eclipse-plugin-testng: 6.9.12 -> 6.9.13 2016-11-17 00:06:41 +01:00
Stefan Götz 58d580764e webstorm: 2016.2.4 -> 2016.3 2016-11-16 18:48:10 +01:00
John Wiegley c4d2d56f22
emacs: Missed a pluralization... 2016-11-16 08:54:30 -08:00
John Wiegley 0bf515c973
emacs: Depend on libselinux only for Linux 2016-11-16 08:53:45 -08:00
Pascal Wittmann cbe8c3f62f zile: 2.4.11 -> 2.4.13 2016-11-13 22:15:44 +01:00
Frank Lanitz d4da4fa5f9 Geany: 1.28 -> 1.29 2016-11-13 17:51:11 +01:00
Tim Steinbach dcb76cda79
atom: 1.12.1 -> 1.12.2 2016-11-12 16:37:20 -05:00
Tim Steinbach b773918fe4 Merge pull request #20324 from NeQuissimus/atom_1_12_1
atom: 1.12.0 -> 1.12.1
2016-11-11 10:24:41 -05:00
Tim Digel babbe0e14d vim: 8.0.0005 -> 8.0.0075 2016-11-11 10:12:18 +01:00
Tim Steinbach 0b91aa42d2
atom: 1.12.0 -> 1.12.1 2016-11-10 21:05:55 -05:00
Herwig Hochleitner d1dba6e083 emacs: add selinux capability 2016-11-10 15:59:52 +01:00
Herwig Hochleitner db402312a3 emacs: fix segfaults in 25.1 2016-11-10 15:59:47 +01:00
Tim Steinbach d0c1e42c1e
atom: 1.11.2 -> 1.12.0 2016-11-09 19:54:13 -05:00
Robert Helgesson 9f251e1cb1
eclipse-plugin-acejump: 1.0.0.201501181511 -> 1.0.0.201610261941 2016-11-09 18:05:11 +01:00
Arseniy Seroka d4d2e7fd9e Merge pull request #20237 from vcunat/p/vim-fixes
vim fixes
2016-11-09 12:22:45 +03:00
Michael Alan Dorman 4fc5946d5f melpa-packages: 2016-11-07
Removals:
  - closql: repository moved, recipe not updated
  - epkg: repository moved, recipe not updated
  - flycheck-protobuf: recipe removed from melpa
  - frame-restore: recipe removed from melpa
2016-11-07 19:46:27 -05:00
Michael Alan Dorman 6449b122eb melpa-stable-packages: 2016-11-07
Removals:
  - closql: repository moved, recipe not updated
  - epkg: repository moved, recipe not updated
  - frame-restore: recipe removed from melpa
  - gulp-task-runner: version tag no longer present
  - weblogger: moved to github, version tag no longer present
2016-11-07 19:46:15 -05:00
Michael Alan Dorman 19aad5c984 org-packages: 2016-11-07 2016-11-07 19:46:15 -05:00
Michael Alan Dorman b61b2806db elpa-packages: 2016-11-07 2016-11-07 19:46:15 -05:00
Vladimír Čunát 996d8ddd99 vim*: fix :Man a bit 2016-11-07 18:55:21 +01:00
Vladimír Čunát 51feecbe88 vim_configurable: misc improvements
- fix wrongly used *native* build inputs;
- remove confusing `prePatch = "cd src";` ;
- adapt RPATH handling to multiple-output changes;
- don't list full compiler flags in vim --version,
  as that would keep references to -dev paths.

Together, the closure of the default feature-set drops almost by 100 MB.
The lean vim attribute would *not* lose any references due to patching
--version, so we only apply it for vim_configurable.
2016-11-07 18:55:21 +01:00
Vladimír Čunát 1667046505 vim: factor common.nix from {default,configurable}.nix
The derivations are unchanged.
2016-11-07 16:38:13 +01:00
Tim Steinbach fd8d9098cb
Remove emacs stratego mode
Does not build, no longer exists
2016-11-03 21:40:35 -04:00
Frederik Rietdijk d32b95c966 kile: 2016-07-25 -> 2016-10-24 2016-11-02 10:43:44 +01:00
Tim Steinbach 8746289295 Merge pull request #20036 from mdorman/emacs-updates
Emacs package updates
2016-11-01 09:08:19 -04:00
Tim Steinbach b2e6068b66 Merge pull request #20002 from ambrop72/kdevelop-5.0.2
kdevelop: 5.0.0 -> 5.0.2
2016-11-01 09:05:56 -04:00
Tim Steinbach 658bb4994f Merge pull request #20023 from stesie/idea-updates-5
Update IntelliJ Toolbox
2016-11-01 09:04:32 -04:00
Michael Alan Dorman aa1572e741 melpa-packages: 2016-10-31
renamed:
 - cssfmt -> stylefmt
 - git-blame -> git-blamed

removed from melpa:
 - colorsarenice-theme
 - marmalade
 - org-pandoc
 - stekene-theme

repository unavailable:
 - matrix-client
2016-10-31 20:21:59 -04:00
Michael Alan Dorman 3a8f4624d7 melpa-stable-packages: 2016-10-31
removed from melpa:
 - colorsarenice-theme
 - marmalade
 - stekene-theme
2016-10-31 20:21:58 -04:00
Michael Alan Dorman b4f7993618 org-packages: 2016-10-31 2016-10-31 20:21:58 -04:00
Michael Alan Dorman d9e1651911 elpa-packages: 2016-10-31 2016-10-31 20:21:58 -04:00
Yochai Meir f9f7461ed3 texstudio: 2.11.0 -> 2.11.2 2016-10-31 23:40:18 +02:00
Stefan Siegl 682c4c40a4 idea.phpstorm: 2016.2.1 -> 2016.2.2 2016-10-31 17:49:44 +01:00
Stefan Siegl bca319d58d idea.ruby-mine: 2016.2.4 -> 2016.2.5 2016-10-31 17:47:50 +01:00
Rok Garbas c27c1b2696
neovim-qt: 0.2.1 -> 0.2.3 2016-10-30 23:06:59 +01:00
Ambroz Bizjak de98c8d791 kdevelop: 5.0.0 -> 5.0.2 2016-10-30 18:50:55 +01:00
Jascha Geerds f3ef08c6c8 emacsPackages.cask: 0.7.4 -> 0.8.1 2016-10-29 22:51:23 +02:00
Jascha Geerds e789ba3d09 nano: 2.7.0 -> 2.7.1 2016-10-29 22:43:27 +02:00
Jascha Geerds 33397d6f59 nano: Add myself as a maintainer 2016-10-29 22:43:27 +02: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
Robert Helgesson 268568a74a
eclipses: use HTTPS download URLs 2016-10-28 23:05:09 +02:00
Frederik Rietdijk 7077a270bf Merge remote-tracking branch 'upstream/master' into HEAD 2016-10-26 13:06:43 +02:00
Michael Alan Dorman 3a9f9c915c org-packages: 2016-10-24 2016-10-24 15:06:53 -04:00
Michael Alan Dorman 3f8cbbead2 melpa-stable-packages: 2016-10-24 2016-10-24 15:06:52 -04:00
Michael Alan Dorman bd86ea1f2c melpa-packages: 2016-10-24 2016-10-24 15:06:52 -04:00
Michael Alan Dorman 9062f38d4a elpa-packages: 2016-10-24 2016-10-24 15:06:52 -04:00
Stefan Siegl f52f4477cd idea.webstorm: 2016.2.2 -> 2016.2.4 2016-10-23 22:38:20 +02:00
Stefan Siegl bce4118a87 idea.ruby-mine: 2016.2.2 -> 2016.2.4 2016-10-23 22:35:58 +02:00
Stefan Siegl 6118997803 idea.idea-{community,ultimate}: 2016.2.4 -> 2016.2.5 2016-10-23 22:34:03 +02:00
Stefan Siegl 6b436e4a28 clion: 2016.2.2 -> 2016.2.3 2016-10-23 22:29:35 +02:00
Robert Helgesson 4841ca292c
eclipse-sdk-46: 4.6 -> 4.6.1 2016-10-23 00:28:19 +02:00
Robert Helgesson 8668585f4e
eclipse-platform-46: 4.6 -> 4.6.1 2016-10-23 00:28:10 +02:00
Frederik Rietdijk e56832d730 Merge remote-tracking branch 'upstream/master' into HEAD 2016-10-22 17:23:24 +02:00
Jörg Thalheim 8c465c5201 Merge pull request #19656 from RamKromberg/init/hecate
hecate: init at 0.0.1
2016-10-22 17:10:29 +02:00
Tim Steinbach e4a6491942
brackets: 1.5 -> 1.7 2016-10-21 19:42:57 -04:00
Robert Helgesson 9b2fbb776b
eclipse: less heavy comments 2016-10-21 10:44:31 +02:00
Stefan Götz 9b2d1bbc20 eclipse-scala-sdk: 4.0.0 -> 4.4.1 2016-10-20 23:10:57 +02:00
Stefan Götz 935da0d8fd eclipse: cleanup (#19723) 2016-10-20 23:10:52 +02:00
Vladimír Čunát 4d5b893002 Merge #19081: gnome-3.22
Also master commits are brought in.
2016-10-20 23:04:10 +02:00
Tim Steinbach 5ec0bd883f Merge pull request #19721 from goetzst/eclipse-modeling
eclipse-modeling: Helios(3.6) -> Neon.1(4.6.1)
2016-10-20 12:39:03 -04:00
Stefan Götz fcb0d376b6 eclipse-modeling: Helios(3.6) -> Neon.1a 2016-10-20 18:04:28 +02:00
Danny Arnold 56dfc33f49 atom: 1.11.1 -> 1.11.2 2016-10-20 10:46:16 +02:00
Frederik Rietdijk be343cbce4 nvpy: use python2 2016-10-18 23:14:34 +02:00
Ram Kromberg fd02ff7cf5 hecate: init at 0.0.1 2016-10-18 19:40:23 +03:00
Thomas Tuegel 35e2e51c9d Merge pull request #19632 from mdorman/emacs-updates
emacs-packages: 2016-10-17
2016-10-17 17:07:15 -05:00
Joachim F 1c966e0d96 Merge pull request #19615 from RamKromberg/fix/sam
sam: 2016-09-15 -> 2016-10-08
2016-10-17 22:32:11 +02:00
Michael Alan Dorman dfc1c6b886 org-packages: 2016-10-17 2016-10-17 16:19:02 -04:00
Michael Alan Dorman 1295b3bd63 melpa-stable-packages: 2016-10-17
Removals:
- ecb :: stable version no longer parseable by package.el
- puml-mode :: Deprecated in favor of plantuml-mode
2016-10-17 16:19:02 -04:00
Michael Alan Dorman ff6300c995 melpa-packages: 2016-10-17
Removals:
- aria2 :: Repository has been removed, recipe not yet updated, melpa issue opened
- aurora-theme :: Repository has been removed
- go-guru :: Code has moved, recipe not yet updated, melpa issue opened
- hipster-theme :: Repository has been removed
- mozc :: Repository doesn't clone
- puml-mode :: Removed in favor of plantuml-mode
- visible-mark :: Repository has been removed, recipe not yet updated, melpa issue opened
- xah-math-input :: Repository has a problem on disk, recipe not yet updated, melpa issue opened
2016-10-17 16:19:01 -04:00
Michael Alan Dorman 20bf2ade33 elpa-packages: 2016-10-17 2016-10-17 16:19:01 -04:00
Ram Kromberg b5683808b0 vis: 2016-08-24 -> 2016-10-09 2016-10-17 10:35:48 +03:00
Ram Kromberg fc5bd4986f sam: 2016-09-15 -> 2016-10-08 2016-10-17 10:21:29 +03:00
Graham Christensen 541bc547eb Merge pull request #19563 from NeQuissimus/atom_1_11_1
atom: 1.10.1 -> 1.11.1
2016-10-15 07:13:10 -04:00
Tim Steinbach 405f241e6e
netbeans: 8.1 -> 8.2 2016-10-14 21:56:26 -04:00
Tim Steinbach 1a988b155b
atom: 1.10.1 -> 1.11.1 2016-10-14 21:37:28 -04:00
Svintsov Dmitry 8df9632a25 vscode: 1.5.1 -> 1.6.1 2016-10-14 22:33:21 +05:00
Graham Christensen 034ba88850 Merge pull request #19267 from vbgl/proofgeneral-4.4
ProofGeneral: 4.2 -> 4.4
2016-10-08 09:00:11 -04:00
Damien Cassou 0e69fb2f19 Merge pull request #18985 from dudebout/emacs-with-c-src
emacs: add an option to install the C source
2016-10-07 17:23:19 +02:00
Jascha Geerds 7ca139c4b7 idea.pycharm-{community,professional}: 2016.2.2 -> 2016.2.3 2016-10-07 16:09:16 +02:00
Vincent Laporte 4e60f99b83 ProofGeneral: remove legacy version 4.3pre 2016-10-07 07:27:48 +02:00
Vincent Laporte 7b805bd0b0 ProofGeneral: 4.2 -> 4.4 2016-10-05 19:09:36 +02:00
Andrew Abbott 717fbc2ad0 textadept: 8.7 -> 9.0 2016-10-05 15:07:56 +11:00
Michael Alan Dorman 3b7dd001e2 melpa-packages: 2016-10-03
Removals:
 - mmm-jinja2: repository is gone
 - salt-mode: repository is gone
 - session: removed from melpa
 - shimbun: repository server doesn't respond properly
 - w3m: repository server doesn't respond properly
 - yatex: server using insecure tls version
2016-10-04 08:15:25 -04:00
Michael Alan Dorman 29f61c14ea melpa-stable-packages: 2016-10-03
Removals:
 - ssh-config-mode: version number no longer parseable by package.el
 - yatex: server using insecure tls version
2016-10-04 08:15:00 -04:00
Michael Alan Dorman d87851718c org-packages: 2016-10-03 2016-10-04 08:12:18 -04:00
Michael Alan Dorman 6d0cca95ad elpa-packages: 2016-10-03 2016-10-04 08:12:18 -04:00
rszibele bfe3f70fc8 notepadqq: init at 0.53.0 2016-10-02 15:59:01 +02:00
Tuomas Tynkkynen eda2dd3d2f treewide: Fix more 'lib.optional' misuses 2016-10-02 00:44:10 +03:00
Jörg Thalheim f5c347aea6 Merge pull request #17408 from AndersonTorres/tecoc
tecoc: init at 20150606
2016-10-01 15:38:35 +02:00
Andrew Abbott 4a371795a6 tiled: 0.16.1 -> 0.17.0 2016-09-30 13:49:08 +10:00
Nicolas Dudebout 7e7d588ca9 emacs: install the C source from postInstall
Reimplement the C source installation from the derivation instead of
relying on a Makefile patch.
2016-09-27 15:57:52 -04:00
Nicolas Dudebout bb6708b858 emacs: add an option to install the C source
Install the source files, and the associated TAGS files. Use
.dir-locals.el to select the TAGS file automatically.

Turn the option on by default, to get a consistent behavior when using
xref-find-definitions (M-.), whether looking for an elisp (e.g. defun)
or a C (e.g. defalias) definition.
2016-09-26 17:09:06 -04:00
Frederik Rietdijk 3ba16c8234 Do not use top-level buildPythonPackage or buildPythonApplication
but instead use the one in pythonPackages.
2016-09-26 11:10:51 +02:00
zimbatm f65f6a7668 sublimetext3: 3124 -> 3126 2016-09-24 14:53:42 +01:00
Daiderd Jordan fef18bdedc Merge pull request #18801 from winksaville/update-vim_configurable-to-vim.8.0005
vim_configurable: 7.4.826 -> 8.0005
2016-09-23 23:54:34 +02:00
Wink Saville d81a6e6f9c Remove python_framework.patch
In the [discussion](https://github.com/NixOS/nixpkgs/pull/18801) of this pull
request @LnL7 was unable to complete a darwin build because the
python_framework.patch does not apply and suggests it should be removed.
2016-09-23 09:13:23 -07:00
Robert Helgesson 38f9d995ab
eclipse-plugin-testng: 6.9.11 -> 6.9.12 2016-09-22 22:13:37 +02:00
zimbatm 70b02dcc11 sublime3: 3114 -> 3124 2016-09-22 10:59:53 +01:00
Periklis Tsirakidis 937b56f5db emacs-25-macport: init at 25.1-mac-6.0 (#18363) 2016-09-21 22:19:57 +02:00
Wink Saville 08d7cfa420 Update vim_configurable to vim 8.0005 2016-09-20 16:56:31 -07:00
Nicolas Dudebout fafff78d3d Emacs cleanup (#18730)
emacs: Clean up derivation
2016-09-20 10:13:01 +02:00
Thomas Tuegel c31e3cf65b
orgPackages 2016-09-18 2016-09-18 12:52:29 -05:00
Thomas Tuegel 42f63a5402
melpaStablePackages 2016-09-18 2016-09-18 12:47:09 -05:00
Thomas Tuegel 93adad3ba4
melpaPackages 2016-09-18 2016-09-18 11:40:43 -05:00
Thomas Tuegel b01e7f26c7
elpaPackages 2016-09-18 2016-09-18 09:38:47 -05:00
Joachim F 39405311b8 Merge pull request #18686 from RamKromberg/fix/vis
vis: 2016-07-15 -> 2016-08-24
2016-09-18 13:52:37 +02:00
Moritz Ulrich 01e44ac1f9 emacs: 24.5 -> 25.1
This commit removes all references to emacs24 with the exception of
emacs24-macports. The two folders in `pkgs/applications/editors` named
`emacs-24` and `emacs-24` are consolidated to a new `emacs` folder.

Various parts in nixpkgs also referenced `emacs24Packages` (pinned to
`emacs24`) explicitly where `emacsPackages` (non-pinned) is more
appropriate. These references get fixed by this commit too.
2016-09-18 13:38:21 +02:00
Joachim F 54482712d5 Merge pull request #18305 from RamKromberg/init/deadpixi-sam
deadpixi-sam: init at 2016-09-15
2016-09-17 16:18:43 +02:00
Ram Kromberg dd8335629d deadpixi-sam: init at 2016-09-15 2016-09-17 16:43:28 +03:00
Ram Kromberg 59730d32da vis: 2016-07-15 -> 2016-08-24 2016-09-17 07:17:45 +03:00
Matthias Beyer ff7f39febb vim: 7.4.1585 -> 8.0.0005 2016-09-16 21:42:38 +02:00
Thomas Tuegel daa0687de8 Merge pull request #18307 from acowley/emacs24Macport
emacs24Macport: fix SDK version issue
2016-09-15 14:22:25 -05:00
Herwig Hochleitner a4cbd69ef0 emacs-modes: add upstream tramp
this fixes http://emacs.stackexchange.com/questions/21026/tramp-recreates-dev-null-as-a-regular-file
2016-09-14 21:39:02 +02:00
Thomas Tuegel 7fd8f158af
melpaPackages: update jade
Fixes #18550.
2016-09-13 13:37:06 -05:00
Nikolay Amiantov 4748709926 Merge commit 'refs/pull/18498/head' of git://github.com/NixOS/nixpkgs 2016-09-13 12:51:34 +03:00
uralbash 8553883ba1 vscode: 1.4.0 -> 1.5.1 (#18468) 2016-09-13 07:35:16 +02:00