Commit Graph

2448 Commits

Author SHA1 Message Date
Michael Raskin e8d7014dac Merge pull request #22722 from patternspandemic/kodestudio
kodestudio: init at 17.1
2017-03-18 17:18:10 +01:00
Benno Fünfstück a4d6e2cf16 atom: avoid using LD_PRELOAD. Fixes glibc compat issues
The wrapper for Atom was loading libraries via LD_PRELOAD, for example
libxkbfile. Now, if you installed atom via nix-env and happened to use a newer
nixpkgs for that than what your system environment is build against, you could
end up with an error like this:

```
uname: relocation error:
/nix/store/68sa3m89shpfaqq1b9xp5p1360vqhwx6-glibc-2.25/lib/libdl.so.2:
symbol _dl_catch_error, version GLIBC_PRIVATE not defined in file libc.so.6
with link time reference
```

This happens because atom calls the `uname` executable from the system to
determine the platform. Because that inherits the `LD_PRELOAD` environment
variable, so the libxkbfile library that the `atom` wrapper was build against
is loaded into `uname`. But since `atom` comes from `nix-env`, the `libxkbfile`
it was built with might be compiled against a newer version of `glibc` than
`uname`, which comes from the system, was! Having two versions of glibc loaded
into the same processes results in chaos.

To fix this, we avoid setting `LD_PRELOAD` and instead use patchelf to set the
correct RPATH. RPATH is not inherited by child processes, so the above issue
can no longer occur.

The only small complication here is that the library that actually loads
libxkbfile is not the atom binary itself, but a node extension that atom uses.
So instead of setting the RPATH on `atom` only, we also set the `rpath` on all
node extensions (`*.node`) the output.
2017-03-18 01:51:36 +01:00
Nikolay Amiantov a8785daf0e emacs: fix runtime GTK3 dependencies
Fixes #23845.
2017-03-18 01:32:42 +03:00
patternspandemic bb728268b5
kodestudio: init at 17.1 2017-03-16 15:50:01 -07:00
Mogria 1893ed54dc sublime3: fix hardcoded /bin/bash when executing commands for build systems (#23561)
* sublime3: replace hardcoded /bin/bash with /usr/bin/env

exec.py in Default.package-sublime calls /bin/bash with subprocess.
See Issue #12011. Because of this builds could not be started from
withtin Sublime Text.

* sublime3: use wrapped of bash to fix internal build system

Without the wrapped version of bash (a symlink to $bash/bin/bash)
with LD_PRELOAD to glibc an relocation error occurs when trying
to run builds from within Sublime Text 3.  See Issue #12011.
2017-03-15 11:32:44 +01:00
Robert Helgesson 5228bc9f2e
eclipses: add dependencies as build inputs
Having `glib` in the build inputs will allow its build hook to
trigger. Also adds `gsettings_desktop_schemas` as a dependency since
Eclipse appears to need the schemas under certain circumstances.
2017-03-14 20:38:04 +01:00
Joachim F 40c1406b18 Merge pull request #23856 from mdorman/emacs-updates
Automated emacs package updates
2017-03-13 23:33:01 +01:00
Tim Steinbach 2d1ea867b7 Merge pull request #23866 from mimadrid/update/bluefish-2.2.10
bluefish: 2.2.9 -> 2.2.10
2017-03-13 18:26:58 -04:00
mimadrid 61e8c0370d
bluefish: 2.2.9 -> 2.2.10 2017-03-13 23:01:35 +01:00
Michael Alan Dorman 29559f6d7a melpa-packages: 2017-03-13 2017-03-13 15:00:27 -04:00
Michael Alan Dorman 2b1faaae9e melpa-stable-packages: 2017-03-13 2017-03-13 15:00:27 -04:00
Michael Alan Dorman 4433fc9089 elpa-package: 2017-03-13 2017-03-13 15:00:27 -04:00
Olegs Jeremejevs 39cd6ccb8e Add subl symlink for Sublime Text 3 (#23815) 2017-03-12 21:59:48 +00:00
Ambroz Bizjak 2d47e1be72 kdevelop: 5.0.3 -> 5.0.4 (#23788) 2017-03-12 16:49:24 +01:00
Franz Pletz 12f3006861
vim: 8.0.0329 -> 8.0.0442 2017-03-11 08:14:28 +01:00
Gauthier POGAM--LE MONTAGNER acd8ede120 atom: 1.14.4 -> 1.15.0 2017-03-10 15:53:04 +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
Michael Alan Dorman cc5bb40c1c melpa-packages: 2017-03-06 2017-03-06 16:18:14 -05:00
Michael Alan Dorman 192bc411b0 melpa-stable-packages: 2017-03-06 2017-03-06 16:18:14 -05:00
Michael Alan Dorman 5ff2a924c6 elpa-packages: 2017-03-06 2017-03-06 16:18:14 -05:00
Frank Lanitz 69ca4dec31 Geany: 1.29 -> 1.30 2017-03-05 15:53:41 +01:00
Shea Levy 81db3f2b0b nix-buffer: 2.2.0 -> 2.3.0 2017-03-05 06:35:34 -05:00
zraexy 7582da5d8b eclipse: import builder instead of callPackage
Switched from callPackage to import so that dependencies are passed
instead of being grabbed from pkgs.

[Bjørn: wrap overlong line.]
2017-03-05 11:27:50 +01:00
ndowens cd18b65432 hexcurse: 1.58 -> 1.60.0 2017-03-05 09:37:25 +01:00
Shea Levy eaa4b5e216 nix-buffer: 2.1.0 -> 2.2.0 2017-03-04 13:47:40 -05:00
Michael Raskin 8eccd34f10 vim_configurable: enable ximSupport by default 2017-03-03 21:20:19 +01:00
Tim Steinbach 45a86b0816 Merge pull request #23387 from Kendos-Kenlen/atom
atom: 1.14.3 -> 1.14.4
2017-03-02 08:25:15 -05:00
Thomas Tuegel 60d1915b61
melpa-stable-packages: 2017-03-01 2017-03-02 07:24:02 -06:00
Thomas Tuegel 00f28d74c9
melpa-packages: 2017-03-01 2017-03-02 07:23:49 -06:00
Thomas Tuegel b955f27ad9
elpa-packages: 2017-03-01 2017-03-02 07:23:19 -06:00
Gauthier POGAM--LE MONTAGNER 869bc1c07e atom: 1.14.3 -> 1.14.4 2017-03-02 13:44:47 +01:00
David Terry fdd436b3e4 vscode: 1.9.1 -> 1.10.0 2017-03-01 23:35:05 +01:00
Shea Levy b0cff50983 nix-buffer: 2.0.0 -> 2.1.0 2017-03-01 12:59:48 -05:00
Shea Levy 1c4d8de99b nix-buffer: 1.2.3 -> 2.0.0 2017-03-01 07:41:08 -05:00
Gauthier POGAM--LE MONTAGNER 83644ee24d idea.rubymine: 2016.3.1 -> 2016.3.2 2017-02-28 22:45:36 +01:00
Bjørn Forsman 81de55118d
eclipse: add aliases for "latest" versions
Add aliases like "eclipse-cpp = eclipse-cpp-46" so that user
configurations can point to "eclipse-cpp" and have it not regularly
break as nixpkgs is updated.
2017-02-27 20:30:17 +01:00
Thomas Tuegel 127bf18a35
extra-cmake-modules: Lift Qt dependency 2017-02-27 11:49:46 -06:00
Thomas Tuegel 4f2e7a0424
Separate Qt 5 packages from dependent libraries 2017-02-27 11:49:04 -06: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
Thomas Tuegel 0ed156a216 Merge pull request #22977 from ttuegel/triage-kde4
Remove KDE 4 desktop packages
2017-02-25 12:21:44 -06:00
Thomas Tuegel 0757d49800
Remove kde4.kdevelop
- Already updated to KDE 5 in Nixpkgs
2017-02-24 16:48:32 -06:00
romildo f67a097488 idea.clion: 2016.3.2 -> 2016.3.3 2017-02-23 16:55:18 -03:00
Profpatsch 8e54fced98 flpsed: ghostscript patch, fixes, new url
gs was called at runtime, fix the execvp call.
The url changed to its own domain.
A little face-lift for the package code.
2017-02-23 18:52:30 +01:00
Jascha Geerds 11d86725df idea-ultimate: 2016.3.3 -> 2016.3.4 2017-02-23 15:07:59 +01:00
Joachim F 2379d5e537 Merge pull request #23033 from mdorman/emacs-updates
Automated emacs package updates
2017-02-21 16:27:00 +01:00
Michael Alan Dorman e2487c26b4 melpa-packages: 2017-02-20
Removals:
 - malabar-mode: removed from melpa
2017-02-20 20:18:21 -05:00
Michael Alan Dorman 602fbdbf48 melpa-stable-packages: 2017-02-20
Removals:
 - malabar-mode: removed from melpa
2017-02-20 20:18:20 -05:00
Michael Alan Dorman c5d211df4c elpa-packages: 2017-02-20 2017-02-20 20:18:20 -05:00
Rafael de F. Ferreira 1daf49ccf4 idea-community: 2016.3.3 -> 2016.3.4 2017-02-20 21:25:20 +01:00
Graham Christensen 69a0e9ea11 Merge pull request #22985 from Kendos-Kenlen/master
idea.webstorm: 2016.3.2 -> 2016.3.3
2017-02-20 10:01:31 -05:00
Frederik Rietdijk ffe6935ea8 kile: 2016-10-24 -> 2017-02-09 2017-02-20 11:44:14 +01:00
Gauthier POGAM--LE MONTAGNER 326fa70896 idea.webstorm: 2016.3.2 -> 2016.3.3 2017-02-19 03:10:50 +01:00
Tim Steinbach 376b377775
atom: 1.14.1 -> 1.14.3 2017-02-17 16:13:18 -05:00
Graham Christensen b3c6449e13 Merge pull request #22844 from LnL7/vim-8.0.0329
vim: 8.0.0075 -> 8.0.0329
2017-02-15 21:27:43 -05:00
Daiderd Jordan d2d12c2f4c
vim: 8.0.0075 -> 8.0.0329 2017-02-15 21:00:59 +01:00
Robert Helgesson 0969569902
eclipse-plugin-yedit: init at 1.0.20.201509041456 2017-02-15 20:53:37 +01:00
Aycan iRiCAN 2ce7dd7fbb emacs: fix sha256 hashes of savannah patches 2017-02-15 18:33:01 +03:00
Thomas Tuegel d440052b64 Merge pull request #22787 from mdorman/emacs-updates
Automated emacs package updates
2017-02-14 12:49:50 -06:00
Eelco Dolstra 314dd9215b Merge pull request #16654 from awakenetworks/parnell/setcap-wrappers
Adding setcap-wrapper functionality to Nix
2017-02-14 16:25:06 +01:00
Michael Alan Dorman 25a2f90731 melpa-packages: 2017-02-13
Removals:
 - ebib-handy: removed from melpa
 - goose-theme: repository removed
2017-02-14 06:55:38 -05:00
Michael Alan Dorman cd90c7fe79 melpa-stable-packages: 2017-02-13 2017-02-14 06:55:36 -05:00
Michael Alan Dorman 58b5c49ddd elpa-packages: 2017-02-13 2017-02-14 06:55:34 -05:00
Michael Alan Dorman 5ebf37f749 org-packages: 2017-02-13 2017-02-14 06:55:32 -05:00
Robert Helgesson 08779a71e9
eclipse-plugin-jdt: 4.6 -> 4.6.2 2017-02-14 00:32:58 +01:00
Parnell Springmeyer 9e36a58649
Merging against upstream master 2017-02-13 17:16:28 -06:00
Robert Helgesson 486b9be579
eclipse-plugin-scala: use stable download URL
Unfortunately, the latest release does not appear to be available
through a stable URL.
2017-02-14 00:03:19 +01:00
Thomas Tuegel 74041a42a9
shimbun: init at 20170203.647 2017-02-13 16:02:14 -06:00
Shea Levy 6651c72df1 proofgeneral_HEAD: Bump 2017-02-11 21:01:56 -05:00
Joachim F 8d0e16a08e Merge pull request #22641 from vrthra/kakoune-2017-02-09
kakoune: 2016-12-30 -> 2017-02-09
2017-02-11 20:15:23 +01:00
Langston Barrett a749b73ff8
ne: migrate from (broken) tetex to texlive
related: #21770.  vcunat re-indented the longDescription.
2017-02-11 17:57:32 +01:00
Peter Hoeg 5e0dbfe931 Merge branch 'master' into f/nvim-qt 2017-02-11 11:46:37 +08:00
Rahul Gopinath 4f74f9158a kakoune: 2016-12-30 -> 2017-02-09 2017-02-10 14:06:28 -08:00
Thomas Tuegel dc75530f26
Merge branch 'emacs-packages' 2017-02-10 13:12:12 -06:00
Thomas Tuegel ae160b582c
melpa-packages: init w3m at 20170203.647 2017-02-10 13:11:45 -06:00
Thomas Tuegel cc79f1808c
melpa-stable-packages 2017-02-10 2017-02-10 12:47:51 -06:00
Peter Hoeg f0d0e21a5e neovim-qt: clean up 2017-02-11 02:39:15 +08:00
Thomas Tuegel 8bddf6d6ab Merge pull request #22514 from peterhoeg/f/emacs
emacs: make gtk3 default
2017-02-10 11:48:50 -06:00
Thomas Tuegel c2a369b809 Merge pull request #22531 from ambrop72/kdevplatform-fix1
kdevplatform: Add patch to fix build with newer KF5.
2017-02-10 11:46:20 -06:00
Thomas Tuegel 9fbb76c14f
melpa-packages 2017-02-10 2017-02-10 11:29:22 -06:00
Thomas Tuegel 2ead5dfe85
elpa-packages 2017-02-10 2017-02-10 11:26:25 -06:00
Frederik Rietdijk c9f4d714fe Merge pull request #22417 from edanaher/move-neovim-remote
neovim-remote: move from python-packages to /neovim/neovim-remote.
2017-02-10 17:47:25 +01: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
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
Franz Pletz fb9117efa6 Merge pull request #18488 from chris-martin/md5-2
Miscellaneous packages: Use sha256 instead of md5 (part 2)
2016-09-13 07:11:43 +02:00
Kirill Boltaev bccd75094f treewide: explicitly specify gtk and related package versions 2016-09-12 18:26:06 +03:00
Shea Levy 38f074435a melpa: Fix nix-buffer and inherit-local, add stable 2016-09-12 06:12:16 -04:00
Bjørn Forsman 3e5fe418f8 android-studio: enable Android emulator support
These changes are needed to be able to run the system emulator (QEMU)
from Android Studio. In addition to the added dependencies,
$LD_LIBRARY_PATH had to be changed from --set to --prefix, so that libGL
is found (on NixOS).
2016-09-12 10:55:07 +02:00
Edward Tjörnhammar e917e47045
android-studio: 2.1.2.0 -> 2.1.3.0 2016-09-11 20:38:20 +02:00
Chris Martin ffc3e24e0b cua-mode: md5->sha256 2016-09-10 13:43:18 -04:00
Edward Tjörnhammar 443204aa70
idea.idea14-ultimate: use base32 hash 2016-09-10 19:38:52 +02:00
Edward Tjörnhammar 505cee5c77
idea.idea-{community,ultimate}: 2016.2.3 -> 2016.2.4 2016-09-10 19:38:52 +02:00
Shea Levy c6460fb0cb melpa: Add inherit-local, bump f.el 2016-09-10 11:25:21 -04:00
Peter Pickford efb5206701 eclipse-plugin-rustdt: init at 0.6.2
[Bjørn: sort alphabetially in plugins.nix, capitalize meta.description,
add space around assignment operator, indent multi-line string.]
2016-09-09 15:15:00 +02:00
Tuomas Tynkkynen 290db94f04 Merge remote-tracking branch 'upstream/master' into staging 2016-09-09 02:40:47 +03:00
Thomas Tuegel 291666e248
Merge branch 'emacs-packages' 2016-09-08 13:34:53 -05:00
Thomas Tuegel c61026de5d
melpaStablePackages.jade: disable due to missing dependency 2016-09-08 13:32:38 -05:00
Thomas Tuegel f7910efe6e
melpaPackages.jade: disable due to missing dependency 2016-09-08 13:28:03 -05:00
Thomas Tuegel a0d1981046
orgPackages 2016-09-08 2016-09-08 13:11:34 -05:00
Thomas Tuegel 023e4db785
elpaPackages 2016-09-08 2016-09-08 13:09:47 -05:00
Thomas Tuegel 1ac28f798c
melpaStablePackages 2016-09-08 2016-09-08 13:02:16 -05:00
Bjørn Forsman 190b1d1ffc
eclipse-plugin-cdt: 8.8.0 -> 9.0.1 2016-09-08 18:09:20 +02:00
Bjørn Forsman b6be2e9dc2
eclipse-plugin-gnuarmeclipse: 2.11.1 -> 3.1.1 2016-09-08 18:09:10 +02:00
Thomas Tuegel ed94adc66b
melpaPackages 2016-09-07 2016-09-08 09:49:17 -05:00
Joachim F b082f75f4d Merge pull request #18392 from romildo/upd.idea
clion: 2016.2.1 -> 2016.2.2
2016-09-08 14:59:55 +02:00
Peter Pickford 7c8f19b31b eclipse-cpp-46: init at 4.6.0
[Bjørn: fix hash for i686-linux (was wrong length), remove backward
compatibility attribute alias (not needed for new packages), change
commit message (this adds a package, it doesn't upgrade / change
existing one).]
2016-09-08 12:09:54 +02:00
Brandon Dimcheff b8022cad3c atom: 1.9.9 -> 1.10.1 2016-09-07 09:15:38 -04:00
José Romildo Malaquias bc2b19867e clion: 2016.2.1 -> 2016.2.2 2016-09-07 07:40:58 -03:00
Edward Tjörnhammar e051ac665c
android-studio: add 32bit zlib for api 22 2016-09-07 06:47:40 +02:00
Chris Martin a2c0fdc503 eclipse-sdk-35: md5->sha256 2016-09-05 20:09:46 -04:00
Eelco Dolstra 78178d5854 systemd: Separate lib output
This moves libsystemd.so and libudev.so into systemd.lib, and gets rid
of libudev (which just contained a copy of libudev.so and the udev
headers). It thus reduces the closure size of all packages that
(indirectly) depend on libsystemd, of which there are quite a few (for
instance, PulseAudio and dbus). For example, it reduces the closure of
Blender from 430.8 to 400.8 MiB.
2016-09-05 19:17:14 +02:00
Shea Levy d1154edf44 proofgeneral_HEAD: bump 2016-09-05 11:43:10 -04:00
Anthony Cowley 51b404b048 emacs24Macport: fix SDK version issue 2016-09-04 20:32:25 -04:00
Stefan Siegl 330d791d1f idea.clion1: init at 1.2.5
(moved from idea.clion)
2016-09-04 13:30:05 +02:00
Stefan Siegl 46343d6dad idea.clion: 1.2.5 -> 2016.2.1 2016-09-04 13:29:15 +02:00
Stefan Siegl f7234f9961 idea.idea-community: 2016.2 -> 2016.2.3 2016-09-04 13:26:18 +02:00
Stefan Siegl c1fcb007c4 idea.idea-ultimate: 2016.2.2 -> 2016.2.3 2016-09-04 13:25:25 +02:00
Stefan Siegl 01b4cf5de5 idea.ruby-mine8: init at 8.0.4 2016-09-04 13:21:55 +02:00
Stefan Siegl 4d528db13a idea.ruby-mine7: init at 7.1.5
(moved from idea.ruby-mine)
2016-09-04 13:20:59 +02:00
Stefan Siegl a83498317c idea.ruby-mine: 7.1.5 -> 2016.2.2 2016-09-04 13:19:38 +02:00
Stefan Siegl cd9a44200d idea.pycharm-community: 2016.1.3 -> 2016.2.2 2016-09-04 13:04:05 +02:00
Stefan Siegl 18ed1bebae idea.pycharm-professional: 2016.1.3 -> 2016.2.2 2016-09-04 13:02:03 +02:00
Stefan Siegl 195759e2ec idea.webstorm11: init at 11.0.4 2016-09-04 12:58:38 +02:00
Stefan Siegl fdbb72eb0a idea.webstorm10: init at 10.0.5
(moved from idea.phpstorm)
2016-09-04 12:56:58 +02:00
Stefan Siegl c2851bc841 idea.webstorm: 10.0.5 -> 2016.2.2 2016-09-04 12:55:50 +02:00
Franz Pletz ecdfa4109e Merge pull request #18098 from stesie/phpstorm-2016.2.1
idea.phpstorm: 10.0.4 -> 2016.2.1
2016-09-04 00:30:38 +02:00
Stefan Siegl 7a5239fddc idea.phpstorm10: init at 10.0.4
(moved from idea.phpstorm)
2016-09-03 21:48:02 +02:00
Miguel Madrid b6116539be nano: 2.6.3 -> 2.7.0 (#18201) 2016-09-02 23:26:02 +02:00
Parnell Springmeyer 98c058a1ee Adapting everything for the merged permissions wrappers work. 2016-09-01 19:21:06 -05:00
Tuomas Tynkkynen 6dc452313a vim_configurable: vimNoX broken on Darwin, but bring back vimHugeX works
D'oh, I was careless.
2016-09-01 20:49:32 +03:00
Tuomas Tynkkynen 3364230d56 Disable bunch of non-compiling packages on Darwin
These ones have a "Last successful build" timestamp in the 2014s or
2015s. Presumably no one will notice if we now stop building them.

softether_4_18              2015-09-20  http://hydra.nixos.org/build/39418483
lensfun                     2014-09-30  http://hydra.nixos.org/build/39394104
net_snmp                    2015-09-20  http://hydra.nixos.org/build/39410553
djview                      2015-08-11  http://hydra.nixos.org/build/39413233
libmusicbrainz2             2015-09-20  http://hydra.nixos.org/build/39410106
fox_1_6                     2014-05-07  http://hydra.nixos.org/build/39410858
libofx                      2015-09-24  http://hydra.nixos.org/build/39423507
yacas                       2014-09-30  http://hydra.nixos.org/build/39393150
iomelt                      2014-09-30  http://hydra.nixos.org/build/39408486
softether                   2015-09-20  http://hydra.nixos.org/build/39425800
mp4v2                       2014-09-30  http://hydra.nixos.org/build/39421899
virtuoso7                   2014-09-21  http://hydra.nixos.org/build/39415206
man_db                      2015-04-23  http://hydra.nixos.org/build/39404236
libdiscid                   2014-09-30  http://hydra.nixos.org/build/39412202
zabbix22.agent              2014-09-21  http://hydra.nixos.org/build/39412149
vidalia                     2015-08-06  http://hydra.nixos.org/build/39411500
libmtp                      2015-09-20  http://hydra.nixos.org/build/39419199
wxGTK29                     2015-09-20  http://hydra.nixos.org/build/39415296
ncmpcpp                     2015-11-06  http://hydra.nixos.org/build/39404455
libtorrent                  2014-09-21  http://hydra.nixos.org/build/39394646
shishi                      2014-03-21  http://hydra.nixos.org/build/39418874
ocaml_3_12_1                2014-09-30  http://hydra.nixos.org/build/39392996
djview4                     2015-08-11  http://hydra.nixos.org/build/39427799
vimNox                      2014-05-23  http://hydra.nixos.org/build/39397012
ttfautohint                 2015-08-06  http://hydra.nixos.org/build/39398330
libraw                      2015-09-24  http://hydra.nixos.org/build/39402271
wxGTK30                     2015-09-20  http://hydra.nixos.org/build/39401871
sbcl_1_2_5                  2015-09-20  http://hydra.nixos.org/build/39426091
prover9                     2014-09-30  http://hydra.nixos.org/build/39406476
rcs                         2015-08-25  http://hydra.nixos.org/build/39392037
gpac                        2015-09-24  http://hydra.nixos.org/build/39399470
virtuoso6                   2014-09-30  http://hydra.nixos.org/build/39398651
xlslib                      2015-09-24  http://hydra.nixos.org/build/39410387
ucommon                     2015-03-27  http://hydra.nixos.org/build/39414040
commoncpp2                  2014-09-30  http://hydra.nixos.org/build/39420117
virtuoso                    2014-09-21  http://hydra.nixos.org/build/39399978
miniHttpd                   2014-09-30  http://hydra.nixos.org/build/39392925
mpack                       2014-09-26  http://hydra.nixos.org/build/39399535
nbd                         2014-09-26  http://hydra.nixos.org/build/39401367
newsbeuter-dev              2014-07-29  http://hydra.nixos.org/build/39406259
gimp_2_8                    2015-09-20  http://hydra.nixos.org/build/39436271
gimp                        2015-09-20  http://hydra.nixos.org/build/39435976
zabbix20.agent              2014-09-30  http://hydra.nixos.org/build/39393242
gst_all_1.gst-plugins-good  2015-09-20  http://hydra.nixos.org/build/39408506
ocaml_4_00_1                2014-09-30  http://hydra.nixos.org/build/39399526
inadyn                      2014-09-30  http://hydra.nixos.org/build/39426389
gst_all_1.gst-plugins-bad   2015-09-20  http://hydra.nixos.org/build/39392970
zabbix.agent                2014-09-30  http://hydra.nixos.org/build/39421412
cmake-2_8                   2015-09-24  http://hydra.nixos.org/build/39399443
liblastfm                   2015-08-06  http://hydra.nixos.org/build/39421812
newsbeuter                  2014-07-29  http://hydra.nixos.org/build/39396605
sdcv                        2014-09-26  http://hydra.nixos.org/build/39412928
2016-09-01 20:39:33 +03:00
Thomas Tuegel 017691035d melpaStablePackages 2016-08-31 2016-08-31 17:27:06 -05:00
Thomas Tuegel 432b57b853 melpaPackages 2016-08-30 2016-08-31 16:49:10 -05:00
Thomas Tuegel 8c21a4ee2e
elpaPackages 2016-08-30 2016-08-30 12:24:08 -05:00
Thomas Tuegel 6b20d5b75e Merge pull request #18113 from layus/emacs-closure-size
emacs24: nuke extra references to buildInputs
2016-08-30 08:17:58 -05:00
Guillaume Maudoux 5b00f4037e emacs24: nuke extra references to buildInputs 2016-08-30 11:00:54 +02:00
Michiel Leenaars fd69c7d944 manuskript: cleanup of install 2016-08-29 22:55:45 +02:00
Stefan Siegl e170f3a4f7 idea.phpstorm: 10.0.4 -> 2016.2.1 2016-08-29 22:49:56 +02:00
obadz 92d929c884 Merge branch 'master' into staging 2016-08-28 14:48:02 +01:00
Graham Christensen 1a64734bc6 Merge pull request #18031 from ambrop72/kdevelop5.0
kdevelop: Init at 5.0
2016-08-28 08:58:21 -04:00
Ambroz Bizjak 529fbe05a3 kdevelop: Init at 5.0
Doesn't use Okteta yet.
2016-08-28 14:15:54 +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 1102352a79 Merge pull request #17906 from garbas/neovim-0.1.5-update
neovim: 0.1.4 -> 0.1.5 (and related dependencies)
2016-08-27 17:44:34 +02:00
Joachim F cb2bb72de5 Merge pull request #17996 from Ptival/vscode-1.4.0
vscode: 1.2.1 -> 1.4.0
2016-08-27 10:51:54 +02:00
Domen Kožar 9d22624eb0 Merge pull request #17976 from despairblue/patch-1
atom: 1.9.6 -> 1.9.9
2016-08-26 12:05:41 +02:00
Valentin Robert 4370f2583f vscode: 1.2.1 -> 1.4.0 2016-08-25 13:16:51 -07:00
Jaka Hudoklin b0b02c848d Merge pull request #17668 from steveeJ/manuskript
manuskript: init at 0.3.0
2016-08-24 23:44:08 +02:00
Danny Arnold d0e86a0d48 atom: 1.9.6 -> 1.9.9 2016-08-24 23:29:24 +02:00
Robin Gloster 5e3294d6a6 idea.idea-ultimate: 2016.2 -> 2016.2.2
Clean up builds on the way.
2016-08-24 20:42:29 +00:00
obadz 78b7529ee3 Merge branch 'master' into staging 2016-08-24 11:57:44 +01:00
Daniel Peebles 3f337a2b23 Merge pull request #17685 from matthewbauer/darwin-misc2
Darwin misc. fixes
2016-08-24 11:52:27 +02:00