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

3268 commits

Author SHA1 Message Date
Vladimír Čunát b1acaffe67 Merge branch 'master' into staging 2016-01-05 10:28:58 +01:00
lethalman b054851d18 Merge pull request #12082 from mogorman/hexchat
This fixes bug #10825 for hexchat.  Hexchat loads enchant library at …
2016-01-05 09:51:14 +01:00
Vladimír Čunát 7c879d342d Merge #10816: improve FreeBSD support 2016-01-05 09:50:10 +01:00
Matthew O'Gorman 067467edf3
hexchat: fix enchant dependency usage at runtime.
xchat: correctly use gtkspell for spell checking.
2016-01-04 20:11:20 -05:00
Shell Turner f229791454 freenet: rewrite wrapper to not depend on PATH 2016-01-05 01:06:54 +00:00
Tobias Geerinckx-Rice a133ef9a0c liferea, graphite service: fix typo (agregator -> aggregator) 2016-01-05 01:03:50 +01:00
Wei-Ming Yang 89fbb184d1 ostinato: add ostinato package in nixpkgs 2016-01-04 14:29:02 +08:00
Tobias Geerinckx-Rice f300b2861d rawdog: add myself as a maintainer 2016-01-04 04:23:32 +01:00
Tobias Geerinckx-Rice b2612d4a98 rawdog: 2.20 -> 2.21 2016-01-04 04:23:29 +01:00
Mateusz Kowalczyk 265f2b6e76 imapfilter: update from 2.5.7 to 2.6.3 2016-01-03 20:51:14 +00:00
Arseniy Seroka 371dd85c84 Merge pull request #12104 from taku0/firefox-bin-43.0.3
firefox-bin: 43.0.2 -> 43.0.3
2016-01-03 20:28:02 +03:00
Pascal Wittmann f8da54d83d surf: move to correct category 2016-01-03 15:49:55 +01:00
taku0 12a6fc722f firefox-bin: 43.0.2 -> 43.0.3 2016-01-03 20:03:53 +09:00
Nikolay Amiantov 6a862c5a61 mumble: enable parallel building 2016-01-03 03:30:32 +03:00
Nikolay Amiantov deda44195a Merge branch 'fix-murmur_git-build' of https://github.com/exi/nixpkgs
Closes #12052
2016-01-03 03:24:49 +03:00
Simon Vandel Sillesen fecea0b305 qbittorrent: 3.2.3 -> 3.3.1
* upstream has switched to qt5 as default, so also done here
* Adds a patch to use the qt lrelease tool correct
2016-01-02 22:47:28 +01:00
Michael Alan Dorman c140bd697b flashplayer: 11.2.202.554 -> 11.2.202.559 2016-01-01 14:03:08 -05:00
Michael Raskin a2f76a89bb gajim: 0.16.4 -> 0.16.5 2016-01-01 12:30:17 +03:00
Michael Raskin a2ddd89932 baresip: 0.4.15 -> 0.4.16 2016-01-01 12:30:17 +03:00
jeaye 047e8b5e80 Add SSL support to slrn 2016-01-01 11:38:49 +08:00
Reno Reckling 10a87beb7e murmur_git: fix failing build because of changed ice file paths 2015-12-31 20:01:41 +01:00
Reno Reckling 28fd7afd02 wireshark-qt: make wireshark-qt build and run again 2015-12-31 13:56:50 +01:00
Vladimír Čunát 468f698f60 rsync: security update 3.1.1 -> 3.1.2
This should fix CVE-2014-9512.
https://download.samba.org/pub/rsync/src/rsync-3.1.2-NEWS
2015-12-30 12:06:00 +01:00
Vladimír Čunát fff938f72a liferea: maintenance update 1.10.16 -> 1.10.17
Also refactor meta.
2015-12-30 10:59:02 +01:00
Domen Kožar 6da327b433 Chromium updates 2015-12-29 19:32:38 +01:00
Arseniy Seroka 9544823b6e Merge pull request #12014 from ehmry/ratox
ratox: fix src hash mismatch
2015-12-29 19:32:10 +03:00
Vladimír Čunát 08dd527cc7 Merge branch 'staging'
http://hydra.nixos.org/eval/1234895
The mass errors on Hydra seem transient; I verified ghc on i686-linux.
Only darwin jobs are queued ATM. There's a libpng security update
included in this merge, so I don't want to wait too long.
2015-12-29 17:14:35 +01:00
Charles Strahan b6c06e216b ruby: new bundler infrastructure
This improves our Bundler integration (i.e. `bundlerEnv`).

Before describing the implementation differences, I'd like to point a
breaking change: buildRubyGem now expects `gemName` and `version` as
arguments, rather than a `name` attribute in the form of
"<gem-name>-<version>".

Now for the differences in implementation.

The previous implementation installed all gems at once in a single
derivation. This was made possible by using a set of monkey-patches to
prevent Bundler from downloading gems impurely, and to help Bundler
find and activate all required gems prior to installation. This had
several downsides:

* The patches were really hard to understand, and required subtle
  interaction with the rest of the build environment.
* A single install failure would cause the entire derivation to fail.

The new implementation takes a different approach: we install gems into
separate derivations, and then present Bundler with a symlink forest
thereof. This has a couple benefits over the existing approach:

* Fewer patches are required, with less interplay with the rest of the
  build environment.
* Changes to one gem no longer cause a rebuild of the entire dependency
  graph.
* Builds take 20% less time (using gitlab as a reference).

It's unfortunate that we still have to muck with Bundler's internals,
though it's unavoidable with the way that Bundler is currently designed.
There are a number improvements that could be made in Bundler that would
simplify our packaging story:

* Bundler requires all installed gems reside within the same prefix
  (GEM_HOME), unlike RubyGems which allows for multiple prefixes to
  be specified through GEM_PATH. It would be ideal if Bundler allowed
  for packages to be installed and sourced from multiple prefixes.
* Bundler installs git sources very differently from how RubyGems
  installs gem packages, and, unlike RubyGems, it doesn't provide a
  public interface (CLI or programmatic) to guide the installation of a
  single gem. We are presented with the options of either
  reimplementing a considerable portion Bundler, or patch and use parts
  of its internals; I choose the latter. Ideally, there would be a way
  to install gems from git sources in a manner similar to how we drive
  `gem` to install gem packages.
* When a bundled program is executed (via `bundle exec` or a
  binstub that does `require 'bundler/setup'`), the setup process reads
  the Gemfile.lock, activates the dependencies, re-serializes the lock
  file it read earlier, and then attempts to overwrite the Gemfile.lock
  if the contents aren't bit-identical. I think the reasoning is that
  by merely running an application with a newer version of Bundler, you'll
  automatically keep the Gemfile.lock up-to-date with any changes in the
  format. Unfortunately, that doesn't play well with any form of
  packaging, because bundler will immediately cause the application to
  abort when it attempts to write to the read-only Gemfile.lock in the
  store. We work around this by normalizing the Gemfile.lock with the
  version of Bundler that we'll use at runtime before we copy it into
  the store. This feels fragile, but it's the best we can do without
  changes upstream, or resorting to more delicate hacks.

With all of the challenges in using Bundler, one might wonder why we
can't just cut Bundler out of the picture and use RubyGems. After all,
Nix provides most of the isolation that Bundler is used for anyway.

The problem, however, is that almost every Rails application calls
`Bundler::require` at startup (by way of the default project templates).
Because bundler will then, by default, `require` each gem listed in the
Gemfile, Rails applications are almost always written such that none of
the source files explicitly require their dependencies. That leaves us
with two options: support and use Bundler, or maintain massive patches
for every Rails application that we package.

Closes #8612
2015-12-29 09:30:21 -05:00
Emery b604318ad8 ratox: fix src hash mismatch 2015-12-29 11:44:07 +01:00
Domen Kožar 4e4931507b fix mesos build, fixes #11638 2015-12-28 22:28:38 +01:00
Charles Strahan 9e34985430 w3m: use Arch patches
Fix the built-in help (perl.patch)
  https://bugs.archlinux.org/task/45608

Properly link w3mimgdisplay to x11
  https://bbs.archlinux.org/viewtopic.php?id=196093

Fix rendering bug in w3mimgdisplay (w3m_rgba.patch)
  https://github.com/hut/ranger/issues/86

Don't ignore input tags with invalid types (form_unkown.patch)
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615843

Fix a segfault when using https (https.patch)
  https://bugzilla.redhat.com/show_bug.cgi?id=707994
2015-12-25 15:26:14 -05:00
Arseniy Seroka 93d26d7206 Merge pull request #11935 from taku0/thunderbird-bin-38.5.0
thunderbird-bin: 38.4.0 -> 38.5.0
2015-12-25 17:26:54 +03:00
Arseniy Seroka 6a9c0a4010 Merge pull request #11933 from taku0/firefox-bin-43.0.2
firefox-bin: 43.0.1 -> 43.0.2
2015-12-25 17:26:17 +03:00
taku0 66cddef221 thunderbird-bin: 38.4.0 -> 38.5.0 2015-12-25 00:21:01 +09:00
taku0 fe287dea9b firefox-bin: 43.0.1 -> 43.0.2 2015-12-24 23:08:28 +09:00
leenaars 767f145a60 blink: 1.4.1 -> 1.4.2 2015-12-24 14:41:23 +01:00
Tobias Geerinckx-Rice 9ecc0612f9 vnstat: add image output (gd) support 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice b8a7875d64 vnstat: 1.14 -> 1.15 & add longDescription
Changes:
- Fix: XML output had extra commas, broken since previous version
- Fix: unintended shared pointer modification in mosecs() sometimes resulted
  in wrong month name to be shown for the current month
- Fix: possible buffer overflow in /proc/net/dev parsing, requires corrupted
  content in /proc/net/dev or use of address sanitizer
- Use ANSI escape codes in -l and -tr modes for cursor location manipulation
  instead of printing backspaces, hide cursor while output is active
- Improve database import robustness
- Improve support for Asian UTF-8 date strings
- Replace hand written Makefiles with Autotools
- Add --alwaysadd parameter to daemon for allowing automatic addition of
  interfaces even if the database directory was populated during startup
2015-12-24 04:05:57 +01:00
Robin Gloster f8ee267576 w3m: do not always link to RAND_egd for openssl
This fixes the build for libressl >= 2.3 as RAND_egd has been removed as
it is insecure.
2015-12-23 22:10:01 +00:00
Franz Pletz cbada77b0b clawsMail: 3.13.0 -> 3.13.1 (CVE-2015-8614)
Fixes a remotely triggerable buffer overflow.
http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3557
Close #11910.
2015-12-23 18:48:38 +01:00
Thomas Tuegel 077a3102cc dropbox: 3.12.5 -> 3.12.6 2015-12-23 08:36:50 -06:00
Bob van der Linden 760ec896ae lsyncd: 2.1.5 -> 2.1.6 2015-12-20 21:56:28 +01:00
Thomas Tuegel 5ff1c58606 Merge pull request #11839 from ttuegel/qt-5.4
Qt infrastructure update
2015-12-20 08:11:52 -06:00
Thomas Tuegel 54bcdcc0a7 teamspeak_client: Qt 5 infrastructure update 2015-12-20 07:56:54 -06:00
Thomas Tuegel 143d6123dc qutebrowser: Qt 5 infrastructure update 2015-12-20 07:56:54 -06:00
Thomas Tuegel 1cd5505a9f telegram-qml: Qt 5 infrastructure update 2015-12-20 07:56:53 -06:00
Thomas Tuegel 126188be5c cutegram: Qt 5 infrastructure updates 2015-12-20 07:56:52 -06:00
Thomas Tuegel fc13f37f2c firestr: Qt 5 infrastructure update 2015-12-20 07:56:50 -06:00
Thomas Tuegel de5898a495 qtox: Qt 5 infrastructure update 2015-12-20 07:56:49 -06:00
Thomas Tuegel 249e5f732a linssid: Qt 5 infrastructure update 2015-12-20 07:56:49 -06:00
taku0 e24211df8f firefox-bin: 43.0 -> 43.0.1 2015-12-20 22:26:25 +09:00
Herwig Hochleitner d3d39376a2 dropbox: 3.12.4 -> 3.12.5 2015-12-19 17:45:59 +01:00
Pascal Wittmann 76eae695c7 Merge pull request #11319 from taku0/thunderbird-bin-38.4.0
thunderbird-bin: 38.3.0 -> 38.4.0
2015-12-18 08:50:59 +01:00
Nikolay Amiantov 8c1770769f flashplayer: fix 32-bit version 2015-12-17 15:09:24 +03:00
Arseniy Seroka 326801e0ac Merge pull request #11758 from taku0/firefox-bin-43.0
firefox-bin: 42.0 -> 43.0
2015-12-17 13:05:57 +03:00
Thomas Tuegel 8cf6b39833 Merge pull request #11769 from Profpatsch/cutegram
cutegram: fix version in name
2015-12-16 17:41:30 -06:00
Profpatsch 5f709b8974 cutegram: fix version in name 2015-12-17 00:05:48 +01:00
Eelco Dolstra 7651680615 firefox: 42.0 -> 43.0 2015-12-16 17:24:58 +01:00
Eelco Dolstra d8d04c8cf3 firefox-esr: 38.4.0 -> 38.5.0 2015-12-16 16:03:39 +01:00
Eelco Dolstra 98151e0691 ratox: Fix broken URL
However, the URL still gives a hash mismatch. @ehmry
2015-12-16 12:07:08 +01:00
Arseniy Seroka 2542e92ca0 Merge pull request #11684 from Profpatsch/cutegram
Cutegram
2015-12-16 10:47:48 +03:00
Profpatsch 9c5cd49903 cutegram: init at 2.7.0-stable 2015-12-16 02:08:49 +01:00
taku0 df02ed5696 firefox-bin: 42.0 -> 43.0 2015-12-16 09:55:39 +09:00
Arseniy Seroka c7b320656f Merge pull request #11714 from ericsagnes/jumanji
jumanji: fixed source
2015-12-14 22:46:41 +03:00
Eric Sagnes a77569fd97 jumanji: fixed source 2015-12-15 02:46:04 +09:00
Eelco Dolstra 1ae8f0f0f7 Merge pull request #11675 from abbradar/flashplayer-archive
flashplayer: cleanup, use archive as a source
2015-12-14 13:56:20 +01:00
Aristid Breitkreuz f217579ca6 Merge pull request #11680 from mayflower/fix/claws-mail-fancy
claws-mail: Fix fancy plugin
2015-12-13 22:52:23 +01:00
Aristid Breitkreuz 42952942bc Merge pull request #11649 from mayflower/claws-enable-pgp
[RFC] claws-mail: enable PGP plugin by default
2015-12-13 22:51:03 +01:00
Franz Pletz cabd3effda claws-mail: Remove extra GIO_EXTRA_MODULES wrapping 2015-12-13 17:09:15 +01:00
Franz Pletz 65d8af5af2 claws-mail: Fix fancy plugin, fixes #10421
This fixes the fancy plugin displaying HTML mails as text as suggested
by @wedens.
2015-12-13 17:02:36 +01:00
Ambroz Bizjak 03cf5e6627 chromium: Updates.
- dev: 48.0.2564.22 -> 49.0.2587.3
- beta: 48.0.2564.23 -> 48.0.2564.41
- stable: 47.0.2526.73 -> 47.0.2526.80
2015-12-13 17:00:13 +01:00
Nikolay Amiantov 26e738206c flashplayer: cleanup, use archive as a source
Most work done by ericsagnes
2015-12-13 16:28:52 +03:00
goibhniu 322b6bd60c Merge pull request #11656 from enolan/master
Remove Echo Nolan from maintainers
2015-12-13 11:13:31 +01:00
Echo Nolan f01c56f109 Remove Echo Nolan from maintainers
I'm not using Nix anymore.
2015-12-12 22:59:11 -08:00
Thomas Tuegel 7cdedaaf72 dropbox: use fields from upstream's desktop item 2015-12-12 17:26:41 -06:00
Robin Gloster 2251af754e claws-mail: enable PGP plugin by default 2015-12-12 12:49:49 +00:00
Profpatsch 7b407414a4 telegram: create explicit folder
Will be used for other tools coming soon™.
2015-12-12 13:27:03 +01:00
Michael Raskin 0a64071932 flashplayer: 11.2.202.540 -> 11.2.202.554 2015-12-08 23:28:53 +01:00
Domen Kožar 4b0fcf8ea1 Merge pull request #11553 from FRidh/pil
WIP: remove PIL as dependency
2015-12-08 22:15:05 +01:00
Frederik Rietdijk 9455476f47 tribler: use pillow instead of pil
Program opens. Didn't test any further.
2015-12-08 16:30:25 +01:00
Herwig Hochleitner a7aaedebcc dropbox-cli: 2015.02.12 -> 2015.10.28, fixes #11538 2015-12-08 02:13:11 +01:00
Herwig Hochleitner 0c30a14b9d dropbox: 3.10.11 -> 3.12.4 2015-12-08 02:12:47 +01:00
Ambroz Bizjak b9093f1c64 chromium: Updates, fixes #11492
Built and run Beta and Stable locally. Dev is surrently superseded by Stable so
it doesn't matter much.

- Dev: 47.0.2508.0 -> 48.0.2564.22
- Beta: 46.0.2490.64 -> 48.0.2564.23
- Stable: 45.0.2454.101 -> 47.0.2526.73

Changed the SSL dependencies to the supported configuration on Linux (according
to Torne @Freenode/#chromium-support).

- NSS is a dependency since it is used to access the ceritiface store.
- Dropped system OpenSSL support, the bundled BoringSSL is used.

This probably fixes issue #10555. Note that without this adjustment the build
fails even.

Dropped uneeded old patches.
2015-12-07 14:52:15 +01:00
Arseniy Seroka f6754747bd Merge pull request #11513 from oxij/fix-w3m-on-darwin
w3m: turn off mouseSupport on Darwin
2015-12-07 03:03:08 +03:00
Jan Malakhovski 53f93b0b7e w3m: turn off mouseSupport on Darwin
Fixes an issue reported at https://github.com/NixOS/nixpkgs/pull/11222/files#r46774825
2015-12-06 20:44:29 +00:00
Emery Hemingway 2b6dcdfcd0 Rename 'emery' maintainer handle to 'ehmry', fixes #11493
Communication happens on Github so names should be consistent.
2015-12-05 23:06:20 +01:00
Vladimír Čunát 263fd55d4b Merge recent staging built on Hydra
http://hydra.nixos.org/eval/1231884
Only Darwin jobs seem to be queued now,
but we can't afford to wait for that single build slave.
2015-12-05 11:11:51 +01:00
Nikolay Amiantov 634c9db4c2 Merge pull request #11431 from abbradar/teamviewer
teamviewer: init at 11.0.52520, remove older versions
2015-12-03 23:59:53 +03:00
Nikolay Amiantov c3d503d33d teamviewer: init at 11.0.52520, remove older versions 2015-12-03 22:28:36 +03:00
Burke Libbey eeb2935ac5 Fix notmuch for darwin, fixes #11410
platforms can be unix; this works on darwin at *least*, after we fix the
libtalloc references.
2015-12-03 09:03:29 +01:00
Evgeny Egorochkin 78d3164ff1 midori: add a missing dependency to buildInputs 2015-12-01 00:26:49 +02:00
Jos van den Oever 3c771b0f55 davmail: 4.6.1 -> 4.7.0
Upgrade message: http://sourceforge.net/p/davmail/mailman/message/34597887/

This new release contains a lot of fixes from user feedback, a new
-notray command line
option to force window mode and avoid tricky tray icon issues on Linux
and native
smartcard support on Windows.

Caldav:
- Caldav: Map additional priority levels
- Caldav: fix missing LAST-MODIFIED in events

Enhancements:
- Improved tray icon with alpha blend
- Fix imports
- Prepare mutual SSL authentication between client and DavMail
implementation
- Implement -notray command line option as a workaround for broken SWT
and Unity issues
- Change warning messages to debug in close method
- Improve client certificate dialog, build description from certificate
- Exclude client certificates not issued by server provided issuers list

IMAP:
- IMAP: Additional translations and doc for new IMAP setting
- IMAP: Merge patch by Mauro Cicognini, add a new setting to always send
approximate message in RFC822.SIZE to avoid downloading full message body
- IMAP: fix regression with quotes inside folder names
- IMAP: handle quotes inside folder names correctly

OSX:
- OSX link local address on loopback interface
- Exclude arguments starting with dash to avoid patch 38 regression on OSX

Documentation:
- Doc: Document -notray option
- Switch to OpenHub instead of Ohloh

EWS:
- EWS: prepare distribution list implementation
- Fix #254 davmail.exchange.ews.EWSException:
ErrorIncorrectUpdatePropertyCount

Linux:
- Refresh davmail.spec, make RPM noarch
- Handle missing or broken SWT library

Windows:
- Windows: Make MSCAPI keystore type available in Settings for Windows
native smartcard support
- Instantiate MSCAPI explicitly to access Windows Smartcards
- Enable native Windows SmartCard access through MSCAPI (no PKCS11
config required)

Carddav:
- Carddav: Test case for comma in ADR field
- Carddav: Do not replace comma on ADR field, see support request 255
- Caldav: Ignore missing END:VCALENDAR line on modified occurrences
- CardDav: Add empty property test case
2015-11-28 12:36:49 +01:00
taku0 50a842fb37 thunderbird-bin: 38.3.0 -> 38.4.0 2015-11-28 12:00:44 +09:00
Peter Simons ae01b4468b Merge pull request #11292 from mayflower/pkg/wireshark
wireshark: 1.12.7 -> 2.0.0
2015-11-27 10:45:16 +01:00
Sou Bunnbu 6b1651928e Merge pull request #11298 from mayflower/pkg/claws-mail
clawsMail: 3.12.0 -> 3.13.0
2015-11-27 12:49:42 +08:00
Franz Pletz bfb399e3c4 wireshark: 1.12.7 -> 2.0.0
Updates wireshark to the next major stable version. Also updated and tested
the patch to search for dumpcap in PATH by @bjornfor.
2015-11-27 05:17:26 +01:00
Franz Pletz bba0521fdd clawsMail: 3.12.0 -> 3.13.0 2015-11-27 03:15:32 +01:00
Tobias Geerinckx-Rice 2798b02ad0 Convert some *Flags from strings to lists 2015-11-26 23:45:31 +01:00
Jan Malakhovski caed1528a3 w3m: fix w3mimgdisplay, refactor the expression, make batch and nox versions, use batch version where appropriate 2015-11-26 00:34:09 +00:00
Vladimír Čunát 13eca6f79a Merge #11067: SmartOS updates
I amended some commits slightly.
2015-11-23 14:45:44 +01:00