1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
Commit graph

16659 commits

Author SHA1 Message Date
Franz Pletz c2257506ae
weechat: 1.6 -> 1.7 2017-01-30 04:13:16 +01:00
Franz Pletz f68b7be364
brackets: 1.7 -> 1.8 2017-01-30 01:16:26 +01:00
Franz Pletz 0adf664210
neomutt: 20161126 -> 20170128 2017-01-30 01:16:18 +01:00
Franz Pletz eadb9ce15f
notmuch: 0.23.4 -> 0.23.5 2017-01-30 01:16:15 +01:00
Joachim F 9f9f983913 Merge pull request #22251 from gnidorah/rambox
rambox: 0.4.5 -> 0.5.3
2017-01-29 23:13:59 +01:00
Benjamin Saunders b02681a3d2 purple-hangouts-hg: 2016-10-01 -> 2016-12-22 2017-01-29 23:12:33 +01:00
Peter Simons 456b9f849d Merge pull request #22219 from Hodapp87/master
RStudio: Optionally allow packages from custom R environment
2017-01-29 21:13:58 +01:00
Thomas Tuegel 76985ad2a7 Merge pull request #22245 from ttuegel/dropbox-grsecurity
dropbox: use `paxmark m` to fix Dropbox when grsecurity enabled
2017-01-29 13:04:23 -06:00
Graham Christensen 96f242b8a7 Merge pull request #22266 from ttuegel/firefox-bin-hashes
firefox-bin: update hashes for 51.0.1
2017-01-29 12:24:32 -05:00
Robin Gloster be08ada0e5 Merge pull request #22272 from rycee/bump/git-hub
git-hub: 0.10 -> 0.11.0
2017-01-29 17:26:57 +01:00
Peter Hoeg 5867045469 terragrunt: 0.9.3 -> 0.9.6 2017-01-29 17:12:57 +01:00
Robert Helgesson 41a0d05872
git-hub: 0.10 -> 0.11.0
Includes fixes for CVE-2016-7793 and CVE-2016-7794.
2017-01-29 17:04:57 +01:00
Tom Doggett fe6c4eb8e6
gcalcli: init at 3.4.0 2017-01-29 17:00:05 +01:00
Thomas Tuegel ca7a4ec552
firefox-bin: update hashes for 51.0.1 2017-01-29 08:44:18 -06:00
Robin Gloster 2fdfb123a0
Revert "qgis: enableParallelBuilding"
This reverts commit 632934862b.

Still sometimes fails on hydra
2017-01-29 15:20:07 +01:00
Lenz Weber eba33cbf54 rambox: 0.4.5 -> 0.5.3 2017-01-29 10:34:17 +03:00
Thomas Tuegel a903c9c8e3
dropbox: use paxmark m to fix Dropbox when grsecurity enabled 2017-01-28 17:40:04 -06:00
Lluís Batlle i Rossell 8d5b2e66bd Updating shotcut to 17.01 and fixing its jobs 2017-01-28 20:12:51 +01:00
Lluís Batlle i Rossell 91686f2d37 Add fixed cinelerra
I don't know what version to choose
2017-01-28 20:12:51 +01:00
Lluís Batlle i Rossell 20465bedee Updating shotcut and melt. 2017-01-28 20:12:51 +01:00
Lluís Batlle i Rossell aeb1dff13d Update scantailor 2017-01-28 20:12:51 +01:00
Vladimír Čunát 781c79182e
Merge #22220: termite: unbreak by packaging vte-ng 2017-01-28 08:56:53 +01:00
Marius Bergmann 1d6c853860 termite: unbreak by packaging vte-ng
termite broke when upgrading Gnome, as this removed a dependency from
the tree. I packaged this dependency (vte-ng) based upon the work of
@globin in https://github.com/NixOS/nixpkgs/issues/22026.
2017-01-28 01:06:24 +01: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
Jascha Geerds 5213e6326c terraform: 0.8.4 -> 0.8.5 2017-01-28 00:49:13 +01:00
aszlig 61b673c1f1
gajim: Enable running test suite
This is a bit more involved, because first of all, the tests aren't
distributed in the release tarball and second the test suite currently
doesn't work but there are fixes for it that get released in the next
upstream patch, so we cherry-pick the relevant commits as patches.

We now also switch to fetching the tarball directly from their GitLab
instance, because - as mentioned - it contains the tests and also
contains the icon.index file, which we already had included as a patch
and we can now drop it.

The URLs to the cherry-picked upstream commits are the following:

1f0d7387fd
491d32a2ec
46a19733d2

All of these commits are in the gajim_0.16 branch and are thus very
likely becoming part of Gajim 0.16.7.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @7c6f434c
2017-01-27 21:06:21 +01:00
Robin Gloster aa686fe5c3
gnutls33: remove 2017-01-27 18:37:24 +01:00
Graham Christensen 625680c9fc Merge pull request #22203 from taku0/firefox-bin-51.0.1
firefox, firefox-bin: 50.1.0 -> 51.0.1
2017-01-27 08:58:59 -05:00
Graham Christensen 6a8aa5361e Merge pull request #22202 from taku0/thunderbird-bin-45.7.0
thunderbird, thunderbird-bin: 45.6.0 -> 45.7.0 [Critical security fix]
2017-01-27 08:57:10 -05:00
taku0 403cb72d9a thunderbird, thunderbird-bin: 45.6.0 -> 45.7.0 2017-01-27 22:26:45 +09:00
taku0 0dbe492ca9 firefox, firefox-bin: 50.1.0 -> 51.0.1 2017-01-27 22:26:27 +09:00
Moritz Ulrich 3842e825a7
rawtherapee: 4.2.1025 -> 5.0 2017-01-27 11:28:46 +01:00
Graham Christensen 2427ba2a39 Merge pull request #22157 from MP2E/obs_studio_update
obs-studio: 0.15.2 -> 17.0.1
2017-01-26 21:37:01 -05:00
Graham Christensen 9df33ad764 Merge pull request #22185 from nocoolnametom/rtv-1.14.1
rtv: 1.13.0 -> 1.14.1
2017-01-26 21:31:36 -05:00
Graham Christensen f46c5b293b
qemu: 2.7 -> 2.8, drop 2.7 2017-01-26 20:23:40 -05:00
Tom Doggett 5a3035c587 rtv: 1.13.0 -> 1.14.1 2017-01-26 15:43:19 -08:00
Cray Elliott 2f367e0af7 discord: 0.0.13 -> 0.0.1
Despite the version number confusion, this is a new version of
discord-canary, but since the build is now public/official, the version
number has been reset and the canary suffix has been dropped.

Note that this means that the executable has been renamed from
DiscordCanary to Discord
2017-01-26 23:56:11 +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
Vladimír Čunát d1f73b8546
Merge #22171: wireshark: 2.2.3 -> 2.2.4 2017-01-26 14:32:55 +01:00
Vladimír Čunát a1af9cc1cf
gecko-mediaplayer: remove the dead project
It was breaking evaluation since 78fe72265.
2017-01-26 12:28:40 +01:00
Joachim F fc6e20eded Merge pull request #22129 from mdorman/emacs-updates
Automated emacs package updates
2017-01-26 12:10:38 +01:00
Lancelot SIX c99540d526
wireshark: 2.2.3 -> 2.2.4
This release fixes those security related issues:
- https://www.wireshark.org/security/wnpa-sec-2017-01.html
- https://www.wireshark.org/security/wnpa-sec-2017-02.html
2017-01-26 11:30:48 +01:00
Cray Elliott 2598d77968 obs-studio: 0.15.2 -> 17.0.1
upstream version scheme change, this is the equivalent of 0.17.1
2017-01-25 18:55:59 -08:00
Franz Pletz 78fe722656
gmtk: remove, source not available anymore 2017-01-26 03:52:49 +01:00
Franz Pletz a8a5d3dcf8
clipgrab: 3.6.1 -> 3.6.2 2017-01-26 03:52:48 +01:00
Tim Steinbach d258f054cd
atom: 1.13.0 -> 1.13.1 2017-01-25 17:22:55 -05:00
Dan Peebles ed83ec1b65 lkl: fix impure reference to /usr/bin/env 2017-01-25 21:30:59 +00:00
Pascal Wittmann cedca371c8
homebank: 5.1.2 -> 5.1.3 2017-01-25 22:16:26 +01:00
Kosyrev Serge 4f8b4069e5 quodlibet: rename to quodlibet, quodlibet-without-gst-plugins
The gst-plugin-less version is barely useful out of the box, so it is
the one that should be relegated to a less prominent spot in the namespace.
2017-01-25 21:33:55 +01:00
Peter Hoeg 0a4943a381 syncthing: 0.14.19 -> 0.14.21 2017-01-25 20:27:22 +01:00