Commit graph

16875 commits

Author SHA1 Message Date
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
Eelco Dolstra c20cc6d0b3
Excise use of importJSON
Putting information in external JSON files is IMHO not an improvement
over the idiomatic style of Nix expressions. The use of JSON doesn't
add anything over Nix expressions (in fact it removes expressive
power). And scattering package info over lots of little files makes
packages less readable over having the info in one file.
2017-01-30 11:44:08 +01:00
Orivej Desh e2f7d68d73 telegram-purple: 2016-03-17 -> 1.3.0 2017-01-30 06:02:26 +00:00
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
Tuomas Tynkkynen 424cfe7686 Merge remote-tracking branch 'upstream/master' into staging 2017-01-29 02:16:29 +02: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
Maximilian Bosch eda5bca00a geogebra: 5.0.271.0 -> 5-0-320-0 2017-01-28 17:33:20 +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
Christopher League c1c7d2894d vokoscreen: init at 2.5.0
vokoscreen is an easy to use screencast creator to record educational
videos, live recordings of browser, installation, videoconferences, etc.

It uses Qt5 and ffmpeg.
2017-01-27 16:08:34 -05: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
Tuomas Tynkkynen be0e48e48f Merge remote-tracking branch 'upstream/master' into staging 2017-01-27 02:18:44 +02: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
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
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
Christoph-Simon Senjak c84c720631 fixing gbsplay/default.nix 2017-01-26 00:41:54 +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
Christoph-Simon Senjak 74e6aa7de6 gbsplay: init at version 2016-12-17 2017-01-25 21:59:27 +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
Robin Gloster d7b17e8b1c
edbrowse: mark as broken 2017-01-25 20:12:42 +01:00
Robin Gloster dc52135d55
apvlv: 0.1 -> 0.1.5 2017-01-25 20:12:41 +01:00
Robin Gloster 6bc1f2f61c
ams-lv2: 1.1.0 -> 1.2.1 2017-01-25 20:12:41 +01:00
Robin Gloster 6d3f23d045
thunderbird: add patch to fix build with gcc6 2017-01-25 20:12:39 +01:00
Robin Gloster 45f1a914e8
audacity: fix build with gcc 6 2017-01-25 20:12:37 +01:00
Yorick van Pelt 2a939c4b21 streamlink: 0.0.2 -> 0.3.0 2017-01-25 19:12:49 +01:00
Vincent Laporte d40b680101 coq-8.4: fix build of ssreflect and mathcomp 2017-01-25 13:14:31 +00:00
vbgl 635ac15845 Merge pull request #21879 from vbgl/coq-clean
Coq: minor refactoring
2017-01-25 14:05:38 +01:00
Graham Christensen 04ae7febc8
cvs: patch against CVE-2012-0804 (heap overflow) 2017-01-25 07:24:19 -05: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
Vincent Laporte 798a87159b Coq: propagates the findlib package
So that Coq libraries that need it can easyly use it
2017-01-25 10:29:13 +00:00
Vincent Laporte 9b949be617 coq: minor refactoring 2017-01-25 10:29:13 +00:00
Vincent Laporte a30e8db9f0 coq: merge files 8.5.nix and 8.6.nix into default.nix 2017-01-25 10:29:13 +00:00
Graham Christensen 129e90a422 Merge pull request #22122 from peterhoeg/u/db
dropbox: 17.4.33 -> 18.4.32
2017-01-24 20:00:00 -05:00
Joachim Fasting 0501e49695
electrum: 2.7.12 -> 2.7.18
See https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES
2017-01-25 00:58:52 +01:00
Michael Raskin 30b51af27b Merge pull request #22108 from yorickvP/master
i3status: 2.10 -> 2.11
2017-01-24 21:35:11 +00:00
Michael Raskin 9977fb86a0 Merge pull request #22111 from romildo/upd.mkvtoolnix
mkvtoolnix: 9.6.0 -> 9.8.0
2017-01-24 21:34:16 +00:00
Michael Raskin 90b2621ee3 Merge pull request #22113 from romildo/upd.jwm
jwm: 1563 -> 1575
2017-01-24 21:29:57 +00:00
romildo b56d87c962 jwm: 1563 -> 1575 2017-01-24 19:19:34 -02:00
romildo e98aa7832c mkvtoolnix: 9.6.0 -> 9.8.0
- Update mkvtoolnix to v9.8.0
- Add a build dependency on drake, because it is not bundled with
  mkvtoolnix anymore since v9.8.0
2017-01-24 18:50:56 -02:00
Franz Pletz c9d5e5b34b
gitlab: 8.15.4 -> 8.16.1 2017-01-24 21:29:06 +01:00
Yorick van Pelt c91aa18070 i3status: 2.10 -> 2.11 2017-01-24 20:35:29 +01:00
Michael Raskin ae84dc0fdd Merge pull request #22094 from romildo/upd.cbatticon
cbatticon: 1.6.4 -> 1.6.5
2017-01-24 18:08:45 +00:00
Michael Raskin ecc42baeca Merge pull request #22090 from romildo/upd.hexchat
hexchat: 2.12.3 -> 2.12.4
2017-01-24 18:06:57 +00:00
Eelco Dolstra b6adec130b Merge pull request #22093 from taku0/firefox-bin-51.0
firefox-bin: 50.1.0 -> 51.0
2017-01-24 15:17:54 +01:00
romildo e8e5e640bb cbatticon: 1.6.4 -> 1.6.5 2017-01-24 11:43:11 -02:00
taku0 9c9424d316 firefox: 50.1.0 -> 51.0, firefox-esr: 45.6.0esr -> 45.7.0esr 2017-01-24 22:10:58 +09:00
romildo fee579701d hexchat: 2.12.3 -> 2.12.4
- Update hexchat to version 2.12.4
- Use sources from github, as the source at
http://dl.hexchat.net/hexchat/hexchat-2.12.4.tar.xz contains invalid symbolic
links in the directory 'build-aux'
- Run 'autogen.sh' to generate 'configure' and friends, as they are not
available in the distributed sources from github.
2017-01-24 11:00:41 -02:00
Jörg Thalheim 4785a19444 Merge pull request #22073 from romildo/upd.pcmanfm
{lib,pcman}fm: 1.2.4 -> 1.2.5
2017-01-24 10:48:56 +01:00
Benjamin Staffin be1b5c2a68 exercism: Broaden platforms to include darwin, etc 2017-01-23 21:54:38 -05:00
Jaka Hudoklin 06ad459f5b Merge pull request #22071 from LnL7/kubeadm
kubernetes: add kubeadm command
2017-01-24 02:06:09 +01:00
Peter Hoeg b960411637 dropbox: 17.4.33 -> 18.4.32 2017-01-24 08:58:01 +08:00
Graham Christensen ea9f5cedef Merge pull request #22030 from joncojonathan/update-jetbrains
Updated versions of various Jetbrains applications, including PHPStor…
2017-01-23 19:47:06 -05:00
Matthew Bauer 516300624e
emacs25Macport: use newer icons 2017-01-23 17:49:39 -06:00
romildo 4e2d940125 pcmanfm: 1.2.4 -> 1.2.5 2017-01-23 19:01:40 -02:00
Daiderd Jordan 0097db08d7
kubernetes: add kubeadm command 2017-01-23 21:13:31 +01:00
Tim Steinbach 6aae00edfc rkt: 1.22.0 -> 1.23.0 2017-01-23 17:56:46 +01:00
Arseniy Seroka 8156293bac Merge pull request #22053 from binarin/viber-6.5.5.1481
viber: 6.0.1.5 -> 6.5.5.1481
2017-01-23 18:42:11 +03:00
Jascha Geerds ebca0c5b1c Merge pull request #22055 from peterhoeg/u/tg
terragrunt: 0.9.1 -> 0.9.3
2017-01-23 15:46:40 +01:00
Alexey Lebedeff 0d7de0e431 viber: 6.0.1.5 -> 6.5.5.1481 2017-01-23 15:31:37 +03:00
taku0 28c3d7f868 firefox-bin: 50.1.0 -> 51.0 2017-01-23 21:12:22 +09:00
Peter Hoeg 17af9e98ae terragrunt: 0.9.1 -> 0.9.3 2017-01-23 19:01:40 +08:00
Jaka Hudoklin ab6f3609e1 Merge pull request #22048 from vdemeester/fix-docker-version-git-commit
Fixing the wrong Git Commit hash in docker version
2017-01-23 11:18:30 +01:00
Vincent Demeester d79fa8850a
Fixing the wrong Git Commit hash in docker version
`DOCKER_GITCOMMIT` needs to match the tagged commit used to build the
binary. The current commit refers to 1.12.1 and wasn't update each
time we updated the package. Using a variable near the version and
adding a comment so we don't forget to update next time.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-01-23 10:32:17 +01: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
Jean-Pierre PRUNARET 632934862b qgis: enableParallelBuilding 2017-01-22 17:15:24 +01:00
Jean-Pierre PRUNARET 8d4fc1a65e qgis: 2.16.2 -> 2.18.3 2017-01-22 17:14:47 +01:00
Bjørn Forsman 4b2f2ccf16 pencil: 2.0.18 -> 2.0.21 2017-01-22 01:08:14 +01:00
Charles Strahan d298a961f1 Merge pull request #21416 from cstrahan/mesos-1.1.0
mesos: 1.0.1 -> 1.1.0
2017-01-21 19:05:18 -05:00
Pascal Wittmann 6bf6026b65
filezilla: 3.23.0.2 -> 3.24.0 2017-01-21 22:56:15 +01:00
Jörg Thalheim 39f08c7465
gajim: fix patch url 2017-01-21 22:06:04 +01:00
vbgl 664d1d6dc9 Merge pull request #21261 from vbgl/uutf-1.0.0
Eliom 6 and various OCaml package updates
2017-01-21 20:23:28 +01:00
Vincent Laporte 1f0d5bfcf9 smplayer: 16.11.0 -> 17.1.0 2017-01-21 19:56:06 +01:00
Michael Raskin 46eecaf0d4 Merge pull request #21726 from rnhmjoj/palemoon
[WIP] palemoon: init at 27.0.3
2017-01-21 18:46:09 +00:00
Michael Raskin 80c1340b87 Merge pull request #22016 from rasendubi/w3m
w3m: fix package name
2017-01-21 18:22:09 +00:00
Robin Gloster 189f64d8e7
gnome3.20: fixup removal, mark termite as broken 2017-01-21 17:42:12 +01:00
Vincent Laporte 86b74fb76b alt-ergo: 0.99.1 -> 1.30 2017-01-21 13:44:41 +00:00
Vincent Laporte 8c928cd55a why3: 0.87.1 -> 0.87.3 2017-01-21 13:31:10 +00:00
Alexey Shmalko 09b3df542d
w3m: fix package name
nix-repl> builtins.parseDrvName "w3m-v0.5.3+git20161120"
{ name = "w3m-v0.5.3+git20161120"; version = ""; }

nix-repl> builtins.parseDrvName "w3m-0.5.3+git20161120"
{ name = "w3m"; version = "0.5.3+git20161120"; }
2017-01-21 15:02:02 +02:00
Ollie Charles 72a002f9d6 golden-cheetah: Switch to 3.4 stable 2017-01-21 12:26:30 +00:00
Jaka Hudoklin 4884fa4502 Merge pull request #20656 from vdemeester/docker_1_13
Update to docker 1.13.x
2017-01-21 12:19:06 +01:00
Daiderd Jordan 66c0b9d292 Merge pull request #19361 from schneefux/gogs
gogs: init at v0.9.97
2017-01-20 20:47:38 +01:00
Carles Pagès 305e3e27b6 yafc: remove
Some things are broken and it's no longer maintained.
2017-01-20 16:55:30 +01:00
Carles Pagès fd400ced6b Rename page to cpages to match github
I also updated the mail.
2017-01-20 16:55:29 +01:00
Vladimír Čunát 6b6553c768
Merge branch 'staging'
It contains security updates.  I somehow forgot to push this yesterday.
2017-01-20 16:33:59 +01:00
Franz Pletz 9b92a07843
treewide: use lib.maintainers for meta.maintainers 2017-01-20 15:44:28 +01:00
Michael Raskin ac27b9d836 Merge pull request #22001 from nlewo/qemu-cve
Qemu CVEs
2017-01-20 11:28:14 +00:00
Antoine Eiche 9f1514f086 qemu: fix several CVEs
- CVE 2016-9845
- CVE-2016-9846
- CVE-2016-9907
- CVE-2016-9912
2017-01-20 11:09:02 +01:00
Antoine Eiche 0bd3f82a67 qemu: fix the url of patch for CVE-2016-9921 and CVE-2016-9922 2017-01-20 11:02:22 +01:00
Gabriel Ebner 6c9f4a61be lean: 2017-01-14 -> 3.0.0 2017-01-20 10:59:54 +01:00
Michael Raskin 505b3f3c94 Merge pull request #21996 from nicknovitski/newsbeuter-darwin
Newsbeuter: fix darwin build and podbeuter download
2017-01-20 09:33:35 +00:00
Robin Gloster b81d07e6e6
ardour: 5.4 -> 5.5 2017-01-20 03:10:12 +01:00
Robin Gloster 7acadd6f9b
ardour{3,4}: remove due to build failures 2017-01-20 02:52:16 +01:00
Nick Novitski 489c593b68 newsbeuter: darwin build working and enabled 2017-01-20 14:10:59 +13:00
Nick Novitski 5fb2fc73db newsbeuter: podbeuter can download without segfaulting 2017-01-20 14:10:58 +13:00
Robin Gloster 0387e10928
gmuc: 0.7.2 -> 0.10.1 2017-01-20 00:35:35 +01:00
Robin Gloster f4bff9d633
freepv: 0.3.0_beta1 -> 0.3.0, fix build 2017-01-19 23:35:40 +01:00
Robin Gloster fa79441055
mysql-workbench: 6.3.7 -> 6.3.8
fixes #21226
2017-01-19 16:41:31 +01:00
Michael Raskin 03700daf07 ikiwiki: 3.20160905 -> 3.20170111 2017-01-19 11:33:17 +01:00
Michael Raskin 7f2769ff62 Merge pull request #21983 from jonmeredith/master
Add yubioath-desktop application and required pyscard module
2017-01-19 09:35:52 +00:00
Jörg Thalheim 91852be548 Merge pull request #21985 from ericsagnes/pkg-fix/styx-themes.agency
styx-themes.agency: fix version typo
2017-01-19 09:45:21 +01:00
Jörg Thalheim 3fdde25b4c Merge pull request #21962 from Mic92/gemdir
bundleEnv: Used gemdir for most applications now
2017-01-19 09:34:14 +01:00
Eric Sagnes 806d8c19ba styx-themes.agency: fix version typo 2017-01-19 16:30:43 +09:00
Vincent Laporte d1c3cc63e1 jabref: 3.6 -> 3.8.1 2017-01-19 05:54:05 +00:00
Jon Meredith d9340971d9 Add yubioath-desktop application and required pyscard module to support it 2017-01-18 19:13:31 -08:00
Daiderd Jordan 2b0ca8dc5d Merge pull request #21681 from matthewbauer/anki
Anki: Darwin support
2017-01-18 21:41:11 +01:00
Vincent Demeester 74d4d3e4f9
docker: 1.12.6 -> 1.13.0
- Update docker version to 1.13.0.
- Introduce now docker-proxy package (from libnetmork).
- Use overrideDerivation to set the correct version for docker.
- Update tini to make sure we can build it static.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-01-18 21:33:37 +01:00
Vladimír Čunát 0dc43ab9d6
virt-manager: fixup evaluation to unbreak Hydra
The package itself is probably still broken.  /cc @fridh e94d9cdfaa
2017-01-18 16:07:25 +01: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
Eric Sagnes 310219c524 styx: 0.4.0 -> 0.5.0 2017-01-18 16:31:12 +09:00
Matthew Bauer 0ede72738d
mplayer: add darwin platform 2017-01-17 19:49:05 -06:00
Jörg Thalheim 69c10e5290
gollum: use gemdir 2017-01-18 00:52:57 +01:00
Jörg Thalheim 9b688135ef
taskjuggler: use gemdir 2017-01-18 00:52:55 +01:00
Jörg Thalheim 202b953c92
bitbucket-server-cli: use gemdir 2017-01-18 00:52:54 +01:00
Jörg Thalheim 1da6ebc8f5
ledger-web: use gemdir 2017-01-18 00:52:53 +01:00
Jörg Thalheim 96d4d744a9
nix-shell: use gemdir 2017-01-18 00:52:53 +01:00
Jörg Thalheim 50a4b39b1e
jekyll: use gemdir 2017-01-18 00:52:53 +01:00
Jörg Thalheim 2871ff7d9b
timetrap: use gemdir 2017-01-18 00:52:52 +01:00
Jörg Thalheim dd91891bd9
gitlab: use gemdir 2017-01-18 00:52:52 +01:00
Jörg Thalheim 27f91b30aa
ppl-address-book: use gemdir 2017-01-18 00:52:51 +01:00
Jörg Thalheim 2cf82c0069
panamax_ui: use gemdir 2017-01-18 00:52:51 +01:00
Jörg Thalheim 8c70770e30
panamax_api: use gemdir 2017-01-18 00:52:47 +01:00
Joachim F 2723b3b0da Merge pull request #21956 from mdorman/emacs-updates
Automated emacs package updates
2017-01-17 22:33:53 +01:00
Dan Peebles 3ab26fdb70 lkl: update to d7470730 2017-01-17 18:40:58 +00: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
Michael Raskin c0608ba046 Merge pull request #21937 from NixOS/bitlbee-3.5
bitlbee: 3.4.2 -> 3.5
2017-01-17 09:38:18 +00:00
Kranium Gikos Mendoza 518c3a00b2 monero: 0.9.4 -> 0.10.1 2017-01-17 10:35:58 +01:00
Dan Peebles f1a9bc356e lkl: init 2017-01-16 21:24:32 +00:00
Pascal Wittmann 2ba9a67299
bitlbee: 3.4.2 -> 3.5 2017-01-16 20:42:53 +01:00
Michael Raskin 94568ed762 Merge pull request #21917 from fstamour/stumpwmv100
stumpwm: 0.9.9 -> 1.0.0
2017-01-16 09:45:33 +00: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
Michael Raskin 88f05e952d Merge pull request #21908 from loskutov/datagrip
datagrip: 2016.3 -> 2016.3.2
2017-01-16 09:44:20 +00: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
Peter Hoeg 9646a52a24 syncthing: 0.14.19 2017-01-16 12:40:28 +08:00
Francis St-Amour 3f3f0d978b stumpwm: 0.9.9 -> 1.0.0 2017-01-15 21:23:39 -05: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
Franz Pletz 6e079bdd60
gitlab: 8.13.5 -> 8.15.4 2017-01-15 17:27:28 +01:00
Jörg Thalheim 122da3dc79 Merge pull request #21903 from matthiasbeyer/add-git-crecord
git-crecord: init at 20161216.0
2017-01-15 14:38:15 +01:00
Matthias Beyer 7adf2ff42e
git-crecord: init at 20161216.0 2017-01-15 14:23:59 +01:00
Jörg Thalheim 803a56af26 Merge pull request #21902 from peterhoeg/f/tg
terragrunt: fix typo
2017-01-15 14:03:34 +01:00
Franz Pletz 5b5100c5ec
altcoins.stellar-core: fix evaluation 2017-01-15 14:02:38 +01:00
Maarten Hoogendoorn 6345b76b91 kubernetes: build-tools was renamed to build 2017-01-15 13:27:45 +01:00
Maarten Hoogendoorn e81f400ac4 kubernetes: Fix build
Disabled "mungedocs", which broke the build.
This appears to be a piece of development tooling to make sure that
the documentation is correct. We don't really care about that when we
a specific k8s version for NixOS.
2017-01-15 13:27:45 +01:00
Maarten Hoogendoorn ce9b34d3d4 kubernetes: 1.4.6 -> 1.5.2 2017-01-15 13:27:45 +01:00
Peter Hoeg 388371152a terragrunt: fix typo
In my earlier PR #21901, I had pushed the wrong local branch without a '$'.

Apologies @Mic92 - please apply.
2017-01-15 19:11:56 +08:00
Jörg Thalheim f8cf6ec6d0 Merge pull request #21901 from peterhoeg/u/tg
terragrunt: 0.8.0 -> 0.9.1
2017-01-15 09:13:09 +01:00
Peter Hoeg d6ac334826 terragrunt: 0.8.0 -> 0.9.1 2017-01-15 11:42:40 +08:00
Johannes Bornhold 37788f13b7 tryton: init at 4.2.1 2017-01-15 01:40:01 +01:00
rnhmjoj 61fe18d5b4
palemoon: init at 27.0.3 2017-01-14 20:44:47 +01:00
Robin Gloster 10b0a6d411
altcoins.stellar-core: assertion fails on i686 2017-01-14 18:38:57 +01:00
Clemens Lutz fe6e4e2464 makemkv: 1.9.10 -> 1.10.4 2017-01-14 18:33:35 +01:00
Vincent Laporte 139ed790da qarte: 3.2.0+146 -> 3.2.0+158 2017-01-14 17:04:51 +01:00
Vincent Laporte 503329e050 bluefish: 2.2.7 -> 2.2.9
And fix some missing icons
2017-01-14 16:33:02 +01:00
Emery Hemingway 2fe19b18e8
clerk: fix version string 2017-01-14 15:54:25 +01:00
Vincent Laporte 4e88fe4998 grass: fix build 2017-01-14 14:55:18 +01:00
Vincent Laporte d535b2df06 smtube: 16.1.0 -> 16.7.2 2017-01-14 14:09:20 +01:00
Vincent Laporte a04337d5c8 smplayer: 16.1.0 -> 16.11.0 2017-01-14 13:44:19 +01:00
Gabriel Ebner 5ad75554b6 lean: 2017-01-06 -> 2017-01-14 2017-01-14 09:37:48 +01:00
Jörg Thalheim 4008370992 Merge pull request #21863 from rycee/bump/google-talk-plugin
google-talk-plugin: 5.41.0.0 -> 5.41.3.0
2017-01-14 01:16:03 +01:00
Richard Lupton 0a3bd81648
kubernetes-helm: 2.1.2 -> 2.1.3 2017-01-13 22:48:36 +00:00
Pascal Wittmann 89dfe67f81 Merge pull request #21819 from AtnNn/isabelle
isabelle: 2016 -> 2016-1
2017-01-13 21:58:57 +01:00
Robert Helgesson 782e2fa807
google-talk-plugin: 5.41.0.0 -> 5.41.3.0 2017-01-13 20:24:24 +01:00
Michael Raskin bc2e81f610 i3blocks: fix platforms 2017-01-13 19:09:28 +01:00
Michael Raskin f30a854844 Merge pull request #21858 from MindTooth/tweak_i3blocks
i3blocks: specify supported platforms
2017-01-13 16:34:51 +00:00
Niclas Thall 15d36c1f0e spotify: 1.0.45 -> 1.0.47 (#21856) 2017-01-13 17:26:26 +01:00
Birger J. Nordølum 32f991f094
i3blocks: specify supported platforms 2017-01-13 17:09:42 +01:00
Maarten Hoogendoorn af299d94eb minikube: disable shell autocompletion; causes impurities.
Apparently the the generation of auto completion files depends on a
network connection. My `nix-build --pure` failed because of this.
Disabled autocompletion for now, given that minikube prints out lots of
documentaton if you provide partial commands.
2017-01-13 17:08:32 +01:00
Maarten Hoogendoorn 3cbc64d5bb minikube: 0.13.1 -> 0.15.0 2017-01-13 17:08:32 +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
Michael Raskin 740d857b5c Merge pull request #21839 from kierdavis/i3blocks-sysconfdir
i3blocks: search for config in correct system directory
2017-01-13 10:41:59 +00:00
Michael Raskin ee966005a7 Merge pull request #21842 from johbo/darwin-xournal-quartz
xournal: Support gtk with quartz or x11 backend
2017-01-13 10:38:56 +00:00
Linus Heckemann b91fa0f477 syncthing: remove runtime dependency on go
The hack used here is shamelessly stolen from buildGoPackage. If it is
going to be applied to more expressions, it may make sense to factor it
out so it can be shared.
2017-01-13 09:54:48 +00:00
Vincent Laporte 720c8e457c jackline: fix after uutf and notty updates 2017-01-13 06:56:58 +00:00
Johannes Bornhold 71aad4c494 xournal: Support gtk backend quartz on darwin 2017-01-12 22:55:23 +01:00
Kier Davis 90b3648f9c
i3blocks: search for config in correct system directory
The SYSCONFDIR variable used in the Makefile servers two purposes:

1) During buildPhase, it is hardcoded into the executable as one of
   the locations that will be searched for the i3blocks.conf config
   file. We want this set to "/etc", so that "/etc/i3blocks.conf"
   will be automatically loaded if it exists, as specified in the
   manpage.

2) During installPhase, it specifies the location that the sample
   i3blocks.conf should be installed to. We want this to be "$out/etc".

Case 2 was already handled correctly, but case 1 was not. This resulted
in i3blocks instead searching for i3blocks.conf in the default value of
SYSCONFDIR, which is "/usr/local/etc", a directory which generally does
not exist on NixOS. This commit remedies this problem by setting
SYSCONFDIR=/etc during buildPhase.

A minor stylistic fix (correcting a usage of "makeFlags" to "buildFlags"
in the expression) has also been applied in this commit.
2017-01-12 20:15:15 +00:00
Bjørn Forsman 05bb3fe22e avidemux: 2.6.16 -> 2.6.18 2017-01-12 20:13:12 +01:00
Thomas Tuegel ce26a4d3d4 Merge pull request #21826 from mdorman/emacs-updates
Automated emacs package updates
2017-01-12 06:48:36 -06:00
Graham Christensen f855f4a9e2 Merge pull request #21824 from peterhoeg/u/dropbox
dropbox: 16.4.30 -> 17.4.33
2017-01-12 07:29:45 -05:00
Ignat Loskutov c94c2666bb tdesktop: 0.10.19 -> 1.0.0
abbradar: add vdpau to fix the build, use qt56 explicitly

Closes #21821.
2017-01-12 15:27:24 +03:00
Aaron Bull Schaefer 715ff285b6 terraform: 0.8.2 -> 0.8.4 2017-01-12 07:29:17 +01: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 575b0352b9 Merge pull request #21818 from NeQuissimus/rkt_1_22_0
rkt: 1.21.0 -> 1.22.0
2017-01-11 20:21:37 -05:00
Peter Hoeg ef318d01e9 dropbox: 16.4.30 -> 17.4.33 2017-01-12 09:13:36 +08:00
Etienne Laurin 3d301e384e isabelle: 2016 -> 2016-1 2017-01-11 17:33:04 -05:00
Tim Steinbach 490c109928
rkt: 1.21.0 -> 1.22.0 2017-01-11 17:27:19 -05:00
Tim Steinbach f124cb7611
atom: 1.12.9 -> 1.13.0 2017-01-11 17:18:24 -05:00
Jörg Thalheim 5fa5ab0eed Merge pull request #21810 from volth/flashplayer-24.0.0.194
flashplayer: 24.0.0.186 -> 24.0.0.194
2017-01-11 22:31:04 +01:00
Daiderd Jordan 4488203d0c Merge pull request #20658 from matthewbauer/gimp-darwin
GIMP on Darwin (use Quartz)
2017-01-11 21:47:29 +01:00
volth a3778f6e87 flashplayer: 24.0.0.186 -> 24.0.0.194 2017-01-11 18:06:55 +00:00
Joachim F 104c3db659 Merge pull request #21202 from kierdavis/unigine-valley
unigine-valley: refactor
2017-01-11 18:39:05 +01:00
Frederik Rietdijk 85e170c2c1 linuxband: use python2 2017-01-11 18:25:10 +01:00
Frederik Rietdijk e94d9cdfaa virtmanager: use python2 2017-01-11 18:25:10 +01:00
Frederik Rietdijk e1cd8f0f96 zim: use python2 2017-01-11 18:25:10 +01:00
Frederik Rietdijk ba92ef0b32 gpodder: use python2 2017-01-11 18:25:09 +01:00
Jiří Daněk 0f83aa5167 idea-community: 2016.3 -> 2016.3.2 (#21807) 2017-01-11 16:36:25 +01:00
Graham Christensen 7158ef7514 Merge pull request #21805 from exi/update-ding
ding: 1.8 -> 1.8.1
2017-01-11 09:36:15 -05:00
Reno Reckling 4823b85a2b ding: 1.8 -> 1.8.1
The actual tar did not change for some reason, but the version did
change.
Also make the install a bit more verbose.
2017-01-11 15:34:52 +01:00
Michael Raskin 760edeb2b6 xfractint: init at 20.04p14 2017-01-11 14:14:07 +01:00
Franz Pletz 260d97ca25
runc: add patches to fix CVE-2016-9962 2017-01-11 12:11:29 +01:00
Franz Pletz 0aa4931671
runc: 2016-06-15 -> 1.0.0-rc2 2017-01-11 10:59:27 +01:00