Commit Graph

18132 Commits

Author SHA1 Message Date
gnidorah
749d495cb3 rambox, franz: cleanup (#25020) 2017-04-23 19:10:35 +01:00
Bjørn Forsman
ddb788b671 OVMF: get version number from edk2
OVMF is built from edk2 sources so that's where its version number comes
from (logically). The edk2 version number is 2014-12-10, so this change
only ensures the version numbers won't drift apart in the future. (There
is no hash change.)
2017-04-23 19:28:34 +02:00
aszlig
83e1400e0c
nixos/slim: Implement logging to journal
The main change here is a patch of SLiM to tread a log file of
/dev/stderr specially in that it now uses std::cerr instead of a file
for logging.

This allows us to set the logfile to stderr in NixOS for the generated
SLiM configuration file and we now get logging to the systemd journal.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-23 19:25:23 +02:00
Matthias Beyer
c44be81d38 Revert "ipfs: 0.4.6 -> 0.4.8" (#25149)
This reverts commit a309890044.
2017-04-23 17:37:30 +01:00
Nikolay Amiantov
13162b9ddb fritzing: 0.9.0b -> 0.9.3b
Fixes #24943.
2017-04-23 17:53:11 +03:00
Nikolay Amiantov
a02b18998f firefox-bin: don't install .desktop file
It's handled by wrapFirefox.
2017-04-23 16:34:48 +03:00
Nikolay Amiantov
6df350ffc8 firefox-bin: use wrapGAppsHook 2017-04-23 16:34:24 +03:00
Nikolay Amiantov
9f6baaa89a Merge pull request #24961 from layus/thunderbird-default-mail-client
Thunderbird: Fix default mail client detection
2017-04-23 15:54:56 +03:00
Volth
1931ad0e2c qemu: 2.8.1 -> 2.9.0 2017-04-23 14:20:48 +02:00
lassulus
839b3ce5fe weechat: 1.7 -> 1.7.1 2017-04-23 13:51:34 +02:00
Michael Raskin
f45f2fb67a Merge pull request #24549 from volth/qemu-2.8.1
qemu: 2.8.0 -> 2.8.1
2017-04-23 11:07:44 +02:00
Michael Raskin
070985177f Merge pull request #25137 from taku0/firefox-53.0
firefox: 52.0.2 -> 53.0 [Critical security fixes]
2017-04-23 11:05:33 +02:00
taku0
a68f95da17 firefox: 52.0.2 -> 53.0 2017-04-23 11:50:33 +09:00
Thomas Tuegel
e019978d02 Merge pull request #23922 from gnidorah/master
mytetra: init at 1.42.2
2017-04-22 15:06:44 -05:00
Vladimír Čunát
5cdf192827
Merge #25043: firefox-{bin,esr}: critical security 2017-04-22 11:51:02 +02:00
Benno Fünfstück
a0e60af067 Merge pull request #24819 from dbrock/ethrun
ethrun: init at 0.1.0
2017-04-21 23:54:07 +02:00
Jörg Thalheim
95d9b582f1
dino: disable parallel build
attempt to fix hydra build: https://hydra.nixos.org/build/51816616/nixlog/1
2017-04-21 16:26:29 +02:00
Thomas Tuegel
f8189e69bc
dropbox: 23.4.19 -> 24.4.16 2017-04-20 12:25:21 -05:00
Jörg Thalheim
d15f26ec69
dino: init at unstable-2017-04-20 2017-04-20 15:16:55 +02:00
Jörg Thalheim
f47921f3d4 Merge pull request #25036 from xNWDD/gitkraken/2.4.0
gitkraken: 2.3.3 -> 2.4.0
2017-04-20 13:11:30 +02:00
Jörg Thalheim
50f5e2bd3f Merge pull request #25046 from romildo/upd.tint2
tint2: 0.12.12 -> 0.14.1
2017-04-20 13:07:18 +02:00
Michael Raskin
9c16f669b9 Merge pull request #24244 from mythmon/mercurial-upgrade
Upgrade mercrial and tortoisehg to 4.1.1
2017-04-20 08:34:16 +02:00
romildo
1fbbf4c169 tint2: 0.12.12 -> 0.14.1 2017-04-19 21:44:30 -03:00
taku0
acf12543a5 firefox-esr: 52.0.2esr -> 52.1.0esr 2017-04-20 08:05:15 +09:00
Joachim Fasting
0602b9d194
torbrowser: 6.5.1 -> 6.5.2 2017-04-20 00:21:43 +02:00
NWDD
940a71faed gitkraken: 2.3.3 -> 2.4.0 2017-04-19 22:56:16 +02:00
Thomas Tuegel
12a3590cc7 Merge pull request #25019 from peterhoeg/f/db
dropbox: use wmctrl from nixpkgs
2017-04-19 10:25:51 -05:00
Peter Hoeg
c4c33eaca1 dropbox: use wmctrl from nixpkgs 2017-04-19 20:56:18 +08:00
Matthias Beyer
2052ff856f mutt: 1.8.1 -> 1.8.2 2017-04-19 11:26:25 +02:00
aszlig
b017935103
vlc: Fix build for Qt >= 5.7.0
This basically does something similar than the AUR build:

https://aur.archlinux.org/packages/vlc-qt5/

On our side, all there is to do is to force compiling using C++11 mode
and use a patch that the AUR package took from the following upstream
patchwork URL:

https://patches.videolan.org/patch/14061/

Instead of passing CXXFLAGS to the configure script, I'm using sed here
to make sure we don't override flags figured out by configure.

For example if ./configure is used with CXXFLAGS=-std=c++11 appended or
prepended, we have something like:

... -I../include   -std=c++11 -Wall -Wextra -Wsign-compare ...

While if we don't do that at all, we have something like:

... -I../include   -g -O2 -Wall -Wextra -Wsign-compare ...

Another way would be to use NIX_CFLAGS_COMPILE, but that would affect
even compilation of C code and thus resulting in a bunch of warnings
like this:

cc1: warning: command line option '-std=c++11' is valid for C++/ObjC++
              but not for C

So with our approach the flags during build look much better:

... -I../include   -std=c++11 -g -O2 -Wall -Wextra -Wsign-compare ...

Another thing I've changed is that the vlc_qt5 attribute in
all-packages.nix now uses the latest Qt 5 version, because the build for
Qt >= 5.7.0 is now no longer broken.

I've also ordered the preConfigure attribute before the configureFlags
attribute, because it makes more sense in terms of context (pre ->
configure -> post).

Tested by building on x86_64-linux with libsForQt56.vlc, libsForQt58.vlc
and vlc (the Qt 4 version, just to be sure I didn't accidentally break
it).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @ttuegel
2017-04-19 05:09:47 +02:00
taku0
cf1a925fae firefox-bin: 52.0.2 -> 53.0 2017-04-19 09:12:17 +09:00
Joachim F
1dcb587d93 Merge pull request #24888 from Ralith/electron
electron: 1.4.15 -> 1.6.2
2017-04-18 21:47:33 +01:00
Jörg Thalheim
dc017e634c Merge pull request #25001 from jb55/new/pidgin-carbons
pidgin-carbons: init at 0.1.3
2017-04-18 22:46:51 +02:00
Joachim F
0d6caccfb4 Merge pull request #24979 from mdorman/emacs-updates
Automated Emacs package updates
2017-04-18 21:37:48 +01:00
James ‘Twey’ Kay
cba00cb44b
git-lfs: 1.3.1 -> 2.0.2
fixes #25004
2017-04-18 21:39:12 +02:00
Benjamin Staffin
2c14055aaa Merge pull request #24990 from jlesquembre/git-recent
git-recent: init at 1.0.3
2017-04-18 12:33:05 -04:00
William Casarin
36bd9d2463 pidgin-carbons: init at 0.1.3
Implements XMPP extension XEP-0280: Message Carbons for pidgin
2017-04-18 09:26:05 -07:00
Frederik Rietdijk
dd662792b1 kdeApplications.kolourpaint: init at 16.12.3 2017-04-18 14:18:19 +02:00
José Luis Lafuente
7b20341727
git-recent: init at 1.0.3 2017-04-18 11:09:33 +02:00
Michael Alan Dorman
0e5d43d8f1 melpa-packages: 2017-04-17
Removals:
 - coati: renamed to sourcetrail
 - fuel: git repo not accessible
 - jade: renamed to indium
 - matrix-client: package removed from melpa
2017-04-17 18:41:30 -04:00
Michael Alan Dorman
607a72a2f1 melpa-stable-packages: 2017-04-17
Removals:
 - fuel: git repo not accessible
 - jade: renamed to indium
2017-04-17 18:41:29 -04:00
Michael Alan Dorman
efe2057ba0 elpa-packages: 2017-04-17 2017-04-17 18:41:29 -04:00
Linus Heckemann
457bc9bdc4 inkscape: add potrace
This allows vectorising bitmap images in inkscape.
2017-04-17 22:10:05 +01:00
jraygauthier
383706f36d digikam: add video support through libqtav (#24866)
* libqtav: init at unstable-2017-03-30

* digikam: add video support through `libqtav` dependency

Issue #24426.
2017-04-17 22:28:20 +02:00
Jörg Thalheim
00fa9c7a53 Merge pull request #24970 from romildo/upd.vivaldi
vivaldi: 1.6.689.34-1 -> 1.8.770.56-1
2017-04-17 22:16:07 +02:00
Guillaume Maudoux
eb8f604456 thunderbird: fix default mail client detection 2017-04-17 22:03:09 +02:00
Joachim Fasting
aeaa79dc82
ratpoison: 1.4.8 -> 1.4.9
Contains changes that require updating user configs:

- command `compat' and the various def* compat commands were removed
- `msgwait', `rudeness', `startupmessage', `warp' are now variables

See http://git.savannah.nongnu.org/cgit/ratpoison.git/tree/NEWS
2017-04-17 21:39:33 +02:00
Thomas Tuegel
4f5391e8c4
dropbox: 23.4.18 -> 23.4.19
Dropbox is again updated without a release announcement. I noticed on Friday
that the client was malfunctioning. I was waiting for a release announcement
with the new version number, but as one was not forthcoming, I simply guessed at it.
2017-04-17 10:15:29 -05:00
romildo
9747994a7b vivaldi: 1.6.689.34-1 -> 1.8.770.56-1
Add $out/opt/vivaldi/lib to RPATH so that libffmpeg.so distributed
with Vivaldi can be found. Otherwise launching Vivaldi fails.
2017-04-17 11:41:22 -03:00
zraexy
51770c85e4
streamlink: 0.3.0 -> 0.5.0 2017-04-17 01:24:28 +02:00