Bjørn Forsman
52eab0376c
spotify: 1.0.49.125.g72ee7853-83 -> 1.0.49.125.g72ee7853-111
2017-02-23 22:20:49 +01:00
Pascal Wittmann
04dcda3da4
homebank: 5.1.3 -> 5.1.4
2017-02-23 22:18:45 +01:00
romildo
f67a097488
idea.clion: 2016.3.2 -> 2016.3.3
2017-02-23 16:55:18 -03:00
Profpatsch
8e54fced98
flpsed: ghostscript patch, fixes, new url
...
gs was called at runtime, fix the execvp call.
The url changed to its own domain.
A little face-lift for the package code.
2017-02-23 18:52:30 +01:00
Demin Dmitriy
db0316d8b2
opera: 42.0.2393.517 -> 43.0.2442.991
2017-02-23 19:25:20 +03:00
Jascha Geerds
11d86725df
idea-ultimate: 2016.3.3 -> 2016.3.4
2017-02-23 15:07:59 +01:00
Nikolay Amiantov
0c50a62912
octoprint: jailbreak Jinja2
2017-02-23 13:15:58 +03:00
Peter Hoeg
84fd5daafc
terragrunt: 0.10.2 -> 0.10.3
2017-02-23 17:14:45 +08:00
Peter Hoeg
1c466059d1
msmtp: clean up msmtpq
...
- replace relative bin paths with absolute filenames in the nix store
- make the log and queue paths configurable
- log to the journal on linux
2017-02-23 15:57:53 +08:00
Peter Hoeg
f4d188b37a
msmtp: 1.6.4 -> 1.6.6
2017-02-23 15:56:28 +08:00
Jörg Thalheim
f25ff18c98
cmus: let ffmpeg handle mp4/aac
2017-02-23 01:47:45 +01:00
Jörg Thalheim
e868669c4a
cmus: mp4 support
2017-02-23 01:47:45 +01:00
Jörg Thalheim
744ce7e8e2
cmus: enable aac support
2017-02-23 01:47:45 +01:00
Thomas Lotze
4689dd2a79
cmus: enable opus support (re #23051 )
...
Opus support was enabled since it didn't work in the past; I found it to be
working when I gave it a try now.
2017-02-23 01:47:44 +01:00
Peter Hoeg
354243c784
Merge pull request #23091 from peterhoeg/u/lynx
...
lynx: 2.8.8rel.2 -> 2.8.9dev.11
2017-02-23 07:35:28 +08:00
Peter Hoeg
a3bf71b76f
lynx: 2.8.8rel.2 -> 2.8.9dev.11
2017-02-23 07:32:55 +08:00
Badi' Abdul-Wahid
edcdd4b761
super-user-spark: switch to haskellPackages LTS 8.x GHC 8.0.2
...
This updates super-user-spark to support the recent change in nixpkgs
of the haskellPackages to LTS 8.x using GHC 8.0.2 [1].
It also includes some recent changes to the super-user-spark package,
upgraded to commit ab86356 [2].
[1]: https://www.mail-archive.com/nix-dev@lists.science.uu.nl/msg31818.html
[2]: ab8635682d
2017-02-22 15:19:51 -05:00
Vladimír Čunát
145d3ea81c
Merge branch 'master' into staging
2017-02-22 17:47:49 +01:00
Vladimír Čunát
1d1dc2dcc3
open-vm-tools: fixup build with glibc-2.25
2017-02-22 16:54:07 +01:00
Vladimír Čunát
7ccaa9e652
solvespace: fixup build with glibc-2.25
2017-02-22 16:45:08 +01:00
Moritz Ulrich
51134cdbfe
digikam5: Fix build after kde merge.
2017-02-22 16:44:08 +01:00
Michael Raskin
194d137bd3
wireshark: patch for CVE-2017-6041
2017-02-22 14:17:02 +01:00
Graham Christensen
cc4919da89
xen: patch for XSAs: 197, 199, 207, 208, 209
...
XSA-197 Issue Description:
> The compiler can emit optimizations in qemu which can lead to double
> fetch vulnerabilities. Specifically data on the rings shared
> between qemu and the hypervisor (which the guest under control can
> obtain mappings of) can be fetched twice (during which time the
> guest can alter the contents) possibly leading to arbitrary code
> execution in qemu.
More: https://xenbits.xen.org/xsa/advisory-197.html
XSA-199 Issue Description:
> The code in qemu which implements ioport read/write looks up the
> specified ioport address in a dispatch table. The argument to the
> dispatch function is a uint32_t, and is used without a range check,
> even though the table has entries for only 2^16 ioports.
>
> When qemu is used as a standalone emulator, ioport accesses are
> generated only from cpu instructions emulated by qemu, and are
> therefore necessarily 16-bit, so there is no vulnerability.
>
> When qemu is used as a device model within Xen, io requests are
> generated by the hypervisor and read by qemu from a shared ring. The
> entries in this ring use a common structure, including a 64-bit
> address field, for various accesses, including ioport addresses.
>
> Xen will write only 16-bit address ioport accesses. However,
> depending on the Xen and qemu version, the ring may be writeable by
> the guest. If so, the guest can generate out-of-range ioport
> accesses, resulting in wild pointer accesses within qemu.
More: https://xenbits.xen.org/xsa/advisory-199.html
XSA-207 Issue Description:
> Certain internal state is set up, during domain construction, in
> preparation for possible pass-through device assignment. On ARM and
> AMD V-i hardware this setup includes memory allocation. On guest
> teardown, cleanup was erroneously only performed when the guest
> actually had a pass-through device assigned.
More: https://xenbits.xen.org/xsa/advisory-207.html
XSA-209 Issue Description:
> When doing bitblt copy backwards, qemu should negate the blit width.
> This avoids an oob access before the start of video memory.
More: https://xenbits.xen.org/xsa/advisory-208.html
XSA-208 Issue Description:
> In CIRRUS_BLTMODE_MEMSYSSRC mode the bitblit copy routine
> cirrus_bitblt_cputovideo fails to check wethehr the specified memory
> region is safe.
More: https://xenbits.xen.org/xsa/advisory-209.html
2017-02-22 08:00:45 -05:00
Peter Hoeg
409dac4155
Merge branch 'u/tg' into real_master
2017-02-22 20:14:26 +08:00
Peter Hoeg
494462e857
terragrunt: 0.10.1 -> 0.10.2
2017-02-22 20:12:25 +08:00
Franz Pletz
67018e7759
pymol: fix evaluation
...
cc #23007 @Mounium @Mic92
2017-02-22 08:48:42 +01:00
Franz Pletz
2a228bdc9b
Merge pull request #23064 from NeQuissimus/rkt_1_25_0
...
rkt: 1.24.0 -> 1.25.0
2017-02-22 07:49:09 +01:00
Mounium
eb688ac0a7
pymol: init at 1.8.4 ( #23007 )
2017-02-22 01:35:09 +01:00
Tim Steinbach
8b60413e95
rkt: 1.24.0 -> 1.25.0
2017-02-21 18:51:34 -05:00
Peter Hoeg
4ecaed783b
utox: remove unnecessary line
2017-02-22 07:49:02 +08:00
Peter Hoeg
2cd286b3cf
Merge branch 'u/utox' into real_master
2017-02-22 07:33:56 +08:00
Peter Hoeg
2805ac54d8
utox: 0.12.2 -> 0.13.0
2017-02-22 07:33:31 +08:00
Shea Levy
fd732dec88
zoom-us: bump
2017-02-21 14:15:44 -05:00
Vladimír Čunát
cc8104f9bb
ekiga: mark as broken for now
...
/cc maintainer @7c6f434c.
2017-02-21 19:03:33 +01:00
Vladimír Čunát
3d600726b3
xen: fixup build with glibc-2.25
2017-02-21 18:26:52 +01:00
Domen Kožar
ba267839d1
Merge pull request #23047 from FlorentBecker/remove_pijul
...
pijul: remove
2017-02-21 16:28:19 +01:00
Joachim F
2379d5e537
Merge pull request #23033 from mdorman/emacs-updates
...
Automated emacs package updates
2017-02-21 16:27:00 +01:00
Florent Becker
0a840d4f41
pijul: remove
...
This version is not working, and it is not even a release upstream
2017-02-21 15:34:28 +01:00
Frederik Rietdijk
5bd6331b29
Merge pull request #22944 from johbo/add-trytond
...
trytond: init at 4.2.1
2017-02-21 08:03:43 +01:00
Pradeep Chhetri
be30dcefb6
marathon: 1.3.6 -> 1.4.1 ( #22935 )
2017-02-21 05:52:10 +01:00
romildo
e6fd2284f5
albert: 0.8.11 -> 0.9.3
2017-02-20 21:46:36 -05:00
Michael Alan Dorman
e2487c26b4
melpa-packages: 2017-02-20
...
Removals:
- malabar-mode: removed from melpa
2017-02-20 20:18:21 -05:00
Michael Alan Dorman
602fbdbf48
melpa-stable-packages: 2017-02-20
...
Removals:
- malabar-mode: removed from melpa
2017-02-20 20:18:20 -05:00
Michael Alan Dorman
c5d211df4c
elpa-packages: 2017-02-20
2017-02-20 20:18:20 -05:00
Johannes Bornhold
6f8a44820e
trytond: init at 4.2.1
2017-02-20 23:03:17 +01:00
Franz Pletz
c302cb4910
gitlab: 8.16.4 -> 8.16.6
2017-02-20 21:53:17 +01:00
Rafael de F. Ferreira
1daf49ccf4
idea-community: 2016.3.3 -> 2016.3.4
2017-02-20 21:25:20 +01:00
Graham Christensen
69a0e9ea11
Merge pull request #22985 from Kendos-Kenlen/master
...
idea.webstorm: 2016.3.2 -> 2016.3.3
2017-02-20 10:01:31 -05:00
Thomas Tuegel
7fa06b3cd2
Merge pull request #22991 from layus/deprecate-kde4-ktikz
...
qtikz: update to Qt5; remove ktikz
2017-02-20 08:37:47 -06:00
Nikolay Amiantov
ec2c9d57b5
Merge pull request #22568 from abbradar/chromium-updates
...
Chromium updates
2017-02-20 15:49:04 +03:00
Robin Gloster
dcba6eae1b
Merge pull request #22116 from LnL7/darwin-cmus
...
cmus: fix darwin
2017-02-20 13:02:30 +01:00
Frederik Rietdijk
c79371b823
kdeconnect: 1.0 -> 1.0.3
2017-02-20 11:44:14 +01:00
Frederik Rietdijk
ffe6935ea8
kile: 2016-10-24 -> 2017-02-09
2017-02-20 11:44:14 +01:00
Frederik Rietdijk
9d48d3774e
Merge pull request #22713 from richardlarocque/antfs-cli
...
antfs-cli and openant: init at unstable-2017-02-11
2017-02-20 09:06:02 +01:00
Richard Larocque
13884d6de1
antfs-cli: init at unstable-2017-02-11
2017-02-19 16:22:21 -08:00
Graham Christensen
a21455d989
firefox-bin: Add gpg verification to updater ( #22270 )
2017-02-19 18:33:31 +00:00
Maximilian Bosch
10a453c61b
geogebra: add ma27 as maintainer
2017-02-19 16:51:01 +01:00
Maximilian Bosch
5d62724e27
geogebra: 5-0-328-0 -> 5-0-331-0
2017-02-19 16:44:49 +01:00
vbgl
d31577cfd3
Merge pull request #22871 from FlorentBecker/default_ocaml_402
...
Default ocaml 402
2017-02-19 15:54:54 +01:00
Tuomas Tynkkynen
e5e1bdca53
firefox, thunderbird: Use common-updater/update-source-version script
...
Replace the custom patching code with the common script.
Also use callPackage and makeBinPath
2017-02-19 16:51:17 +02:00
Florent Becker
e7953d20d2
orpie: fix build with ocaml 4.02+
2017-02-19 13:05:45 +01:00
Florent Becker
47cb2a9f3e
monotone-viz: fix build with ocaml 4.02+
2017-02-19 13:05:45 +01:00
Guillaume Maudoux
9016be4589
qtikz: update to Qt5; remove ktikz
2017-02-19 12:26:51 +01:00
aszlig
6d6cf3f24a
Merge pull request #22551 (paperwork locale path)
...
Fixes the locale path, which I got wrong in
7199f1bd94
.
It should have been "$out/share", because Paperwork itself already
appends /locale to the path.
Thanks to @symphorien for the fix.
2017-02-19 06:36:24 +01:00
Gauthier POGAM--LE MONTAGNER
326fa70896
idea.webstorm: 2016.3.2 -> 2016.3.3
2017-02-19 03:10:50 +01:00
Peter Hoeg
993d2db029
libreoffice-fresh: build on hydra
2017-02-19 00:09:41 +01:00
ndowens
e3f5ebd38f
worker: add version to name and so some minor cleanups ( #22949 )
2017-02-18 20:26:18 +01:00
ndowens
bd97e19d01
epic5: changed rm, cp, chmod to use pkgs.coreutils
...
epic5: removed pkgs from pkgs.coreutils
modified: pkgs/applications/networking/irc/epic5/default.nix
2017-02-18 13:17:03 -06:00
Frederik Rietdijk
8c3480f3b9
Merge pull request #22828 from matthiasbeyer/update-my-pkgs
...
Updates for some of my packages
2017-02-18 14:09:51 +01:00
Franz Pletz
41933918b7
Merge pull request #22918 from NeQuissimus/atom_1_14_3
...
atom: 1.14.1 -> 1.14.3
2017-02-18 13:25:11 +01:00
Matthias Beyer
92f66c2520
khard: 0.11.3 -> 0.11.4
2017-02-18 12:12:22 +01:00
obadz
0c488ed8f0
keepass: 2.34 -> 2.35
2017-02-18 10:42:59 +00:00
obadz
1f9d33b9e4
google-drive-ocamlfuse: 0.5.22 -> 0.6.17
2017-02-18 10:42:59 +00:00
Peter Hoeg
a3410e2912
Merge pull request #22933 from peterhoeg/u/cal
...
calibre: 2.76.0 -> 2.79.1
2017-02-18 16:58:14 +08:00
Peter Hoeg
43dbd916ef
calibre: 2.76.0 -> 2.79.1
2017-02-18 16:57:13 +08:00
Vladimír Čunát
70cadb6cbd
krita: 3.1.1 -> 3.1.2.1
...
This fixes build after KDE updates in f228ea521
#22698 .
/cc maintainer @abbradar. I only tested starting it up.
2017-02-18 09:04:03 +01:00
Vladimír Čunát
432dba859e
Merge branch 'staging'
...
A security update of libxml2 is within.
2017-02-18 08:59:29 +01:00
Tim Steinbach
376b377775
atom: 1.14.1 -> 1.14.3
2017-02-17 16:13:18 -05:00
ndowens
e67416f7e2
awesome-4.0: Add hicolor-icon-theme for theme support
...
Closes #22888 .
2017-02-17 21:58:28 +03:00
Matthias Herrmann
89a0365063
sweethome3d: version compatible with master and 16.09
...
[Bjørn: let the package function take 'libXxf86vm' as input instead of
'xorg' (the whole set).]
2017-02-17 19:28:52 +01:00
Orivej Desh
47ded42788
lumail: init at 2.9
2017-02-17 12:14:20 +01:00
Vladimír Čunát
24b1c6ee88
subsurface: disable parallel make
...
It was failing on Hydra:
http://hydra.nixos.org/build/48847277/nixlog/2/raw
2017-02-17 11:39:21 +01:00
Robin Gloster
b3c58dc38b
Merge pull request #22222 from afldcr/polybar-3.0.3
...
polybar: init at 3.0.4
2017-02-17 02:49:44 +01:00
romildo
53c2e38e0d
qbittorrent: 3.3.7 -> 3.3.10
2017-02-17 02:45:15 +01:00
Robin Gloster
4324ff2f73
sflphone: remove
2017-02-17 00:14:10 +01:00
Robin Gloster
538aed6dea
twinkle: remove
2017-02-17 00:14:07 +01:00
Robin Gloster
fa98d41787
umurmr: 0.2.16 -> 0.2.16a
2017-02-17 00:13:11 +01:00
Robin Gloster
9d39e8b974
imapfilter: 2.6.3 -> 2.6.10
2017-02-17 00:11:22 +01:00
Vladimír Čunát
e962a3c95f
Merge branch 'master' into staging
2017-02-16 19:02:37 +01:00
James Alexander Feldman-Crough
2ad43792ad
Remove redundant "fetchSubmodules" attr
2017-02-16 08:54:28 -08:00
Nikolay Amiantov
a72dc9f3bf
compton: 0.1_beta2 -> 0.1_beta2.5
2017-02-16 17:50:58 +03:00
Nikolay Amiantov
434affb14d
openbox: fix openbox-xdg-autostart
...
Also add more optional dependencies.
2017-02-16 15:32:03 +03:00
Peter Hoeg
de31599f3f
Merge pull request #22859 from peterhoeg/u/tf
...
terraform: 0.8.6 -> 0.8.7
2017-02-16 18:33:11 +08:00
Peter Hoeg
0418f784b2
terraform: 0.8.6 -> 0.8.7
2017-02-16 16:19:41 +08:00
Graham Christensen
b3c6449e13
Merge pull request #22844 from LnL7/vim-8.0.0329
...
vim: 8.0.0075 -> 8.0.0329
2017-02-15 21:27:43 -05:00
Jascha Geerds
900fc49013
Merge pull request #22775 from peterhoeg/u/qtox
...
tox clients and libraries updates
2017-02-15 23:05:14 +01:00
Daiderd Jordan
d2d12c2f4c
vim: 8.0.0075 -> 8.0.0329
2017-02-15 21:00:59 +01:00
Robert Helgesson
0969569902
eclipse-plugin-yedit: init at 1.0.20.201509041456
2017-02-15 20:53:37 +01:00
Aycan iRiCAN
2ce7dd7fbb
emacs: fix sha256 hashes of savannah patches
2017-02-15 18:33:01 +03:00
Jaanus Torp
8978a9ee48
sway: 0.9 -> 0.11 ( #22835 )
2017-02-15 16:28:01 +01:00
Arseniy Seroka
c16bfb8ac1
Merge pull request #22832 from rnhmjoj/zathura
...
zathura: 0.3.6 -> 0.3.7
2017-02-15 18:19:06 +03:00
Arseniy Seroka
e6ea10414c
Merge pull request #22831 from rnhmjoj/girara
...
girara: 0.2.6 -> 0.2.7
2017-02-15 18:18:41 +03:00
rnhmjoj
8066835454
zathura: 0.3.6 -> 0.3.7
2017-02-15 15:43:57 +01:00
Michael Raskin
13a1d38f55
irssi: 1.0.0 -> 1.0.1
2017-02-15 15:28:24 +01:00
Michael Raskin
c731738ecc
graphviz_2_0: hide inside monotoneViz
...
The old Graphviz version is vulnerable, but monotone-viz will never feed
it bad input.
2017-02-15 15:10:00 +01:00
rnhmjoj
6462775193
girara: 0.2.6 -> 0.2.7
2017-02-15 14:58:19 +01:00
Matthias Beyer
3de22bb760
khard: 0.11.1 -> 0.11.3
...
From the README of khard:
# vobject version is pinned to 0.9.2 for now because of bug
# https://github.com/eventable/vobject/issues/39
This is why we explicitely pin the dependency "vobject" via a new python
package in the expression here.
2017-02-15 13:55:27 +01:00
Matthias Beyer
7620ea63b9
khal: 0.8.4 -> 0.9.2
2017-02-15 13:51:05 +01:00
Matthias Beyer
f370cbbfdf
hstr: 1.19 -> 1.22
2017-02-15 13:43:19 +01:00
Matthias Beyer
1017489b96
buku: 2.7 -> 2.8
2017-02-15 13:33:43 +01:00
Matthias Beyer
87650525ce
bean-add: 2016-12-02 -> 2017-01-20
2017-02-15 13:31:02 +01:00
Peter Hoeg
f53900d142
Merge pull request #22821 from peterhoeg/u/tg
...
terragrunt: 0.10.0 -> 0.10.1
2017-02-15 18:01:51 +08:00
Peter Hoeg
e1165abcb8
terragrunt: 0.10.0 -> 0.10.1
2017-02-15 17:08:23 +08:00
Kamil Chmielewski
1a77e4141d
chromium: flashplayer: 24.0.0.194 -> 24.0.0.221
...
[Critical security fix] - see #22792
2017-02-15 09:51:55 +01:00
Vladimír Čunát
35b2159671
Merge branch 'master' into staging
...
Over 11k rebuilds on master.
2017-02-15 08:41:35 +01:00
Profpatsch
7ee777d784
picard: 1.32. -> 1.4
2017-02-15 07:04:12 +01:00
Franz Pletz
9ddaa71b6d
Merge pull request #22809 from mimadrid/update/shotwell-0.25.5
...
shotwell: 0.25.2 -> 0.25.5
2017-02-15 06:49:49 +01:00
mimadrid
e3d7ce842b
shotwell: 0.25.2 -> 0.25.5
2017-02-14 23:59:00 +01:00
Tom Doggett
c2a21d4d7b
gcalcli: init at 3.4.0 ( #22725 )
2017-02-14 23:25:42 +01:00
Franz Pletz
544ac40ab3
Merge pull request #22798 from Ma27/update/geogebra
...
geogebra: 5-0-320-0 -> 5-0-328-0
2017-02-14 22:16:04 +01:00
Thomas Tuegel
c5c4380205
Merge pull request #21366 from sh01/digikam_patch_lensfun_0.3.2
...
digikam: Add patch to fix compilation against Lensfun 0.3.2
2017-02-14 13:00:27 -06:00
Thomas Tuegel
f228ea5215
Merge pull request #22698 from FRidh/kde
...
KDE: update frameworks and applications
2017-02-14 12:54:39 -06:00
Thomas Tuegel
d440052b64
Merge pull request #22787 from mdorman/emacs-updates
...
Automated emacs package updates
2017-02-14 12:49:50 -06:00
Vladimír Čunát
7b32b8a474
Merge #22792 : flashplayer: 24.0.0.194 -> 24.0.0.221
...
Critical security + bugfix update!
2017-02-14 18:54:34 +01:00
Benjamin Staffin
b42f820bdc
Merge pull request #22745 from vdemeester/docker_1_13_1
...
docker: 1.13.0 -> 1.13.1
2017-02-14 11:47:40 -05:00
Maximilian Bosch
d95868e980
geogebra: 5-0-320-0 -> 5-0-328-0
2017-02-14 17:43:58 +01:00
Eelco Dolstra
314dd9215b
Merge pull request #16654 from awakenetworks/parnell/setcap-wrappers
...
Adding setcap-wrapper functionality to Nix
2017-02-14 16:25:06 +01:00
Joachim F
943951ff53
Merge pull request #22529 from neilmayhew/fix/spideroak
...
spideroak: enable it to appear in the application menus
2017-02-14 16:02:43 +01:00
Joachim F
79476a956c
Merge pull request #22510 from rongcuid/fix/ngspice-update
...
Fix/ngspice add XSPICE and CIDER support
2017-02-14 15:57:13 +01:00
Thomas Tuegel
d43738ae93
notmuch: don't double-compress man pages
2017-02-14 08:54:10 -06:00
taku0
adcd9bc884
flashplayer: 24.0.0.194 -> 24.0.0.221
2017-02-14 21:13:04 +09:00
Michael Alan Dorman
25a2f90731
melpa-packages: 2017-02-13
...
Removals:
- ebib-handy: removed from melpa
- goose-theme: repository removed
2017-02-14 06:55:38 -05:00
Michael Alan Dorman
cd90c7fe79
melpa-stable-packages: 2017-02-13
2017-02-14 06:55:36 -05:00
Michael Alan Dorman
58b5c49ddd
elpa-packages: 2017-02-13
2017-02-14 06:55:34 -05:00
Michael Alan Dorman
5ebf37f749
org-packages: 2017-02-13
2017-02-14 06:55:32 -05:00
Tristan Helmich
8d853d0190
gitlab: 8.16.3 -> 8.16.4
2017-02-14 11:16:36 +01:00
Peter Hoeg
55e1d04e91
qtox: 1.5.0 -> 1.8.1
2017-02-14 15:00:42 +08:00
Peter Hoeg
e110f38bd4
utox: 0.9.8 -> 0.12.2
2017-02-14 15:00:22 +08:00
Peter Hoeg
a66e04d3be
toxic: 20160728 -> 0.7.2
2017-02-14 14:59:30 +08:00
Peter Hoeg
5a88ab3f55
tox-prpl: 20141202 -> 0.5.1
2017-02-14 14:58:28 +08:00
Franz Pletz
ed8a59f44a
Merge pull request #22766 from mimadrid/update/qutebrowser-0.9.1
...
qutebrowser: 0.9.0 -> 0.9.1
2017-02-14 05:42:15 +01:00
Robert Helgesson
08779a71e9
eclipse-plugin-jdt: 4.6 -> 4.6.2
2017-02-14 00:32:58 +01:00
Rongcui Dong
acce1d9ad2
ngspice: Add XSpice and Cider support
2017-02-13 15:23:38 -08:00
Daiderd Jordan
b165de3be5
Merge pull request #22730 from ndowens/master
...
epic5: init at 2.0.1
2017-02-14 00:17:51 +01:00
Parnell Springmeyer
9e36a58649
Merging against upstream master
2017-02-13 17:16:28 -06:00
Robert Helgesson
486b9be579
eclipse-plugin-scala: use stable download URL
...
Unfortunately, the latest release does not appear to be available
through a stable URL.
2017-02-14 00:03:19 +01:00
mimadrid
0b8564ba35
qutebrowser: 0.9.0 -> 0.9.1
2017-02-13 23:57:50 +01:00
Daiderd Jordan
66eba1f3e0
epic5: add configure flags
2017-02-13 23:35:09 +01:00
Thomas Tuegel
74041a42a9
shimbun: init at 20170203.647
2017-02-13 16:02:14 -06:00
ndowens
dda70d9b06
epic5: init at 2.0.1
...
Added conditional to support darwin
Changed comment about buildInputs
Added 's' to optional condition
2017-02-13 15:53:12 -06:00
Franz Pletz
7b6a88c95e
urh: init at 1.3.3
2017-02-13 22:22:13 +01:00
Matthias Herrmann
be7a6eb70e
sweethome3d: 5.2 -> 5.4
2017-02-13 22:09:35 +01:00
Frederik Rietdijk
7e55c3cfc7
kde4.kwooty: broken
2017-02-13 17:00:57 +01:00
Vincent Demeester
a50b4d0e03
docker: 1.13.0 -> 1.13.1
...
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-02-13 16:42:39 +01:00
Franz Pletz
04f72ca64c
Merge pull request #22740 from Mic92/libasyncns
...
gajim: use libasyncns as resolver
2017-02-13 15:08:16 +01:00
Jörg Thalheim
8ed1d3f8d8
gajim: use libasyncns as resolver
2017-02-13 14:11:57 +01:00
Frederik Rietdijk
5de48cc3ed
kde4.digikam: mark as broken
2017-02-13 13:57:54 +01:00
Frederik Rietdijk
d375d7b354
kmplayer: file not available via new mirror either
2017-02-13 09:55:40 +01:00
Frederik Rietdijk
71812be9ef
kwooty: kde-apps url's have changed
2017-02-13 09:55:40 +01:00
Dan Peebles
4c0aae964c
ssm-agent: init at 2.0.633.0
2017-02-13 01:33:33 +00:00
Franz Pletz
12ebd6c058
Merge pull request #22708 from mguentner/ipfs_0_4_5
...
ipfs: 0.4.4 -> 0.4.5 // ipfsapi: 0.4.0 -> 0.4.5-pre
2017-02-13 02:10:01 +01:00
Jörg Thalheim
71ca18ae32
Merge pull request #22716 from ndowens/master
...
worker: init at 3.8.5
2017-02-13 01:21:38 +01:00
Graham Christensen
ad623b8185
Merge pull request #22714 from rycee/fix/subtitle-editor
...
subtitle-editor: fix build
2017-02-12 19:03:28 -05:00
Jörg Thalheim
836ab672a8
worker: fix indentation
2017-02-13 01:02:09 +01:00
Graham Christensen
63d7ff883e
Merge pull request #22457 from peterhoeg/u/suil
...
suil: 0.8.2 -> 0.8.4
2017-02-12 19:00:21 -05:00
ndowens
a77705748b
worker: init at 3.8.5
...
modified: pkgs/top-level/all-packages.nix
pick 8096649e47 worker: init at 3.8.5
squash 9267acbd46 modified: pkgs/top-level/all-packages.nix
worker: updated default.nix license field
Added myself to lib/maintainers.nix
squash 28173341fa worker: updated default.nix license field
squash b22407cf5c Added myself to lib/maintainers.nix
Fixed indent and added missing > in maintainers.nix
Fixed curly bracket indent
2017-02-12 17:45:42 -06:00
Robert Helgesson
446aa6834a
subtitle-editor: fix build
...
Apply Debian patch that makes the project build with later GStreamer
versions.
2017-02-12 21:14:09 +01:00
Vladimír Čunát
31eba21d1d
virtualbox: force xorg-server-1.18 for now
...
This is getting a little hacky, but hopefully it won't break anything.
2017-02-12 21:07:49 +01:00
Vladimír Čunát
2dba30af72
Merge recent staging
...
It's almost finished by Hydra now.
2017-02-12 19:51:01 +01:00
Maximilian Güntner
84e7ad1eb7
ipfs: 0.4.4 -> 0.4.5
...
0.4.5 introduces a new repo format. You might need
to run a migration:
https://github.com/ipfs/fs-repo-migrations
2017-02-12 19:50:54 +01:00
Changlin Li
f6dd263d42
bfg-repo-cleaner: init at 1.12.15
2017-02-12 01:53:08 -05:00
Shea Levy
6651c72df1
proofgeneral_HEAD: Bump
2017-02-11 21:01:56 -05:00
Thomas Tuegel
9eda8f7857
Merge pull request #22675 from FRidh/audacious
...
Audacious: updates and name change Qt5 version
2017-02-11 16:34:17 -06:00
Profpatsch
5b2a71fa25
droopy: init at 20160830 ( #22499 )
2017-02-11 23:06:17 +01:00
Graham Christensen
3684b6b52c
Merge pull request #22682 from xwvvvvwx/update-spotify
...
spotify: 1.0.47.13 -> 1.0.49.125
2017-02-11 16:34:47 -05:00
David Terry
cb4e8919c3
spotify: 1.0.47.13 -> 1.0.49.125
2017-02-11 22:20:42 +01:00
Eelco Dolstra
c4fab214fa
blender: 2.78a -> 2.78b
2017-02-11 22:17:28 +01:00
Vincent Laporte
70d54cdbe3
skrooge: 2.6.0 -> 2.7.0
2017-02-11 20:33:21 +01:00
Joachim F
0b59657e2c
Merge pull request #22505 from tweag/fd/spark-2.1.0
...
spark: 1.6.0 -> 2.1.0
2017-02-11 20:31:59 +01:00
Joachim F
8d0e16a08e
Merge pull request #22641 from vrthra/kakoune-2017-02-09
...
kakoune: 2016-12-30 -> 2017-02-09
2017-02-11 20:15:23 +01:00
Frederik Rietdijk
c512ba7e7e
audaciousQt5: 3.8.1 -> 3.8.2, rename to audacious-qt5
...
The name is changed as well so it won't upgrade from the gtk3 version.
2017-02-11 18:19:17 +01:00
Frederik Rietdijk
a7096107f3
audacious: 3.8 -> 3.8.2
2017-02-11 18:18:27 +01:00
Langston Barrett
a749b73ff8
ne: migrate from (broken) tetex to texlive
...
related: #21770 . vcunat re-indented the longDescription.
2017-02-11 17:57:32 +01:00
Peter Hoeg
9550686be8
subsurface: 4.5.97 -> 4.6.0 ( #22615 )
...
We do a few more things:
- libmarble and libdivecomputer with the subsurface patches have both been
inlined for 2 reasons:
a) nobody else is using these forks
b) they need to be updated in lockstep with subsurface
- instead of building libmarble against qtquick1, we now build using
qtquickcontrols (qtquick2)
- getting rid of qtquick1 also allows us to use the default qt (currently 5.6)
- we get rid of some hacks to deal with library dependencies
- instead of manually overriding various phases, we simply use cmakeFlags to
pass proper parameters
2017-02-11 15:48:18 +01:00
Vincent Laporte
4464199779
smplayer: 17.1.0 -> 17.2.0
2017-02-11 13:55:07 +01:00
Vincent Laporte
980565bca0
smtube: 16.7.2 -> 17.1.0
2017-02-11 13:46:42 +01:00
Vladimír Čunát
2ce45fbf0d
Merge branch 'master' into staging
2017-02-11 12:11:22 +01:00
Frederik Rietdijk
78196fb90d
Merge pull request #22650 from peterhoeg/u/tg
...
terragrunt: 0.9.9 -> 0.10.0
2017-02-11 11:34:53 +01:00
Frederik Rietdijk
7a8e0db011
Merge pull request #22658 from peterhoeg/u/st
...
syncthing-inotify: 0.8.4 -> 0.8.5
2017-02-11 11:28:57 +01:00
Vladimír Čunát
8f5b3ae07a
Merge branch 'master' into staging
2017-02-11 11:22:29 +01:00
Franz Pletz
970753317c
gimpPlugins.gmic: use attribues from gmic expression
2017-02-11 11:11:12 +01:00
Mica Semrick
6f48d6291f
gimpPlugins.gmic: 1.6.5.0 -> 1.7.8
2017-02-11 11:11:12 +01:00
Peter Hoeg
2f755b76d9
syncthing-inotify: 0.8.4 -> 0.8.5
2017-02-11 16:02:52 +08:00
Peter Hoeg
2667a8696b
terragrunt: 0.9.9 -> 0.10.0
2017-02-11 13:03:41 +08:00
Peter Hoeg
5e0dbfe931
Merge branch 'master' into f/nvim-qt
2017-02-11 11:46:37 +08:00
Robert Helgesson
5e8499f447
gpsprune: 18.5 -> 18.6
2017-02-11 00:30:08 +01:00
Robert Helgesson
405ec4496a
josm: 11223 -> 11526
2017-02-11 00:30:08 +01:00
Rahul Gopinath
4f74f9158a
kakoune: 2016-12-30 -> 2017-02-09
2017-02-10 14:06:28 -08:00
Thomas Tuegel
dc75530f26
Merge branch 'emacs-packages'
2017-02-10 13:12:12 -06:00
Thomas Tuegel
ae160b582c
melpa-packages: init w3m at 20170203.647
2017-02-10 13:11:45 -06:00