Commit graph

106814 commits

Author SHA1 Message Date
Jörg Thalheim e715283dca Merge pull request #25306 from NickHu/teamviewer
teamviewer: 12.0.71510 -> 12.0.76279
2017-04-29 15:26:36 +02:00
Michael Raskin f44165f484 Merge pull request #25303 from tohl/master
sbcl updates
2017-04-29 13:31:14 +02:00
Michael Raskin 4a207b1dd8 gimpPlugins.resynthesizer: fix build 2017-04-29 12:41:31 +02:00
Michael Raskin 316d0ff7c7 libsamplerate: update license information (in effect since 0.1.9) 2017-04-29 12:34:11 +02:00
Michael Raskin adadf7e5ce androidsdk: meta.url to meta.homepage 2017-04-29 12:26:16 +02:00
Franz Pletz bd27594bc6
promtheus-node-exporter: 0.13.0 -> 0.14.0 2017-04-29 11:44:39 +02:00
Robin Gloster 154dacde20
grafana: 4.1.2 -> 4.2.0 2017-04-29 11:43:17 +02:00
Jörg Thalheim ffdc1b0ab0 Merge pull request #25310 from jerith666/command-not-found-is-a-dir
fix 'command-not-found: is a directory' error
2017-04-29 11:41:22 +02:00
Robin Gloster edb1ea055e
confluence module: needs bash for health checks 2017-04-29 11:15:59 +02:00
Jörg Thalheim fddeacfe4c Merge pull request #25316 from ericsagnes/pkg-update/ibus-mozc
ibus-engines.mozc:  2.17.2313.102 -> 2.20.2673.102
2017-04-29 11:14:00 +02:00
Jörg Thalheim 6af952fac8
rtkit: fix meta attr 2017-04-29 10:49:12 +02:00
Jörg Thalheim 6318a0c64c Merge pull request #25318 from ericsagnes/feat/stdenv-metacheck
stdenv-generic: add meta attributes checks
2017-04-29 10:48:00 +02:00
Peter Simons d1008a9a5f Merge pull request #25299 from ahmedtd/fix-wrap-gapps-hook
wrapGAppsHook: Correct `wrapProgram` invocations
2017-04-29 10:33:52 +02:00
Jaka Hudoklin 85d16bd7af Merge pull request #25312 from calvertvl/update-xpra-2_0_2
xpra: 2.0.1 -> 2.0.2
2017-04-29 10:33:32 +02:00
Eric Sagnes 7004919243 stdenv-generic: add meta attributes checks 2017-04-29 17:07:01 +09:00
Eric Sagnes 54d05a5700 fcitx-engines.mozc: 2.17.2313.102.1 -> 2.18.2612.102.1 2017-04-29 15:34:48 +09:00
Eric Sagnes 424f175546 ibus-engines.mozc: 2.17.2313.102 -> 2.20.2673.102 2017-04-29 15:26:22 +09:00
Dan Peebles 90b9719f4f treewide: fix the remaining issues with meta attributes 2017-04-29 04:24:34 +00:00
Victor Calvert 5539f8acfa xpra: 2.0.1 -> 2.0.2 2017-04-28 23:39:19 -04:00
Matt McHenry 48a3e1a88d fix 'command-not-found: is a directory' error 2017-04-28 23:11:21 -04:00
Dan Peebles 1a4ca220e1 treewide: fix assorted issues revealed by the meta checker
Turns out a couple of the licenses were wrong, as well as being strings.
2017-04-28 23:07:42 -04:00
Andrew Miloradovsky e5652b8436 planner: 0.14.6 -> 20170429
Many improvements were performed during the last 5+ years,
since the release: mostly minor fixes but *a lot* of them!

Plus, corrected and expanded the meta a little bit.
2017-04-29 02:13:57 +00:00
Daniel Peebles 76137a801d Merge pull request #25304 from copumpkin/check-meta
stdenv-generic: add meta attribute checking
2017-04-28 21:55:30 -04:00
Nick Hu 90c5bf8c58 teamviewer: 12.0.71510 -> 12.0.76279 2017-04-29 00:29:18 +01:00
Dan Peebles 32ae4bfc20 stdenv-generic: add meta attribute checking
This is turned off by default but I think we should fix all packages to
respect it and then turn it on by default
2017-04-28 18:12:18 -04:00
Tomas Hlavaty f1cf8125f0 sbcl: enable threadSupport also on aarch64-linux 2017-04-28 23:51:58 +02:00
Tomas Hlavaty 6e53534c2f sbcl: 1.3.16 -> 1.3.17 2017-04-28 23:51:53 +02:00
André-Patrick Bubel ce6eb0cbbe
udiskie: 1.5.1 -> 1.7.0 2017-04-28 22:55:39 +02:00
Joachim F 2b22dc303e Merge pull request #25241 from womfoo/bump/asterisk
update asterisk-stable and asterisk-lts
2017-04-28 21:54:19 +01:00
Louis Taylor 7e29ead375
krita: 3.1.2.1 -> 3.1.3 2017-04-28 21:28:42 +01:00
Taahir Ahmed 2cd342cfb3 wrapGAppsHook: Correct wrapProgram invocations
This change fixes several defects in the way `wrapGAppsHook` selected
the executable to wrap.

Previously, it would wrap any top-level files in the target `/bin` and
`/libexec` directories, including directories and non-executable
files.  In addition, it failed to wrap files in subdirectories.

Now, it uses `find` to iterate over these directory hierarchies,
selecting only executable files for wrapping.
2017-04-28 15:24:50 -05:00
Michael Weiss 1273f414a7 display-managers: Fix the xsession parameters
The xsession script was called with inconsistent (depending on the
display managers) and wrong parameters. The main reason for this where
the spaces the parameter syntax. In order to fix this the old syntax:
$1 = '<desktop-manager> + <window-manager>'
Will be replaced with a new syntax:
$1 = "<desktop-manager>+<window-manager>"

This assumes that neither "<desktop-manager>" nor "<window-manager>"
contain the "+" character but this shouldn't be a problem.

This patch also fixes the quoting by using double quotes (") instead of
single quotes (') [0].

Last but not least this'll add some comments for the better
understanding of the script.

[0]: https://specifications.freedesktop.org/desktop-entry-spec/latest/ar01s06.html
2017-04-28 22:00:14 +02:00
Lancelot SIX e1a82bd39e
pythonPackages.django_1_11: init at 1.11
This it the LTS release and will receive security updates for 3 years.

See https://docs.djangoproject.com/en/1.11/releases/1.11/
2017-04-28 21:55:45 +02:00
Lancelot SIX 72966154b3
pythonPackages.django-compat: 1.0.13 -> 1.0.14 2017-04-28 21:55:44 +02:00
Lancelot SIX 453da61547
pythonPackages.django_guardian: 1.4.6 -> 1.4.8 2017-04-28 21:55:44 +02:00
Lancelot SIX b8ee0d54aa
libidn2: 2.0.1 -> 2.0.2
See https://lists.gnu.org/archive/html/info-gnu/2017-04/msg00011.html
for release information
2017-04-28 21:38:12 +02:00
lassulus 87a4615e27 nixos/stage1: add copytoram support 2017-04-28 20:48:09 +02:00
Maximilian Güntner 76d8811d8a
youtube-dl: 2017.04.17 -> 2017.04.28 2017-04-28 20:06:40 +02:00
Peter Simons 5c25c33a05 wrapGAppsHook: Revert "Correct wrapProgram invocations"
This reverts commit 8b9f153bb9 of
https://github.com/NixOS/nixpkgs/pull/25183 because it breaks builds of
packages that don't install both a "bin" and a "libexec" directory. See
https://github.com/NixOS/nixpkgs/pull/25183#issuecomment-298064769 for more
details.
2017-04-28 20:01:33 +02:00
Gabriel Ebner 1d8c6aa5f2 Merge pull request #25291 from periklis/topic_fix_emscripten
emscripten: fix closure-compiler path
2017-04-28 19:19:41 +02:00
Periklis Tsirakidis db6ba4dee7 emscripten: fix closure-compiler path 2017-04-28 18:54:47 +02:00
Vincent Laporte 752351e889 ocamlPackages: make explicit some version requirements 2017-04-28 16:19:58 +00:00
Vincent Laporte 1bacfb4637 ocamlPackages.cppo: 1.3.2 -> 1.5.0 2017-04-28 16:19:57 +00:00
Vincent Laporte 2e75b4b479 ocamlPackages.ocurl: propagate its curl dependency 2017-04-28 16:19:57 +00:00
Vincent Laporte 8ab3a2a232 Revert "ocamlPackages.llvm: fix hash"
This reverts commit 0c8cf28091.
2017-04-28 16:19:57 +00:00
Eelco Dolstra e042db5e41
nixUnstable: 1.12pre5152_915f62fa -> 1.12pre5308_2f21d522 2017-04-28 17:55:53 +02:00
Pascal Wittmann c03d1df5b8 Merge pull request #25110 from iSma/fix/trackpoint-scrolling-etps-elantech
Add Elantech ETPS/2 Trackpoint (ThinkPad Yoga 260)
2017-04-28 15:46:39 +02:00
schneefux 6adc79d72b wallabag: 2.1.6 -> 2.2.2 (#25120) 2017-04-28 14:27:44 +01:00
Domen Kožar 330e800496
nixos: hydra: sync with upstream hydra module 2017-04-28 14:51:25 +02:00
Pascal Wittmann 959fadb86e yesod-auth-oauth2: jailbreak because of outdated dependencies 2017-04-28 14:40:26 +02:00