Commit graph

64117 commits

Author SHA1 Message Date
Ambroz Bizjak 58fd4f672f Chromium: Update and build fixes.
Changes included:
- Update versions.
- Use gyp package not gyp_svn1977.
- Remove icu from buildInputs, since this causes a build error due to inferference with use_system_icu=false.
- Remove the hack that inserts the absolute path into gyp files, and pass `--depth .` to gyp. This resolves the `third_party/angle` gyp error.
- Do a normal copy of the source code not a symlink copy. This resolves some link error where the symlinks interfere with relative paths (seems like because gyp resolves symlinks first). Note, this used to be worked around with the absolute path insertion hack.
- Change the bucketURL in update.nix to https (for more secure updates).
2015-06-11 18:23:58 +02:00
Rickard Nilsson 7a0ca52267 scollector: Change type of collectors to allow proper merging 2015-06-11 16:49:43 +02:00
Daiderd Jordan fb19019af7 pythonPackages.trollius: disable the tests that fail on darwin 2015-06-11 16:24:10 +02:00
Luca Bruno fbfdc71e1f libical: fix crash when TZDIR is empty, and add non-nixos zoneinfo paths. Closes #8285 2015-06-11 15:49:29 +02:00
Rok Garbas e1683eeff1 lsof: url is behind auth. changed downloaded url for lsof 2015-06-11 14:54:30 +02:00
Daiderd Jordan 61531556d8 remove hardcoded clang 2015-06-11 14:42:55 +02:00
Daiderd Jordan 020f466ef4 disable tests for pythonPackages.trollius 2015-06-11 14:42:55 +02:00
Daiderd Jordan c7a73dbbdb removed unnecessary patch 2015-06-11 14:42:55 +02:00
Daiderd Jordan c7f36cb5f0 fix neovim on darwin 2015-06-11 14:42:55 +02:00
Daiderd Jordan 8ffce0888c fix luaPackages.luabitop on darwin 2015-06-11 14:42:55 +02:00
Daiderd Jordan 414d6d9e87 fix unibilium on darwin 2015-06-11 14:42:55 +02:00
Daiderd Jordan a51e9610e7 fix libtermkey on darwin 2015-06-11 14:42:55 +02:00
Luca Bruno 63bb4f919c Update evolution and evolution-data-server 2015-06-11 14:31:53 +02:00
Rickard Nilsson 8a7c23456d jetty: Update from 9.2.5 to 9.2.11 2015-06-11 13:33:32 +02:00
Pascal Wittmann 9aa07ac846 sourceforge: remove unreachable mirrors 2015-06-11 12:28:46 +02:00
Luca Bruno 84327822e1 gnome-latest.sh: use bash, it doesn't work with sh 2015-06-11 12:27:50 +02:00
Peter Simons 84dfce0bc0 mercurial: install bash completion 2015-06-11 12:07:15 +02:00
Peter Simons 414d71c499 haskell-cron-compat: unnecessary fork of 'cron' that doesn't compile anyway 2015-06-11 11:52:27 +02:00
Peter Simons 283b75910a haskell-Win32: mark broken on systems other than Cygwin 2015-06-11 11:52:27 +02:00
Peter Simons 2f6c8127f5 uhc: update to version 1.1.9.1 2015-06-11 11:52:26 +02:00
Peter Simons 9e04c74d95 haskell-bitx-bitcoin: disable the test suite which tries to access the network 2015-06-11 11:52:26 +02:00
Peter Simons 1c31a4660a haskell-pipes-mongodb: disable the test suite which tries to access the network 2015-06-11 11:52:26 +02:00
Peter Simons d9461e945f hackage-packages.nix: update to bab92d665c with hackage2nix revision c3122d617e69efe091549cec44d578bba41515f1 2015-06-11 11:52:22 +02:00
Pascal Wittmann 681b9bf9f9 Merge pull request #8284 from eduarrrd/photoqt
photoqt: 1.1.0.1 -> 1.2
2015-06-11 11:36:45 +02:00
Domen Kožar a06bb18ce5 Merge pull request #8274 from k0ral/lsof
lsof: 4.87 -> 4.88
2015-06-11 11:26:18 +02:00
Domen Kožar 8f28742315 Merge pull request #8251 from lancelotsix/fix_networkx
Fix pythonPackages.networkx
2015-06-11 11:24:40 +02:00
Rok Garbas 19248c309a neovim: uses vimUtils to make it configurable like vim_configurable is
- vimAlias argument , when true, will create a @out/bin/vim symlink
- configure argument, which will configure neovim the same way as it does
  vim_configurable. eg.: ~/.nixpkgs/config.nix

    {

      packageOverrides = pkgs : with pkgs; rec {
        vimg = neovim.override {
          vimAlias = true;
          configure = {
            customRC = ''
              set spell
            '';
            vam.pluginDictionaries = [
              { names = [ "youcompleteme" "ctrlp"]; }
            ];
          };
        };
      };

     }

Enjoy!
2015-06-11 10:48:29 +02:00
Pascal Wittmann 6125f583e6 redis: update from 3.0.1 to 3.0.2, fixes CVE-2015-4335 2015-06-11 10:46:57 +02:00
Pascal Wittmann 2700715567 global: update from 6.4 to 6.5 2015-06-11 10:46:57 +02:00
Domen Kožar fdc83edd08 Removing python-packages-generated.nix
It was an experiment by @garbas in 2014 that has been forgotten
because of other, newer experiments.

Packages also weren't updated so we shouldn't let them rot in nixpkgs.
2015-06-11 10:42:15 +02:00
Domen Kožar 4227b13af6 pypy: 2.5.1 -> 2.6.0 2015-06-11 10:42:14 +02:00
Eduard Bachmakov 11f0f3cba9 photoqt: 1.1.0.1 -> 1.2
remove no longer necessary patch
2015-06-10 21:47:50 -04:00
Rok Garbas f2d7f573af neovim: adding python2 and python3 support
neovim:
- possibility to extend neovim (via .override) and passing extraPythonPackages
  or extraPython3Packages
- neovim's python interpreter can be found as nvim-python / nvim-python3
- wrapping nvim binary and setting `g:python_host_prog` and
  `g:python3_host_prog` via --cmd flag

python-packages.nix fixes:
- ordereddict builds for py26 and uses disabled argument to tell this
- trollius builds on all python platforms except 3.4 (where is included in
  standard librarary)
- neovim builds on all python platforms
2015-06-11 02:54:10 +02:00
Arseniy Seroka 81225f1002 Merge pull request #8280 from rycee/update/fira
Version updates of 'fira' and 'fira-mono'.
2015-06-11 01:43:56 +02:00
Arseniy Seroka c698c2709c Merge pull request #8276 from k0ral/glances
glances: 2.3 -> 2.4.2
2015-06-11 01:41:46 +02:00
Mateusz Kowalczyk 1cc999e09d Merge branch 'youtube-dl' of https://github.com/KaiSforza/nixpkgs 2015-06-11 00:36:00 +01:00
Jascha Geerds 117dfac3d1 gnome-pomodoro: Fix meta description 2015-06-11 00:58:51 +02:00
William Giokas 51ce297187 youtube-dl: make a python package
This allows youtube-dl to support all versions of python, and be built
correctly even when the python version is overridden by the user.

An alias to youtube-dl has been added which points to the default python
version's youtube-dl.

Also, ffmpeg has been made into an optional dependency. If ffmpeg is set
to 'null' then it will not be built and there will be no wrapper for it
either. An extra package, youtube-dl-light, is the same as youtube-dl
but without the ffmpeg dependency.
2015-06-10 15:50:17 -07:00
William A. Kennington III 502a19b2b4 nixos/grub: Support labeling efi bootloaders with independent id's 2015-06-10 15:47:08 -07:00
William A. Kennington III bb23251c90 java: Fix jre derivations 2015-06-10 15:33:22 -07:00
Robert Helgesson 3b95f89735 Update package 'fira-mono' to version 3.203. 2015-06-11 00:07:35 +02:00
Robert Helgesson 50bf92623d Update package 'fira' to version 4.103. 2015-06-11 00:07:35 +02:00
Rok Garbas 1c3585e411 pythonPackages.livestreamer: fix builds for py33 and py34 2015-06-11 00:06:52 +02:00
Rok Garbas 4970aa6f46 pythonPackages: fix apscheduler 2015-06-11 00:06:52 +02:00
Rok Garbas adbed3fb6a pythonPackages.neovim: new package added 2015-06-11 00:06:52 +02:00
William A. Kennington III 93ddc18a59 Make jdk / jre derivations installable 2015-06-10 14:24:23 -07:00
vbgl 9d88a15ab4 Merge pull request #8275 from k0ral/mpc
mpc: 0.26 -> 0.27
2015-06-10 22:37:48 +02:00
Peter Simons 59d98da246 Merge pull request #8273 from k0ral/git
git: 2.4.1 -> 2.4.2
2015-06-10 21:40:13 +02:00
William A. Kennington III c891134b77 nixos/grub: Prevent module errors and make gfxmode configurable 2015-06-10 11:50:35 -07:00
William A. Kennington III aece1407d5 pulseaudio: Add a flag for supporting 32-bit 2015-06-10 11:50:35 -07:00