Commit Graph

2529 Commits

Author SHA1 Message Date
Pascal Wittmann
b9540c5b70 rdesktop: update from 1.8.2 to 1.8.3 2015-03-02 16:48:09 +01:00
Vladimír Čunát
355424724e liferea: maintenance update 2015-02-26 21:25:20 +01:00
Ricardo M. Correia
1e4287645c firefox: Fix hash 2015-02-26 19:02:34 +01:00
lethalman
69d3adbf3d Merge pull request #6425 from grwlf/siptools
Siptools
2015-02-26 15:00:17 +01:00
Austin Seipp
62fdc5f94d nixpkgs: btsync 1.4.106 -> 1.4.110
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-02-25 07:54:15 -06:00
taku0
2e8f2d6477 firefox-bin: update to version 36.0; thunderbird-bin: update to version 31.5.0 2015-02-25 22:42:05 +09:00
vbgl
5f5ebcd74f Merge pull request #6556 from ts468/freerdp
FreeRDP: build server as well
2015-02-25 11:59:08 +01:00
Domen Kožar
9214859fd2 Revert "Mark many packages (mostly python) broken because of broken dependencies."
This reverts commit bf86758a42.

See 71a9aa10ca25f5659a657d8910e11f36c3439a36
2015-02-25 09:23:31 +01:00
Thomas Strobel
45856c9bde FreeRDP: build server as well 2015-02-25 00:43:15 +01:00
Thomas Tuegel
030eed8307 Merge branch 'dropbox' 2015-02-24 15:59:14 -06:00
Eelco Dolstra
8196962097 firefox: Update to 36.0 2015-02-24 18:50:15 +01:00
Thomas Tuegel
f12536f151 dropbox: use bundled librsync (working) 2015-02-24 11:12:56 -06:00
Thomas Tuegel
bd6a15d6d3 dropbox: rm qt.conf 2015-02-24 10:54:54 -06:00
Thomas Tuegel
115e8110f7 dropbox: wrap for LD_LIBRARY_PATH (runtime loads) 2015-02-24 10:26:22 -06:00
Thomas Tuegel
d36af8e0ae dropbox: don't wrap with Mesa 2015-02-24 10:26:00 -06:00
Thomas Tuegel
32643c010e dropbox: update to 3.2.6 (fixed) 2015-02-24 06:51:13 -06:00
Thomas Tuegel
52cc26eb3e Revert "Revert "dropbox: update to version 3.2.6""
This reverts commit a9b2dee6e6.
2015-02-23 21:18:19 -06:00
Thomas Tuegel
a9b2dee6e6 Revert "dropbox: update to version 3.2.6"
This reverts commit 7c37b4d672.

New version does not work correctly.
2015-02-23 20:14:19 -06:00
Peter Simons
bf86758a42 Mark many packages (mostly python) broken because of broken dependencies. 2015-02-23 14:06:24 +01:00
Brendan Long
82a00d1686 syncthing: Update to 0.10.23 2015-02-22 11:23:01 -06:00
aszlig
089bdce621
Re-re-revert "chromium: remove preferLocalBuild".
This reverts commit 0696b0ef78.

Okay, now finally, let's get this straight. We actually *want*
preferLocalBuild, *because* we have improved the source splitup in
c92dbffeac.

The idea is to use local builds in order to prevent the source being
pushed to a remote machine, splitted up there (and thus copied again)
and then being copied *again* FROM the remote machine.

"DOH!" - as @edolstra or @rbvermaa would call it... and good d^Hnight.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-02-22 08:31:25 +01:00
aszlig
0696b0ef78
Re-revert "chromium: remove preferLocalBuild".
This reverts commit 26f024626c.

I actually wasn't reading the "remove" in the commit message, so sorry
for the brainfart/noise.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-02-22 08:07:23 +01:00
aszlig
26f024626c
Revert "chromium: remove preferLocalBuild"
This reverts commit fdb5cf8107.

The reason I'm reverting this is that the implications this had on the
IO load of Hydra are fixed by c92dbffeac.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-02-22 07:55:33 +01:00
aszlig
c92dbffeac
chromium: Split up the source tarball on the fly.
So far we've done the source code split up by using the generic
unpackPhase and copying it all over into the different outputs.

However, this had the problem of generating the I/O load of about three
times the size of the source tree: First at fetchurl of the tarball
(although it's not as much because it's compressed), second at
unpackPhase and third at installPhase.

Now we don't use installPhase anymore and directly unpack into the
output paths, which unfortunately becomes quite a bit more complex
because we need to transform the paths of the tar file on the fly.

I've also tried using GNU Tar's --to-command option to even untar *and*
patch it at the same time, but forking for every single file in the
tarball gets REALLY slow and also gets even more complex than this two
stage approach because you need to make sure that the patch file is
applied correctly, for example for files that don't yet exist but are to
be created by the patch file.

We're using --anchored and --no-wildcards-match-slash here to prevent
accidentally excluding files we don't want to exclude. One example is
something like v8/tools/gyp/v8.gyp.

So the current approach is some compromise between complexity and speed
and should hopefully get rid of the Hydra build timeouts by lowering I/O
load.

See here for examples of builds having this issue:

http://hydra.nixos.org/build/19045023
http://hydra.nixos.org/build/19044973
http://hydra.nixos.org/build/19044968
http://hydra.nixos.org/build/19045019

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-02-22 07:52:53 +01:00
aszlig
0aad4b7ee4
chromium: Update all channels to latest versions.
Overview of the updated versions:

stable: 40.0.2214.91 -> 40.0.2214.115
beta:   41.0.2272.16 -> 41.0.2272.64
dev:    41.0.2272.16 -> 42.0.2305.3

Introduces 42.0.2305.3 as the new dev version, which no longer requires
our user namespaces sandbox patch. Thanks to everyone participating in
https://crbug.com/312380 for finally having this upstream.

In the course of supporting the official namespace sandbox (that's what
the user namespace sandbox is called), a few things needed to be fixed
for version 42:

 * Add an updated nix_plugin_paths.patch, because the old
   one tries to patch the path for libpdf, which is now natively included
   in Chromium.

 * Don't copy libpdf.so to libexec path for version 42, it's no longer
   needed as it's completely built-in now.

 * Disable SUID sandbox directly in the source instead of going the easy
   route of passing --disable-setuid-sandbox. The reason is that with
   the command line flag a nasty nagbar will appear.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-02-22 07:52:52 +01:00
Thomas Tuegel
7c37b4d672 dropbox: update to version 3.2.6 2015-02-21 18:17:04 -06:00
Thomas Tuegel
8cf78bf5f4 update various packages to use Qt 5.4 2015-02-21 11:39:20 -06:00
Franz Pletz
48f4290cd8 Update silc-client to 1.1.11 2015-02-19 19:31:29 +01:00
Jaka Hudoklin
ebfadc2fc9 Merge pull request #6452 from rushmorem/update-chronos-port
Update chronos default port
2015-02-19 14:13:00 +01:00
rushmorem
74b40e9a43 Add marathon mesos framework 2015-02-19 13:30:00 +02:00
rushmorem
a661802d29 Update chronos default port
Update chronos default port to match the one documented on
their website (http://airbnb.github.io/chronos). The one in
their repo (the current one) clashes with the marathon documented
one.
2015-02-19 12:31:12 +02:00
Sergey Mironov
4fea283349 sipcmd: add the command-line SIP client 2015-02-18 11:52:05 +03:00
Shea Levy
2f061ff16b Merge remote-tracking branch 'origin/staging'
Darwin and haskell fixes.
2015-02-17 13:52:37 -05:00
Edward Tjörnhammar
47203a86bf unison: sha correction 2015-02-17 12:35:29 +01:00
codyopel
e9c0bdb93e qbittorrent: add gui & webui optionals 2015-02-15 17:43:39 -05:00
Peter Simons
600135bba5 Merge remote-tracking branch 'master' into staging. 2015-02-13 22:17:12 +01:00
Rickard Nilsson
da6abad31a vimb: Update from 2.8 to 2.9 2015-02-13 15:06:46 +01:00
Shea Levy
127efcd6f6 Merge branch 'kill-libiconv' of git://github.com/gridaphobe/nixpkgs into staging
Took "ours" for the conflict and changed libiconvOrEmpty to libiconv

Conflicts:
	pkgs/applications/audio/ncmpcpp/default.nix
2015-02-11 19:37:22 -05:00
William A. Kennington III
505ab03a1e notbit: Update git 2015-02-11 15:23:31 -08:00
cillianderoiste
26127df6cb Merge pull request #6288 from ehmry/ratox
ratox: bump to 0.2.1
2015-02-10 23:08:52 +01:00
Emery Hemingway
f5b3ca1473 ratox: bump to 0.2.1 2015-02-10 12:10:51 -05:00
lethalman
7614b2f984 Merge pull request #6229 from devhell/canto
canto-{curses,daemon}: Add packages
2015-02-10 10:34:11 +01:00
Brendan Long
a88b262459 syncthing: Update to 0.10.22 2015-02-09 17:55:18 -06:00
Pascal Wittmann
6b5658bf23 bro: update from 2.3.1 to 2.3.2 2015-02-09 12:20:10 +01:00
Nikolay Amiantov
a52db30bdb tkabber: update version 2015-02-09 13:10:12 +03:00
William A. Kennington III
5a1089d024 Merge pull request #6245 from edwtjo/samba-collate-urls
fetchurl: collate samba project urls into a mirror
2015-02-08 13:38:01 -08:00
Edward Tjörnhammar
33a8a51657 fetchurl: collate samba project urls into a mirror 2015-02-08 22:29:27 +01:00
devhell
37f58c4f46 canto-{curses,daemon}: Add packages
This adds canto-daemon, a feedparser background service, and
canto-curses, a highly customizable curses-based frontend.
2015-02-08 14:16:17 +00:00
Eric Seidel
e08b9ab8d3 kill libiconvOr*
Conflicts:
	pkgs/applications/networking/mailreaders/sup/default.nix
	pkgs/development/compilers/ghc/7.8.3-binary.nix
	pkgs/development/interpreters/php/5.3.nix
	pkgs/development/interpreters/ruby/patches.nix
	pkgs/development/libraries/cairo/default.nix
	pkgs/development/libraries/poppler/default.nix
	pkgs/top-level/all-packages.nix
2015-02-07 20:29:28 -08:00
lethalman
8b236f2daf Merge pull request #6119 from lethalman/go
Go packages, buildGoPackage
2015-02-07 21:30:30 +01:00