Ambroz Bizjak
58fd4f672f
Chromium: Update and build fixes.
...
Changes included:
- Update versions.
- Use gyp package not gyp_svn1977.
- Remove icu from buildInputs, since this causes a build error due to inferference with use_system_icu=false.
- Remove the hack that inserts the absolute path into gyp files, and pass `--depth .` to gyp. This resolves the `third_party/angle` gyp error.
- Do a normal copy of the source code not a symlink copy. This resolves some link error where the symlinks interfere with relative paths (seems like because gyp resolves symlinks first). Note, this used to be worked around with the absolute path insertion hack.
- Change the bucketURL in update.nix to https (for more secure updates).
2015-06-11 18:23:58 +02:00
Daiderd Jordan
fb19019af7
pythonPackages.trollius: disable the tests that fail on darwin
2015-06-11 16:24:10 +02:00
Luca Bruno
fbfdc71e1f
libical: fix crash when TZDIR is empty, and add non-nixos zoneinfo paths. Closes #8285
2015-06-11 15:49:29 +02:00
Rok Garbas
e1683eeff1
lsof: url is behind auth. changed downloaded url for lsof
2015-06-11 14:54:30 +02:00
Daiderd Jordan
61531556d8
remove hardcoded clang
2015-06-11 14:42:55 +02:00
Daiderd Jordan
020f466ef4
disable tests for pythonPackages.trollius
2015-06-11 14:42:55 +02:00
Daiderd Jordan
c7a73dbbdb
removed unnecessary patch
2015-06-11 14:42:55 +02:00
Daiderd Jordan
c7f36cb5f0
fix neovim on darwin
2015-06-11 14:42:55 +02:00
Daiderd Jordan
8ffce0888c
fix luaPackages.luabitop on darwin
2015-06-11 14:42:55 +02:00
Daiderd Jordan
414d6d9e87
fix unibilium on darwin
2015-06-11 14:42:55 +02:00
Daiderd Jordan
a51e9610e7
fix libtermkey on darwin
2015-06-11 14:42:55 +02:00
Luca Bruno
63bb4f919c
Update evolution and evolution-data-server
2015-06-11 14:31:53 +02:00
Rickard Nilsson
8a7c23456d
jetty: Update from 9.2.5 to 9.2.11
2015-06-11 13:33:32 +02:00
Pascal Wittmann
9aa07ac846
sourceforge: remove unreachable mirrors
2015-06-11 12:28:46 +02:00
Peter Simons
84dfce0bc0
mercurial: install bash completion
2015-06-11 12:07:15 +02:00
Peter Simons
414d71c499
haskell-cron-compat: unnecessary fork of 'cron' that doesn't compile anyway
2015-06-11 11:52:27 +02:00
Peter Simons
283b75910a
haskell-Win32: mark broken on systems other than Cygwin
2015-06-11 11:52:27 +02:00
Peter Simons
2f6c8127f5
uhc: update to version 1.1.9.1
2015-06-11 11:52:26 +02:00
Peter Simons
9e04c74d95
haskell-bitx-bitcoin: disable the test suite which tries to access the network
2015-06-11 11:52:26 +02:00
Peter Simons
1c31a4660a
haskell-pipes-mongodb: disable the test suite which tries to access the network
2015-06-11 11:52:26 +02:00
Peter Simons
d9461e945f
hackage-packages.nix: update to bab92d665c
with hackage2nix revision c3122d617e69efe091549cec44d578bba41515f1
2015-06-11 11:52:22 +02:00
Pascal Wittmann
681b9bf9f9
Merge pull request #8284 from eduarrrd/photoqt
...
photoqt: 1.1.0.1 -> 1.2
2015-06-11 11:36:45 +02:00
Domen Kožar
a06bb18ce5
Merge pull request #8274 from k0ral/lsof
...
lsof: 4.87 -> 4.88
2015-06-11 11:26:18 +02:00
Domen Kožar
8f28742315
Merge pull request #8251 from lancelotsix/fix_networkx
...
Fix pythonPackages.networkx
2015-06-11 11:24:40 +02:00
Rok Garbas
19248c309a
neovim: uses vimUtils to make it configurable like vim_configurable is
...
- vimAlias argument , when true, will create a @out/bin/vim symlink
- configure argument, which will configure neovim the same way as it does
vim_configurable. eg.: ~/.nixpkgs/config.nix
{
packageOverrides = pkgs : with pkgs; rec {
vimg = neovim.override {
vimAlias = true;
configure = {
customRC = ''
set spell
'';
vam.pluginDictionaries = [
{ names = [ "youcompleteme" "ctrlp"]; }
];
};
};
};
}
Enjoy!
2015-06-11 10:48:29 +02:00
Pascal Wittmann
6125f583e6
redis: update from 3.0.1 to 3.0.2, fixes CVE-2015-4335
2015-06-11 10:46:57 +02:00
Pascal Wittmann
2700715567
global: update from 6.4 to 6.5
2015-06-11 10:46:57 +02:00
Domen Kožar
fdc83edd08
Removing python-packages-generated.nix
...
It was an experiment by @garbas in 2014 that has been forgotten
because of other, newer experiments.
Packages also weren't updated so we shouldn't let them rot in nixpkgs.
2015-06-11 10:42:15 +02:00
Domen Kožar
4227b13af6
pypy: 2.5.1 -> 2.6.0
2015-06-11 10:42:14 +02:00
Eduard Bachmakov
11f0f3cba9
photoqt: 1.1.0.1 -> 1.2
...
remove no longer necessary patch
2015-06-10 21:47:50 -04:00
Rok Garbas
f2d7f573af
neovim: adding python2 and python3 support
...
neovim:
- possibility to extend neovim (via .override) and passing extraPythonPackages
or extraPython3Packages
- neovim's python interpreter can be found as nvim-python / nvim-python3
- wrapping nvim binary and setting `g:python_host_prog` and
`g:python3_host_prog` via --cmd flag
python-packages.nix fixes:
- ordereddict builds for py26 and uses disabled argument to tell this
- trollius builds on all python platforms except 3.4 (where is included in
standard librarary)
- neovim builds on all python platforms
2015-06-11 02:54:10 +02:00
Arseniy Seroka
81225f1002
Merge pull request #8280 from rycee/update/fira
...
Version updates of 'fira' and 'fira-mono'.
2015-06-11 01:43:56 +02:00
Arseniy Seroka
c698c2709c
Merge pull request #8276 from k0ral/glances
...
glances: 2.3 -> 2.4.2
2015-06-11 01:41:46 +02:00
Mateusz Kowalczyk
1cc999e09d
Merge branch 'youtube-dl' of https://github.com/KaiSforza/nixpkgs
2015-06-11 00:36:00 +01:00
Jascha Geerds
117dfac3d1
gnome-pomodoro: Fix meta description
2015-06-11 00:58:51 +02:00
William Giokas
51ce297187
youtube-dl: make a python package
...
This allows youtube-dl to support all versions of python, and be built
correctly even when the python version is overridden by the user.
An alias to youtube-dl has been added which points to the default python
version's youtube-dl.
Also, ffmpeg has been made into an optional dependency. If ffmpeg is set
to 'null' then it will not be built and there will be no wrapper for it
either. An extra package, youtube-dl-light, is the same as youtube-dl
but without the ffmpeg dependency.
2015-06-10 15:50:17 -07:00
William A. Kennington III
bb23251c90
java: Fix jre derivations
2015-06-10 15:33:22 -07:00
Robert Helgesson
3b95f89735
Update package 'fira-mono' to version 3.203.
2015-06-11 00:07:35 +02:00
Robert Helgesson
50bf92623d
Update package 'fira' to version 4.103.
2015-06-11 00:07:35 +02:00
Rok Garbas
1c3585e411
pythonPackages.livestreamer: fix builds for py33 and py34
2015-06-11 00:06:52 +02:00
Rok Garbas
4970aa6f46
pythonPackages: fix apscheduler
2015-06-11 00:06:52 +02:00
Rok Garbas
adbed3fb6a
pythonPackages.neovim: new package added
2015-06-11 00:06:52 +02:00
William A. Kennington III
93ddc18a59
Make jdk / jre derivations installable
2015-06-10 14:24:23 -07:00
vbgl
9d88a15ab4
Merge pull request #8275 from k0ral/mpc
...
mpc: 0.26 -> 0.27
2015-06-10 22:37:48 +02:00
Peter Simons
59d98da246
Merge pull request #8273 from k0ral/git
...
git: 2.4.1 -> 2.4.2
2015-06-10 21:40:13 +02:00
Joachim Schiele
a398088ec6
Merge pull request #8265 from k0ral/dfc
...
dfc: 3.0.4 -> 3.0.5
2015-06-10 20:46:05 +02:00
koral
4387cd5841
glances: 2.3 -> 2.4.2
2015-06-10 17:16:31 +00:00
koral
ffdb7ab9a2
mpc: 0.26 -> 0.27
2015-06-10 17:03:10 +00:00
koral
0ac1de60e9
lsof: 4.87 -> 4.88
2015-06-10 16:34:45 +00:00
Ricardo M. Correia
e26bfbe26f
grsecurity: Update stable and test patches
...
stable: 3.1-3.14.43-201506021902 -> 3.1-3.14.44-201506082249
test: 3.1-4.0.4-201506021902 -> 3.1-4.0.5-201506082251
2015-06-10 18:33:28 +02:00
koral
5a64cc1dc8
git: 2.4.1 -> 2.4.2
2015-06-10 16:22:23 +00:00
Mateusz Kowalczyk
330758e788
cran: remove bad mirror
...
Gives ‘welcome to nginix’ pages
2015-06-10 17:21:48 +01:00
Pascal Wittmann
6fa0db5a31
coqPackages.fiat: disable parallel build to fix build
2015-06-10 16:14:11 +02:00
Luca Bruno
38b58bab62
gcr: propagate p11_kit required in the pc file
2015-06-10 15:00:34 +02:00
Christian Theune
8fc6185037
Update syncthing to 0.11.8
...
(Also should fix failing test on i686 as per its Changelog)
2015-06-10 13:33:59 +02:00
koral
e3b3dff1d5
dfc: 3.0.4 -> 3.0.5
2015-06-10 11:18:55 +00:00
Pascal Wittmann
62d62b6588
Fixed some licenses
2015-06-10 13:00:42 +02:00
Arseniy Seroka
a1144c5b45
Merge pull request #8264 from robbinch/pkg-wavegain
...
wavegain: Use fetchFromGitHub instead of fetchgit.
2015-06-10 13:53:15 +03:00
Robbin C
b62f02f751
wavegain: Use fetchFromGitHub instead of fetchgit.
2015-06-10 18:40:25 +08:00
Pascal Wittmann
deb0ed0810
opencascade: fix build
2015-06-10 12:02:58 +02:00
Peter Simons
07579409cc
hackage-packages.nix: update to cf0a9dd31e
with hackage2nix revision c3122d617e69efe091549cec44d578bba41515f1
2015-06-10 10:55:50 +02:00
Peter Simons
43a7006495
hackage-packages.nix: update to 31af6a881c
with hackage2nix revision c3122d617e69efe091549cec44d578bba41515f1
2015-06-10 10:55:49 +02:00
Pascal Wittmann
bc4be19099
sonic-visualiser: fix build
2015-06-10 10:17:03 +02:00
Pascal Wittmann
24a218b1cc
mcabber: enable tests
2015-06-10 10:17:03 +02:00
Peter Simons
957d9f6d57
zeromq: update to version 4.1.1
...
Version 4.0.6 is "retired" and also failed to compile because its sha256
hash changed on the upstream site for some reason.
2015-06-10 10:07:46 +02:00
Pascal Wittmann
7829a2c92e
chocolate-doom: update from 2.1.0 to 2.2.0
2015-06-10 09:00:47 +02:00
Pascal Wittmann
556562173c
t1utils: update from 1.38 to 1.39, fixes CVE-2015-3905
2015-06-10 08:54:21 +02:00
Tobias Geerinckx-Rice
ef94547093
neovim -> 2015-06-09
2015-06-10 00:50:35 +02:00
Thomas Tuegel
661ce66483
haskellPackages.hmatrix: remove impure openblas path
2015-06-09 14:31:19 -05:00
Lancelot SIX
7a87a1e73f
Fix pythonPackages.networkx
2015-06-09 20:49:24 +02:00
Thomas Tuegel
406428d6a4
haskellPackages.bindings-levmar: build with openblas
2015-06-09 13:48:36 -05:00
Pascal Wittmann
e1af50c4c4
byzanz: add -Wno-error for deprecated declarations to fix the build
2015-06-09 20:38:05 +02:00
Tobias Geerinckx-Rice
b229cfc894
mcelog -> 119
...
- Fix clobbered status variable in server_ping
- Avoid prefilling memory database when DMI is disabled
2015-06-09 20:22:26 +02:00
Tobias Geerinckx-Rice
21f8130dda
cassandra 2.1.5 -> 2.1.6
2015-06-09 20:22:26 +02:00
Jude Taylor
746df7b034
remove now-applied process-extras patch
2015-06-09 10:26:29 -07:00
Pascal Wittmann
d362ef845e
Merge pull request #8250 from pesterhazy/fix/httpie
...
httpie: bump version to fix ImportError
2015-06-09 19:19:08 +02:00
Thomas Tuegel
8245caedf1
rPackages.SamplerCompare: build with openblas
2015-06-09 11:47:40 -05:00
Thomas Tuegel
58754130cc
rPackages.slfm: build with openblas
2015-06-09 11:47:26 -05:00
Thomas Tuegel
77aa1c990e
rPackages.Mposterior: build with openblas
2015-06-09 11:47:12 -05:00
Thomas Tuegel
b120a737fd
rPackages.BayesLogit: build with openblas
2015-06-09 11:43:00 -05:00
Damien Cassou
972ad2437a
Merge pull request #8243 from geerds/pomodoro
...
gnome-pomodoro: Fix build for 3.16
2015-06-09 18:14:37 +02:00
Paulus Esterhazy
fdc8e6beff
httpie: bump version to fix ImportError
...
Fixes https://github.com/jakubroztocil/httpie/issues/314
2015-06-09 17:45:00 +02:00
Cillian de Róiste
6455404f1b
mlt-qt4: update from 0.9.2 to 0.9.6
2015-06-09 15:51:37 +02:00
Peter Simons
62f2b24c83
haskell-fft: disable failing test suite
2015-06-09 15:51:01 +02:00
Peter Simons
49d4342f1b
hackage-packages.nix: update to c8b207efe7
with hackage2nix revision c3122d617e69efe091549cec44d578bba41515f1
2015-06-09 15:50:56 +02:00
Pascal Wittmann
023be72082
tomcat8: update from 8.0.9 to 8.0.23, fixes CVE-2014-7810
2015-06-09 14:28:39 +02:00
Pascal Wittmann
9b417df916
tomcat7: update from 7.0.55 to 7.0.62, fixes CVE-2014-7810
2015-06-09 14:27:13 +02:00
Thomas Tuegel
71b848b45d
openblas: build with USE_OPENMP=0 on Darwin
...
Darwin's clang does not support OpenMP yet. OpenMP is required on other
platforms for e.g. Julia.
2015-06-09 06:34:52 -05:00
Jascha Geerds
9485bb3fef
gnome-pomodoro: Fix build for 3.16
2015-06-09 12:59:32 +02:00
Cray Elliott
e7c2a58250
bump dolphinEmuMaster, now needs gcc5 to compile
...
also removed wxGTK30 as that was unnecessary, and actually causes compilation errors with gcc5 in the mix
2015-06-09 03:24:18 -07:00
lethalman
253d30b986
Merge pull request #8231 from DamienCassou/add-carddav-util
...
Add carddav-util
2015-06-09 10:39:46 +02:00
William A. Kennington III
48381b7621
nixos-artwork: Make into a derivation and use fetchfromgithub
2015-06-08 18:32:32 -07:00
William A. Kennington III
ddafa487fc
dnstop: Update to 20140915
2015-06-08 17:59:09 -07:00
William A. Kennington III
8d4c5c956d
ethtool: 3.18 -> 4.0
2015-06-08 17:45:31 -07:00
William A. Kennington III
6c00f2105a
iw: 3.15 -> 4.1
2015-06-08 17:41:10 -07:00
Pascal Wittmann
e35c9afcff
Merge pull request #8237 from bobvanderlinden/zopfli-remove-maintainer
...
zopfli: removed roconnor as a maintainer
2015-06-08 23:20:54 +02:00
William A. Kennington III
240338638e
openjdk7: Fix refernces to the bootstrap
2015-06-08 13:56:29 -07:00
Bob van der Linden
e593a8d3bf
zopfli: removed roconnor as a maintainer
...
roconnor was added as a maintainer by accident
2015-06-08 19:41:45 +02:00
Arseniy Seroka
ae6d056188
Merge pull request #8229 from KoviRobi/vips-nip-8.0.2
...
Major update to vips and nip2 to 8.0.2, changes:
2015-06-08 19:49:41 +03:00
Bart Brouns
db10561313
init AMB-plugins at 0.8.1
2015-06-08 18:04:43 +02:00
Damien Cassou
5647c894c6
Add carddav-util
2015-06-08 18:03:41 +02:00
Mateusz Kowalczyk
89c68954bd
Merge pull request #8230 from hiberno/rofi-pass
...
rofi-pass: bump to latest revision
2015-06-08 16:55:38 +01:00
hiberno
d07373c632
rofi-pass: bump to latest revision
2015-06-08 17:48:38 +02:00
Tobias Geerinckx-Rice
b2d300e59b
boxfs: work around box.com breaking their API
...
See <https://github.com/drotiro/boxfs2/issues/11 >.
This should soon be fixed upstream. Until then, any bugs are mine.
2015-06-08 16:56:55 +02:00
Tobias Geerinckx-Rice
dd6ceb61fa
netsniff-ng -> 0.5.9-10-gb7ece46
2015-06-08 16:56:54 +02:00
Jaka Hudoklin
b570c644c9
Merge pull request #8223 from offlinehacker/pkgs/rippled/update
...
rippled: Update to 0.28.1
2015-06-08 16:49:39 +02:00
lethalman
6ad663fa90
Merge pull request #8078 from magnetophon/magnetophonDSP-master
...
init CharacterCompressor CompBus RhythmDelay constant-detune-chorus
2015-06-08 16:42:11 +02:00
Pascal Wittmann
794feb7879
opkg: update from 0.2.4 to 3.0.0
2015-06-08 16:19:42 +02:00
Pascal Wittmann
0ed4ad8c63
pdf2djvu: update from 0.7.17 to 0.7.21, adopt it
2015-06-08 16:19:42 +02:00
Pascal Wittmann
48006ee291
cherrytree: update from 0.35.7 to 0.35.8
2015-06-08 16:19:42 +02:00
Mateusz Kowalczyk
9bb5c2c488
Merge pull request #8077 from Ericson2314/agda
...
Interactive `env` for developing Agda packages, and misc cleanup
2015-06-08 14:57:38 +01:00
aszlig
87b9cceefd
linux-testing: Update to new version 4.1-rc7.
...
Includes fixes for DRM, MIPS, iSCSI, ALSA, USB, bna and wireless and
more. Full diff can be found here:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/diff/?id=v4.1-rc7&id2=v4.1-rc6
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-06-08 15:12:47 +02:00
lethalman
9ed71a26fe
Merge pull request #8094 from rzetterberg/antimony
...
Adds antimony 0.8.0b CAD program
2015-06-08 15:04:01 +02:00
lethalman
7fb476c99e
Merge pull request #8046 from gebner/ibus-version-bump
...
Update: ibus, ibus-qt, ibus-anthy
2015-06-08 14:34:20 +02:00
Jaka Hudoklin
43c9162255
ripple-rest: commit forgotten changes
2015-06-08 14:32:19 +02:00
lethalman
f37c81323e
Merge pull request #8180 from froozen/master
...
Add the tewi font
2015-06-08 14:27:57 +02:00
lethalman
850f775a98
Merge pull request #8213 from robbinch/pkg-wavegain
...
wavegain: show correct maintainer
2015-06-08 14:26:36 +02:00
Jaka Hudoklin
e83aa95669
Merge pull request #8220 from offlinehacker/nixos/ripple-rest2
...
Add ripple rest module
2015-06-08 14:25:47 +02:00
Jaka Hudoklin
161418537c
rippled: Update to 0.28.1
2015-06-08 14:15:07 +02:00
Pascal Wittmann
c46889ea42
ipsec-tools: apply debians patch to fix CVE-2015-4047
2015-06-08 13:56:42 +02:00
Jaka Hudoklin
2e5dbc4746
Add ripple rest module
2015-06-08 13:48:23 +02:00
Pascal Wittmann
8895716869
zeromq: update from 4.0.5 to 4.0.6, fixes CVE-2014-9721
2015-06-08 13:31:27 +02:00
Arseniy Seroka
24a8c23617
Merge pull request #8212 from ktosiek/sstp-1.0.10
...
Bump sstp to 1.0.10
2015-06-08 14:28:27 +03:00
Arseniy Seroka
b04ba33e40
Merge pull request #8211 from ktosiek/dfeet-0.3.9
...
Bump d-feet to 0.3.9
2015-06-08 14:28:20 +03:00
Jaka Hudoklin
256692cac1
Merge pull request #8221 from offlinehacker/kubernetes/update
...
Update kubernetes to 0.18.0, fix module
2015-06-08 13:24:18 +02:00
Pascal Wittmann
9cd6786acb
elasticsearch: update from 1.4.4 to 1.4.5, potenially fixes CVE-2015-3337
2015-06-08 13:21:58 +02:00
Jaka Hudoklin
392fc849e4
Update kubernetes to 0.18.0, fix module
2015-06-08 13:10:32 +02:00
Pascal Wittmann
6ceecb5548
zsh: update from 5.0.7 to 5.0.8
...
add myself as maintainer
2015-06-08 12:55:38 +02:00
Vladimír Čunát
9f7d7adb05
Revert "kmod-blacklist-ubuntu: update to Vivid"
...
This reverts commit 0307c27219
.
The only change was blacklisting bochs-drm, but that breaks our VM setup
and I don't see a good reason to do that on the Ubuntu issue
(just some PowerPC failure).
Defaulting to qxl driver might be better anyway, but I'm not venturing
such changes now.
2015-06-08 12:34:24 +02:00
Pascal Wittmann
ef1c9cdeef
llpp: update to HEAD
2015-06-08 12:30:23 +02:00
Eelco Dolstra
cea6207a05
Merge pull request #8219 from KoviRobi/remind-3.1.14
...
Remind update to 3.1.14, changes:
2015-06-08 12:24:33 +02:00
Pascal Wittmann
eac4f2aa31
calibre: update from 2.29.0 to 2.30.0
2015-06-08 12:17:32 +02:00
Jaka Hudoklin
8b79a09f78
Merge pull request #7553 from offlinehacker/pkgs/python-packages/graphite-beacon
...
Add graphite beacon package and module
2015-06-08 12:17:01 +02:00
Kovacsics Robert (NixOS-SSD2)
f4dce11c19
Major update to vips and nip2 to 8.0.2, changes:
...
- Much better conversion to greyscale
- More efficient use of file descriptors
- Rewritten TIFF pyramid creator
- Removed old stuff
See http://libvips.blogspot.co.uk/2015/05/whats-new-in-80.html
and https://github.com/jcupitt/libvips/blob/master/ChangeLog
2015-06-08 10:56:00 +01:00
Peter Simons
b5f868f48b
Merge pull request #8150 from ts468/upstream.calamares
...
Add Calamares: A distribution independent installer framework.
2015-06-08 11:48:41 +02:00
Kovacsics Robert (NixOS-SSD2)
8e7f4d3c33
Remind update to 3.1.14, changes:
...
* Version 3.1 Patch 14 - 2014-04-24
- NEW FEATURE: Putting the line __EOF__ in a .rem file causes Remind to
treat it as end-of-file.
- IMPROVEMENT: Use better PNG images for moons in the HTML display
- CHANGE: Author name updated from "David" to "Dianne"
- BUG FIX: The "-n" command-line option should really run in
"ADVANCE_MODE" rather than "CAL_MODE" internally; otherwise, the
substitution sequences may be misinterpreted.
- BUG FIX: A typo in clearing out MD5 sum context has been fixed.
- BUG FIX: Typo in Spanish translation was fixed.
2015-06-08 10:36:18 +01:00
Thomas Strobel
d3435d7ce0
New package: Calamares
...
Add Calamares, a distribution independent installer framework.
2015-06-08 11:22:09 +02:00
Thomas Strobel
02b7901023
New flag for compiling libyaml-cpp as PIC.
2015-06-08 11:17:50 +02:00
Anders Papitto
50e9fa5719
dirt: include sound samples ( close #8179 )
...
also add self as maintainer
2015-06-08 10:16:03 +02:00
Jude Taylor
b9de32de5b
update GHC HEAD and configuration
2015-06-08 00:48:34 -07:00
Lengyel Balázs
c3d9e90f0e
Updated apcupsd to version 3.14.13
2015-06-08 09:03:30 +02:00
William A. Kennington III
6e68e874b5
openjdk8: Fix refernces to the bootstrap
2015-06-08 00:00:12 -07:00
William A. Kennington III
a5ef488b11
opendjk: Make boostraps for each major version and update openjdk7
2015-06-07 21:02:02 -07:00
William A. Kennington III
a8d1010027
icedtea: Remove
2015-06-07 21:02:02 -07:00
William A. Kennington III
0cc68fa478
openjdk-make-bootstrap: Use openjdk8
2015-06-07 21:02:02 -07:00
William A. Kennington III
bdcb721546
java: Refactor top level and build ordering
2015-06-07 21:02:02 -07:00
Thomas Tuegel
e0db2213fc
Update qt-5.4.1 -> qt-5.4.2
2015-06-07 22:18:35 -05:00
Robbin C
757942ddbf
wavegain: show correct maintainer
2015-06-08 10:31:30 +08:00
Tobias Geerinckx-Rice
09b95b88a5
python-packages: add buttersink 0.6.6
2015-06-08 01:19:07 +02:00
Tomasz Kontusz
380c7d1f72
Bump sstp to 1.0.10
2015-06-08 00:23:46 +02:00