Commit graph

5853 commits

Author SHA1 Message Date
Vladimír Čunát 5d2e884aa1 pidgin: minor update 2.10.7 -> .8, including CVE-2013-6484
Also switch no newer libstartup-notification, add license and platforms.
2014-02-01 08:44:07 +01:00
Rob Vermaas 54288f5cfe Update hipchat 2014-01-31 16:30:51 +01:00
Rob Vermaas d5b2ea44f3 Merge pull request #1622 from urv/master
calibre: upgrade from 1.20.0 to 1.21.0
2014-01-31 01:46:36 -08:00
Domen Kožar 15f74d0769 Merge pull request #1639 from iyzsong/gimp
gimp: wraped with PYTHONPATH, fix #223
2014-01-31 00:12:03 -08:00
Domen Kožar 7c70ef4dee Merge pull request #1638 from wkennington/cache.mumble
Add more configurable options to mumble
2014-01-31 00:03:20 -08:00
Song Wenwu 1c83b079d2 gimp: wrap plugins with PYTHONPATH, fix #223 2014-01-31 14:05:53 +08:00
William A. Kennington III 9e8a6a24f0 murmur: Add ice support and small fixes
This patch adds optional ICE support to murmur which is enabled by
default. Additionally, it cleans up some of the expression similar to
the fixes added the mumble.
2014-01-30 22:34:21 -06:00
William A. Kennington III 2ec67167d9 mumble: Small Fixups and add support for disabling speechd
This patch adds a collection of changes to clean up the mumble
expression as well as add support for disabling the external speech
dispatcher from being compiled in.
2014-01-30 19:35:11 -06:00
Rickard Nilsson e28c0da32e sane-backends: Add extra source url
It seems alioth.debian.org has some problem (login needed for download), so
I've added a pkgs.fedoraproject.org url.
2014-01-30 12:26:11 +01:00
Peter Simons 1124a4ab08 haskell-git-annex: update to version 5.20140129 2014-01-30 08:32:41 +01:00
Domen Kožar 409677fbd2 mailpile: update dev version 2014-01-29 18:57:16 +01:00
Petr Rockai 2062abfd4f Merge branch 'yubikey' of git://github.com/Calrama/nixpkgs 2014-01-29 18:54:07 +01:00
Moritz Maxeiner b0d2f0e3f0 Add myself as a maintainer for ykpers and libyubikey 2014-01-29 18:05:17 +01:00
aszlig e18cd2f8ae
chromium: Update all channels to latest versions.
This closes #1623, and updates _all_ channels to the corresponding
latest upstream versions.

Thanks to @wizeman for opening the pull request noted above and for
another update in between, @aristidb for fixing the patcheShebangs issue
and @shlevy for notifying me about the build failure in stdenv-updates
in the first place.

Sorry to everyone for my inactivity lately.

The following changes were needed in order to build those new releases:

 * Patch out /bin/echo to allow building with all options enabled.
 * Always use GN from the source tree.
 * Remove import of depot_tools for version 34.
 * Drop version 32 specific stuff.

With this commit, the following new upstream versions are introduced:

stable: 32.0.1700.77 -> 32.0.1700.102 (builds fine, tested)
beta:   32.0.1700.19 -> 33.0.1750.46  (builds fine, tested)
dev:    33.0.1712.4  -> 34.0.1809.0   (build broken with gnome_keyring)

The dev version requires a more recent version gnome_keyring and thus
won't build if gnomeKeyringSupport is set to true. I haven't tested this
build without gnomeKeyringSupport yet, so it might be broken and will be
fixed later.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-01-29 13:23:30 +01:00
aszlig e3cb9e5e5f
tkabber: Merge main package with site plugins.
The site plugins are released alongside the main Tkabber sources, so it
makes no sense to have them in a separate package (which also introduces
an impurity). In addition, both packages share the same makefile
structure, so it really makes sense to merge them.

Before people might get worried about my decision to enable those
plugins by default: Since version 1.0, Tkabber is no longer loading
_all_ available plugins, but gives you a menu (Plugins Management) to
selectively enable plugins (whereas all plugins are disabled by
default).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-01-29 13:23:29 +01:00
aszlig 3a5334f853
tkabber: Properly wrap all scripts in $out/bin.
Alongside "tkabber", there is also "tkabber-remote", which uses the same
variables as the main script and thus needs to be wrapped the same way
as well.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-01-29 13:23:29 +01:00
aszlig aae2bab821
tkabber: Don't set a default theme.
If people still want the ocean-deep theme, it can still be set by using:

tkabber.override { theme = "ocean-deep"; }

But by default we should not set a theme, so the user will get the same
result as everyone who installs the upstream version.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-01-29 13:23:29 +01:00
aszlig 1212d0be22
tkabber+plugins: Update to upstream version 1.0.
After several years, Tkabber finally got a new release.

The highlights are:

 * Completely rewritten Tkabber internals
 * Dropped Tcl/Tk 8.3 support. Now Tcl/Tk 8.4 is required
 * Partial IPv6 support (requires Tcl/Tk 8.6)
 * Switched from TclGPGME to TclGPG for encryption and signing
 * Added new connection method BOSH (XEP-0124 and XEP-0206)
 * Disabled SSLv2 and enabled TLSv1 TLS options
 * Added user nicknames (XEP-0172) support.
 * Updated the CAPTCHA forms (XEP-0158) support
 * Added metacontacts (XEP-0209) support
 * Implemented multiple proxy profiles
 * Implemented remote controlling from a locally executed script
 * Added new plugins: floatingcontact, poker
 * Rewritten most plugins to support disabling and unloading on the fly
 * A few interface enhancements (search in MUC affiliations lists, proxy
   management)
 * Many fixes and enhancements

The detailed changelogs can be found at:

http://svn.xmpp.ru/repos/tkabber/tags/1.0/tkabber/ChangeLog
http://svn.xmpp.ru/repos/tkabber/tags/1.0/tkabber-plugins/ChangeLog

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-01-29 13:23:28 +01:00
Peter Simons e9a66cada6 Merge pull request #1626 from pSub/dwb-update
Updated dwb
2014-01-29 03:30:49 -08:00
Pascal Wittmann 9c9c883cb9 Updated dwb to HEAD and used the current date as version number, because dwb has no version numbers. 2014-01-29 12:00:13 +01:00
Eelco Dolstra 91ab556236 amdadl-sdk: Don't build on Hydra
Since it uses requireFile, it won't build.  Likewise for cgminer which
depends on amdadl-sdk.
2014-01-29 11:53:39 +01:00
Arvin Moezzi 03857fe2ec calibre: upgrade from 1.20.0 to 1.21.0 2014-01-29 02:26:11 +01:00
Petr Rockai f88de3b091 quvi: Update the CLI tool to version 0.9.5. 2014-01-28 22:08:02 +01:00
Petr Rockai 5878ffa55b quvi: Update to current upstream (0.9.4). 2014-01-28 21:48:52 +01:00
Petr Rockai 4124bb9ff5 Adopt more packages. 2014-01-28 18:11:00 +01:00
Petr Rockai 6f5be260b4 Adopt packages. 2014-01-28 17:31:17 +01:00
Peter Simons 63ec2bec8f haskell-git-annex: update to version 5.20140127 2014-01-28 14:59:46 +01:00
Rob Vermaas 3f56d9f4b4 Add keepassx 2.0alpha5, contributed by Thomas Tuegel. 2014-01-27 21:55:04 +01:00
Wojciech Danilo c50314dc38 Added SublimeText3 support. SublimeText2 and SublimeText3 can be installed side by side.
They provide 'sublime', 'sublime2' and 'sublime3' commands. SublimeText3 has lower precedense than SublimeText2
because its in beta mode (for over a year now)
2014-01-27 20:50:08 +01:00
Eelco Dolstra 2e70c14061 rcs: Update to 5.9.2 2014-01-27 17:58:26 +01:00
Rok Garbas e6e2459f59 Merge pull request #1581 from offlinehacker/pkgs/docker/add
Add docker
2014-01-27 04:18:11 -08:00
Jaka Hudoklin cc33c351b8 Add docker 2014-01-27 00:56:51 +01:00
mornfall 2fa71787f5 Merge pull request #1603 from aristidb/master
fix chromium chroot build
2014-01-26 09:03:19 -08:00
Aristid Breitkreuz 4417dd33c2 fix chromium chroot build 2014-01-26 18:02:03 +01:00
Edward Tjörnhammar 960b58d280 wish fix for ssvnc (close #1560)
tcl deps change? causes wish to be missing
this corrects the wish path to use the one from tk
2014-01-26 15:52:00 +01:00
Song Wenwu ef460bd170 puredata: update to 0.45-4
Cf. #1515.
2014-01-26 10:19:19 +01:00
Domen Kožar a7d0a53d9e merge 2014-01-26 09:58:47 +01:00
Vladimír Čunát bf8b81f538 lyx: bugfix update 2.0.6 -> .7 2014-01-26 00:59:59 +01:00
Vladimír Čunát 64c44fa508 weston: fix build by updating (after wayland update)
Also add dbus support, which seemed potentionally important to me.
2014-01-26 00:42:17 +01:00
Domen Kožar fab72d88c9 telepahty-logger: add gobject introspection support 2014-01-26 00:17:18 +01:00
Peter Simons e2a858379d haskell-git-annex: update to version 5.20140116 2014-01-26 00:02:33 +01:00
Peter Simons 5fefec3944 pspp: update from 0.8.1 to 0.8.2 2014-01-25 20:58:49 +01:00
Eelco Dolstra f03ca20916 libreoffice: Fix path to the JDK 2014-01-25 18:29:21 +01:00
Petr Rockai cf7ee03377 photivo: Fix paths. 2014-01-25 18:08:47 +01:00
Petr Rockai 2953c39409 photivo: Update. 2014-01-25 18:08:47 +01:00
Cillian de Róiste 3ee043da54 pianobooster: patch to build with gcc4.7, wrap it so it finds libGL.so.1
Also add linux as a platform.

Patches from:
https://github.com/gbin/gbin-overlay/tree/master/media-sound/pianobooster
2014-01-25 17:54:57 +01:00
Petr Rockai ed5bd26574 STP: Simple Theorem Prover (a SMT solver for bitvectors & arrays). 2014-01-25 16:33:12 +01:00
Petr Rockai e3fae16a29 emacs: Allow non-GTK X11 builds (--with-x-toolkit=lucid). 2014-01-25 16:30:14 +01:00
Petr Rockai 251fc454ba mpc: (mpd client) Update to 0.25. 2014-01-25 16:30:14 +01:00
Eelco Dolstra 07a3993e14 libreoffice: Fix path to Ant 2014-01-25 14:19:42 +01:00