tilpner
380fce5bc3
minio-client: 2018-07-31T02-28-53Z -> 2018-12-05T22-59-07Z
2018-12-11 13:59:43 +01:00
tilpner
d08187edce
minio: 2018-07-31T02-11-47Z -> 2018-12-06T01-27-43Z
2018-12-11 13:59:36 +01:00
Andrey Pavlov
6153dc76f2
gitAndTools.hub: 2.6.0 -> 2.6.1
2018-12-11 15:48:00 +03:00
David McKay
eb1e6bfde6
Adhere to Styleguide
2018-12-11 12:15:33 +00:00
David McKay
8ad1ef1ea5
wavebox: Update & Clean Dependencies
2018-12-11 11:57:34 +00:00
Sarah Brofeldt
6449501902
Merge pull request #51788 from plumelo/feature/distrobuilder
...
distrobuilder: 2018_06_29 -> 2018_10_04
2018-12-11 12:56:04 +01:00
Sarah Brofeldt
29860f25d5
Merge pull request #51814 from peterhoeg/u/pio
...
platformio: 3.6.1 -> 3.6.2
2018-12-11 12:54:55 +01:00
Sarah Brofeldt
4d34cfcd96
Merge pull request #51851 from veprbl/pr/rivet_bump
...
rivet: 2.6.1 -> 2.6.2
2018-12-11 12:49:48 +01:00
Sarah Brofeldt
b960d1ab0b
Merge pull request #51855 from samueldr/auto/dbeaver/nixpkgs-unstable/5.3.0
...
dbeaver: 5.2.5 -> 5.3.0
2018-12-11 12:49:09 +01:00
Samuel Dionne-Riel
31298112f3
caffe2: Use python36Packages explicitly.
...
Fallout from 0f38d9669f
2018-12-11 11:31:15 +01:00
Samuel Dionne-Riel
f9b16e60da
pythonPackages.protobuf: apply patch for python 3.7 only when building with it
...
Change introduced in #50672 .
The patch does not apply on older protobuf like protobuf3_1
```
$ nix-build -E 'with import ./. { }; python3Packages.protobuf.override { protobuf = protobuf3_1; }'
unpacking sources
unpacking source archive /nix/store/1zdyl0cxaa8ha2v1zp75zzdjd6j99d0m-source
source root is source
setting SOURCE_DATE_EPOCH to timestamp 315619200 of file source/util/python/BUILD
patching sources
applying patch /nix/store/yagx7hvylnnjq7lxbcia0y5lq1r736w3-0a59054c30e4f0ba10f10acfc1d7f3814c63e1a7.patch
patching file google/protobuf/pyext/descriptor.cc
Hunk #1 succeeded at 55 (offset -1 lines).
patching file google/protobuf/pyext/descriptor_containers.cc
patching file google/protobuf/pyext/descriptor_pool.cc
Hunk #1 succeeded at 47 (offset -1 lines).
patching file google/protobuf/pyext/extension_dict.cc
Hunk #1 FAILED at 53.
1 out of 1 hunk FAILED -- saving rejects to file google/protobuf/pyext/extension_dict.cc.rej
patching file google/protobuf/pyext/message.cc
Hunk #1 succeeded at 82 (offset 3 lines).
Hunk #2 succeeded at 1425 (offset -104 lines).
```
Since the patch isn't necessary on python versions older than 3.7, let's
only apply it for version 3.7. This means that most things using older
protobuf implementation will now be able to build when using an older
pythonPackage set (as is most probably the case anyway).
This still leaves protobuf 3.1 using packages hanging, but the errors
will be localized to those that would be breaking anyway with the
upgrade to 3.7 as default python.
2018-12-11 11:30:52 +01:00
Tor Hedin Brønner
f07d5d125d
Merge pull request #51861 from hedning/fix-libcouchbase-test
...
libcouchbase: tests can't run in parallel
2018-12-11 10:52:02 +01:00
Ivan
ca8b128aa1
credstash: add standalone Python application ( #51807 )
...
credstash was only available as a library. Provide it as a standalone
application as well.
In order for this to work, I needed to remove the copy of
the library that's placed in $out/bin and marked executable
during the install phase. Other than the patched shebang and
executable bit, it's identical to the library that's installed to
$out/lib/python3.7/site-packages.
Before the postFixup has run `wrapPythonPrograms`, $out/bin contains
two Python files -- credstash and credstash.py -- where bin/credstash
is the executable you'd expect a user to invoke from the command-line
and bin/credstash.py contains the credstash module, which bin/credstash
imports.
After `wrapPythonPrograms` has run, bin/credstash is a shell
wrapper around the bin/.credstash-wrapped python entrypoint, and
bin/credstash.py is shell wrapper around bin/.credstash.py-wrapped.
Invoking bin/credstash execs bin/.credstash-wrapped, and that python
script attempts to import the credstash module from bin/credstash.py,
the shell wrapper, rather than either bin/.credstash.py-wrapped or
lib/python3.7/site-packages/credstash.py.
This leads to an error:
$ credstash get mykey
Traceback (most recent call last):
File "/nix/store/hk6yma716w6141lcdh509d6qyyi7zm0i-python3.7-credstash-1.15.0/bin/.credstash-wrapped", line 8, in <module>
from credstash import main
File "/nix/store/hk6yma716w6141lcdh509d6qyyi7zm0i-python3.7-credstash-1.15.0/bin/credstash.py", line 2
export PATH='/nix/store/6lm4gi5iv8fbf1b1mm6g3gfnnv63f1gn-python3-3.7.1/bin:/nix/store/hk6yma716w6141lcdh509d6qyyi7zm0i-python3.7-credstash-1.15.0/bin:/nix/store/2n13gf1zdr39ir5dynxlkqndxgy36g08-python3.7-setuptools-40.4.3/bin:/nix/store/mhnqwpa4y1l81zi4cwx989i8h8z9g67l-python3.7-jmespath-0.9.0/bin:/nix/store/qc6q3a2nv4211wyh7q319v6zzd3ab6pc-python3.7-docutils-0.14/bin'${PATH:+':'}$PATH
^
SyntaxError: invalid syntax
If we try using `dontWrapPythonPrograms` to resolve this, runtime
dependency lookups fail:
$ credstash get mykey
Traceback (most recent call last):
File "/run/current-system/sw/bin/credstash", line 7, in <module>
from credstash import main
File "/nix/store/8rmldlvlv1z1xl7w02dy7f5qhkzdrg8z-python3.7-credstash-1.15.0/bin/credstash.py", line 26, in <module>
import boto3
ModuleNotFoundError: No module named 'boto3'
I was able to resolve things by simply removing bin/credstash.py before
the postFixup phase has a chance to wrap any executables. Now the
executable imports the library correctly:
(shell wrapper)
bin/credstash
│ (python executable)
└─> bin/.credstash-wrapped
│ (python library)
└─> lib/python3.7/site-packages/credstash.py
2018-12-11 10:49:27 +01:00
Nathan van Doorn
69ee0a80dc
metamath: 0.167 -> 0.168
2018-12-11 09:10:06 +00:00
Tor Hedin Brønner
7cadf5f76c
libcouchbase: tests can't run in parallel
...
70e2b0bef0
turned on parallel checking for cmake
by default. This doesn't work for libcouchebase.
2018-12-11 09:51:04 +01:00
Peter Hoeg
796d270f53
platformio: 3.6.1 -> 3.6.2
...
Broken on aarch64.
2018-12-11 16:37:07 +08:00
Vincent Laporte
1a04bd4414
ocamlPackages.checkseum: init at 0.0.3
...
Chekseum is an OCaml library which implements ADLER-32 and CRC32C Cyclic
Redundancy Check. It provides 2 implementation, the first in C and the
second in OCaml.
Homepage: https://github.com/mirage/checkseum
2018-12-11 08:12:27 +00:00
Vincent Laporte
e9b43adab7
ocamlPackages.optint: init at 0.0.2
...
This library provide one module Optint which internally uses an int if
you are in a x64 architecture or an int32 (boxed value) if you are in a
x86 architecture.
Homepage: https://github.com/mirage/optint
2018-12-11 08:12:27 +00:00
Ivan Kozik
a9c43dd9ef
jdk11_headless: fix the build on amd64
...
This fixes:
checking user specified JVM feature list...
configure: error: Cannot continue
configure: Unknown JVM features specified: "zgc--enable-headless-only"
configure: The available JVM features are: "aot cds cmsgc compiler1 compiler2 dtrace epsilongc g1gc graal jfr jni-check jvmci jvmti link-time-opt management minimal nmt parallelgc serialgc services static-build vm-structs zero zgc"
configure exiting with result code 1
builder for '/nix/store/1awwzd98crcgxad3srdkv8smhxgiz2qp-openjdk-11.0.1-b13.drv' failed with exit code 1
2018-12-11 06:14:21 +00:00
Katharina Fey
7641a13447
railcar: init at 1.0.4
...
Co-authored-by: Alyssa Ross <hi@alyssa.is>
2018-12-11 00:48:50 +01:00
Samuel Dionne-Riel
1c3079fce3
dbeaver: 5.2.5 -> 5.3.0
2018-12-10 17:48:56 -05:00
Dmitry Kalinkin
99d4e656c5
rivet: 2.6.1 -> 2.6.2
2018-12-10 17:28:30 -05:00
Dmitry Kalinkin
7726c8b0ed
yoda: 1.7.3 -> 1.7.4
2018-12-10 17:28:08 -05:00
Dmitry Kalinkin
86344b3a52
Merge pull request #49488 from eadwu/rstudioWrapper/add-desktop-file
...
rstudioWrapper: include desktop file
2018-12-10 17:18:44 -05:00
Michael Raskin
654d324230
Merge pull request #51756 from markuskowa/upd-lvm2
...
lvm2: 2.02.177 -> 2.03.01
2018-12-10 22:02:02 +00:00
Renaud
c9d58d1321
Merge pull request #51763 from pbogdan/add-ant-theme
...
ant-theme: init at 1.2.0
2018-12-10 22:39:27 +01:00
Renaud
04b3d33260
Merge pull request #51827 from andir/steam
...
steam: ran update-runtime.py
2018-12-10 22:27:29 +01:00
Alexey Shmalko
bc51418f1a
neovim-pygui: remove
2018-12-10 23:19:45 +02:00
Tim Steinbach
475d653afd
sbt-extras: 2018-09-27 -> 2018-12-04
2018-12-10 12:56:39 -05:00
Alyssa Ross
017390185a
Merge pull request #51817 from qolii/linux_hardkernel_4_14_78__4_14_85
...
linux_hardkernel_4_14: 4.14.78-150 -> 4.14.85.152
2018-12-10 17:08:37 +00:00
markuskowa
49996e17ae
Merge pull request #51812 from samueldr/fix/altcoins-and-boost165
...
Fixes three altcoins packages to use boost165
2018-12-10 17:35:12 +01:00
Alyssa Ross
c9ead109ca
Merge pull request #51725 from das-g/geckodriver-0.22.0
...
geckodriver: unstable-2018-02-24 -> 0.22.0
2018-12-10 15:57:45 +00:00
Tor Hedin Brønner
59d1fb6151
Merge pull request #44497 from hedning/gnome-upstream-wayland
...
Add gnome wayland support
2018-12-10 16:53:27 +01:00
Vincent Laporte
655231a612
coqPackages.simple-io: init at 0.2
...
Purely functional IO for Coq.
homepage: https://github.com/Lysxia/coq-simple-io
2018-12-10 15:35:34 +00:00
Vincent Laporte
e21a5e6035
coqPackages_8_9.coq-ext-lib: init at 0.10.0
2018-12-10 15:33:59 +00:00
Jörg Thalheim
6e61418a64
Merge pull request #51833 from Synthetica9/revert-47909-menuconfig
...
Revert "linux: inside nix-shell, allow make menuconfig"
2018-12-10 15:23:07 +00:00
Raphael Borun Das Gupta
1edf950fa2
geckodriver: unstable-2018-02-24 -> 0.22.0
...
Motivation: unstable-2018-02-24 (which reports to be
0.19.1, but probably doesn't correspond to any actual
geckodriver release) isn't compatible with the currently
shipped Firefox version 63.0
closes NixOS/nixpkgs#50380
2018-12-10 16:22:11 +01:00
worldofpeace
ea22830eaf
Merge pull request #51816 from etu/sequeler_0_6_4
...
sequeler: 0.6.3 -> 0.6.4
2018-12-10 10:09:30 -05:00
Tim Steinbach
147f9a0f96
oh-my-zsh: 2018-11-02 -> 2018-11-27
2018-12-10 09:54:19 -05:00
Patrick Hilhorst
ffd47d5b16
Revert "linux: inside nix-shell, allow make menuconfig"
2018-12-10 15:50:36 +01:00
Robert Schütz
e1a837cfb5
seafile-client: 6.2.8 -> 6.2.9
2018-12-10 15:50:30 +01:00
Robert Schütz
25de143c84
seafile-shared: 6.2.8 -> 6.2.9
2018-12-10 15:50:29 +01:00
markuskowa
07b5b553c6
Merge pull request #51811 from veprbl/pr/cernlib_fix
...
cernlib: fix build
2018-12-10 15:30:05 +01:00
Dmitry Kalinkin
6fb67ca241
Merge pull request #44909 from mnacamura/zathura
...
zathura: keep wrapper's WM_CLASS consistent with unwrapped binary
2018-12-10 09:11:55 -05:00
Dmitry Kalinkin
a1ef7fd877
cernlib: restrict supported arches
2018-12-10 17:05:22 +03:00
Alexey Shmalko
ed46fe4f04
Merge pull request #51821 from Tomahna/iris
...
mopidy-iris: 3.31.2 -> 3.31.3
2018-12-10 15:36:25 +02:00
edef
995d224f44
Merge pull request #51664 from erictapen/tlslite-ng-init
...
pythonPackages.tlslite-ng: init at 0.7.5, migrate tlslite references to it, delete tlslite
2018-12-10 13:03:27 +00:00
Markus Kowalewski
aed8699993
grub: add patch for XFS sparse inode feature
...
xfsprogs-4.16 introduced an new on disk format feature
that is not recognized properly by grub. This patch
allows grub to access XFS filesystem created with
xfsprogs >= 4.16.
This upstream patch can be removed for grub-2.03.
2018-12-10 13:52:55 +01:00
Andreas Rammhold
1de88c36cc
steam: ran update-runtime.py
2018-12-10 13:50:06 +01:00
Justin Humm
93bf0a02f5
pythonPackages.tlslite: delete, migrate refs to pythonPackages.tlslite-ng
...
tlslite has a test failure on Python 3.7 [0]. @tomato42, a commiter of
tlslite and author of tlslite-ng said, that tlslite is abandoned (last
commit 2015) and tlslite-ng should be used as a drop in replacement.
[0] https://github.com/trevp/tlslite/issues/121
2018-12-10 13:45:45 +01:00
Timo Kaufmann
f0ea741a9a
Merge pull request #51786 from symphorien/giac-1.5
...
giac: 1.4.9 -> 1.5.0
2018-12-10 13:40:03 +01:00
Maximilian Bosch
f64f8a312f
Merge pull request #51613 from the-kenny/regenerate-node-packages
...
nodePackages: Regenerate
2018-12-10 13:31:53 +01:00
Philipp Middendorf
cd075e5045
pro-office-calculator: init at 1.0.6
2018-12-10 11:49:20 +01:00
Moritz Ulrich
6d21e8d361
nodePackages: Regenerate and fix azure-cli
...
Regenerates the `nixpkgs` NodeJS set (and updates all dependencies
internally).
Also, the `azure-cli` package doesn't build with NodeJS 10, so now
NodeJS 8 is used for `azure-cli`.
Signed-off-by: Maximilian Bosch <maximilian@mbosch.me>
2018-12-10 11:46:46 +01:00
Kevin Rauscher
3b7a7f7b22
mopidy-iris: 3.31.2 -> 3.31.3
2018-12-10 10:55:21 +01:00
Tor Hedin Brønner
d54bfa8f41
gnome3.gnome-session: prevent crash when launching wayland sessions
...
gnome-session inherits GDMS PATH, which is at the moment non-functional. In X11
this didn't matter as the `Xsession` wrapper would populate the environment
beforehand. Wayland sessions doesn't source `Xesssion` (duh), so we patch
`bin/gnome-session` to use absolute paths for `grep` and `bash`.
In addition `bin/gnome-session` is a simple wrapper around
`libexec/gnome-session-binary` mostly responsible for sourcing the users profile
before launching the binary. This made our wrapping of `bin/gnome-session`
ineffective on wayland as the profile would reset the environment. Simply wrap
`libexec/gnome-session-binary` instead.
2018-12-10 10:27:00 +01:00
José Romildo Malaquias
57b2bcf7f5
zafiro-icons: 0.7.3 -> 0.7.7
2018-12-10 07:11:34 -02:00
qoli
f6172b634d
linux_hardkernel_4_14: 4.14.78-150 -> 4.14.85.152
2018-12-10 00:17:08 -08:00
Elis Hirwing
3cdbdd20c4
sequeler: 0.6.3 -> 0.6.4
...
Changelog: https://github.com/Alecaddd/sequeler/releases/tag/v0.6.4
2018-12-10 09:13:37 +01:00
Vincent Laporte
2b66c286be
coqPackages.corn: init at 8.8.1
2018-12-10 07:56:32 +00:00
Dmitry Kalinkin
357f6a8b7e
cernlib: fix build
...
The imake rules contain a comment line that looks like a pragma. Recently imake
in nixpkgs was switched to use tradcpp, which is a bit more strict about
interpreting unknown pragmas. To fix the build, the comments is changed to use
C++ style comments.
2018-12-10 06:38:45 +03:00
Samuel Dionne-Riel
8ded84ec2a
altcoins.sumokoin: use boost165
2018-12-09 21:55:55 -05:00
Samuel Dionne-Riel
af0da18577
altcoins.masari: use boost165
2018-12-09 21:55:54 -05:00
Samuel Dionne-Riel
7a1a98e745
altcoins.dero: use boost165
2018-12-09 21:55:54 -05:00
Jörg Thalheim
48e49d01b6
Merge pull request #51781 from Mic92/openssl-11-docs
...
openssl_1_1: Add "doc" output to contain HTML documentation
2018-12-10 00:43:20 +00:00
Maximilian Bosch
de02111a51
Merge pull request #51534 from jbedo/bowtie2
...
bowtie2: fix missing dependencies
2018-12-10 00:58:51 +01:00
Alexey Shmalko
ef966c1952
Merge pull request #51719 from marsam/postgresql-build-icu-support
...
postgresql: Build with icu support
2018-12-10 01:52:54 +02:00
Jörg Thalheim
d81439db9b
Merge pull request #51785 from rvolosatovs/update/vim-plugins
...
vimPlugins: Update
2018-12-09 23:46:50 +00:00
Symphorien Gibol
29242e472e
giac: build with nauty support
2018-12-09 23:18:58 +01:00
Symphorien Gibol
2253b3e760
nauty: also install libs
2018-12-09 23:18:53 +01:00
Symphorien Gibol
8b4f885264
giac: add missing optional dependencies
2018-12-09 23:18:53 +01:00
Symphorien Gibol
e7801461e0
giac: don't split in multiple outputs for when gui enabled
...
This breaks the Phys and Turtle menu, among other things.
2018-12-09 23:18:53 +01:00
Symphorien Gibol
b5435d0551
giac: 1.4.9 -> 1.5.0
2018-12-09 23:18:46 +01:00
markuskowa
c362f98ba0
Merge pull request #51791 from dotlambda/borgbackup-1.1.8
...
borgbackup: 1.1.7 -> 1.1.8
2018-12-09 22:34:02 +01:00
markuskowa
2e0c3d202c
Merge pull request #51793 from hedning/fix-virtualboxGuestAdditions
...
linuxPackages.virtualboxGuestAdditions: fix hash
2018-12-09 22:29:41 +01:00
Florian Klink
1b30dc84c9
Merge pull request #51746 from hedning/ghostscript-9.26
...
ghostscript: 9.25 -> 9.26
2018-12-09 22:26:47 +01:00
Andreas Rammhold
acf738bc54
smartmontools: drivedb 4548 -> 4852
2018-12-09 21:14:04 +01:00
Vincent Laporte
8c11c9528e
frama-c: Chlorine -> Argon
2018-12-09 19:50:38 +00:00
Tor Hedin Brønner
aad9baeba8
linuxPackages.virtualboxGuestAdditions: fix hash
2018-12-09 20:46:07 +01:00
Sarah Brofeldt
66829ce40e
Merge pull request #51568 from akru/master
...
parity: 2.1.6 -> 2.1.9; parity-beta: 2.2.1 -> 2.2.4
2018-12-09 19:11:29 +01:00
Sarah Brofeldt
8b11a8a336
Merge pull request #51569 from akru/polkadot
...
polkadot: init at 0.2.17
2018-12-09 18:48:06 +01:00
Robert Schütz
3adf8427d2
borgbackup: 1.1.7 -> 1.1.8
2018-12-09 18:01:54 +01:00
Meghea Iulian
efe8be7fd4
distrobuilder: 2018_06_29 -> 2018_10_04
2018-12-09 18:38:23 +02:00
Maximilian Bosch
10fa7c5707
Merge pull request #51391 from mt-caret/dpt-rp1-py
...
dpt-rp1-py: init at 2018-10-16
2018-12-09 17:09:24 +01:00
worldofpeace
307ccf9dd1
plank: hide launcher in pantheon
2018-12-09 10:45:29 -05:00
Roman Volosatovs
75a1dfbe75
vimPlugins: Update
2018-12-09 16:24:46 +01:00
Andrew Dunham
14087abe6a
openssl_1_1: Add "doc" output to contain HTML documentation
...
This prevents cluttering up openssl_1_1.out with many megabytes of
documentation.
Fixes #51659
2018-12-09 14:49:00 +00:00
rnhmjoj
9b484cfb91
monero: build with hidapi
2018-12-09 15:48:55 +01:00
Richard Marko
b4f0faf42f
ipmicfg: 1.28.0 -> 1.29.0
2018-12-09 14:29:28 +01:00
eyJhb
f0f36737e2
displaylink: changed systemd start to not block ( #51760 )
...
Previously during boot, displaylink would hang during boot for the 2
minutes timeout.
2018-12-09 11:48:15 +00:00
Jörg Thalheim
f350904688
Merge pull request #51759 from eyJhb/displaylink-bump
...
displaylink: 4.1.9 -> 4.4.24
2018-12-09 11:46:16 +00:00
Jörg Thalheim
61951656be
Merge pull request #51777 from markuskowa/fix-rtlsdr
...
rtl-sdr: remove linker-fix.patch, unbreak on darwin
2018-12-09 11:45:24 +00:00
eyjhbb@gmail.com
24dcf0c4ea
displaylink: 4.1.9 -> 4.4.24 - updated link
2018-12-09 12:35:58 +01:00
Alexey Shmalko
2801679e4b
Merge pull request #51764 from Taneb/metamath
...
Metamath: init at 0.167
2018-12-09 13:16:20 +02:00
Jörg Thalheim
3fc03e52c0
Merge pull request #51762 from r-ryantm/auto-update/Vc
...
vc: 1.4.0 -> 1.4.1
2018-12-09 11:00:17 +00:00
Markus Kowalewski
c047c26791
lvm2: 2.02.177 -> 2.03.01
...
* switch to sources to git
* add libaio to buildInputs
2018-12-09 11:43:08 +01:00
Nathan van Doorn
395b69a6a0
metamath: init at 0.167
2018-12-09 10:18:25 +00:00
Markus Kowalewski
b2333ed52a
rtl-sdr: remove linker-fix.patch
...
not needed on rtl-sdr-0.6.0
2018-12-09 11:18:13 +01:00
Michael Raskin
6dad52ebf6
Revert "spice: add kerberos dependency"
...
Already fixed by #51769
This reverts commit a9779bdfc4
.
2018-12-09 11:09:27 +01:00
Peter Simons
ad212c5991
stockfish: update to version 10
2018-12-09 11:01:14 +01:00
Michael Raskin
a9779bdfc4
spice: add kerberos dependency
2018-12-09 10:55:32 +01:00
Vladimír Čunát
17acf57f9d
fbreader: fixup build with curl-7.62
...
This was easy to patch; submitted upstream.
2018-12-09 10:27:22 +01:00
Jörg Thalheim
9a37ec0d61
Merge pull request #51769 from pbogdan/cyrus-sasl
...
cyrus_sasl: merge PR #51651 into master
2018-12-09 08:40:02 +00:00
Herwig Hochleitner
ccb93eb6b0
chromium: update conditionals and gcc patches for min version 71
...
(cherry picked from commit 604579e45f10ce5ccadd76c71f1bac648bd0971d)
2018-12-09 04:11:27 +01:00
Vincent Laporte
83d84c08b9
filterCoqPackages: honor recurseIntoAttrs
2018-12-09 03:08:54 +00:00
Piotr Bogdan
ee09eacc35
cyrus_sasl: merge PR #51651 into master
2018-12-09 02:15:50 +00:00
Jörg Thalheim
a2aa3dc0bd
Merge pull request #51755 from r-ryantm/auto-update/wavebox
...
wavebox: 4.4.0 -> 4.5.3
2018-12-09 00:34:07 +00:00
Jörg Thalheim
384aa9ffa8
Merge pull request #51761 from r-ryantm/auto-update/vulkan-tools
...
vulkan-tools: 1.1.85.0 -> 1.1.92
2018-12-08 23:45:35 +00:00
R. RyanTM
a8c7bbaa69
vc: 1.4.0 -> 1.4.1
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/vc/versions
2018-12-08 15:30:18 -08:00
Piotr Bogdan
dc0963b445
ant-theme: init at 1.2.0
2018-12-08 23:27:15 +00:00
Alexey Shmalko
211938532c
pythonPackages.neovim-remote: 2.1.0 -> 2.1.1
2018-12-09 01:25:54 +02:00
R. RyanTM
da042144da
vulkan-tools: 1.1.85.0 -> 1.1.92
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/vulkan-tools/versions
2018-12-08 15:24:05 -08:00
Jörg Thalheim
c19083961d
Merge pull request #51752 from r-ryantm/auto-update/zsh-autosuggestions
...
zsh-autosuggestions: 0.4.3 -> 0.5.0
2018-12-08 23:18:31 +00:00
Alexey Shmalko
4898e09215
pythonPackages.neovim-0.3.0 -> pythonPackages.pynvim-0.3.1
2018-12-09 01:15:41 +02:00
eyjhbb@gmail.com
139c99ce91
displaylink: 4.1.9 -> 4.4.24
2018-12-09 00:14:58 +01:00
R. RyanTM
7598fd57d3
yquake2: 7.20 -> 7.30
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/yquake2/versions
2018-12-08 15:12:59 -08:00
R. RyanTM
14541f7672
wavebox: 4.4.0 -> 4.5.3
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/wavebox/versions
2018-12-08 15:03:18 -08:00
Renaud
3556990e36
Merge pull request #51589 from tilpner/tigervnc-update
...
tigervnc: 1.8.0pre2017041 -> 1.9.0
2018-12-08 23:55:55 +01:00
R. RyanTM
fa0d6e6481
zsh-autosuggestions: 0.4.3 -> 0.5.0
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/zsh-autosuggestions/versions
2018-12-08 14:39:40 -08:00
MarcFontaine
186ec58e1a
haskellPackages.binary-parsers : disable tests
2018-12-08 22:30:54 +01:00
Matthew Bauer
a27c51f71f
premake3: use premake3 -> premake
...
premake3 only has the "premake" executable. This is a little confusing
because premake4 and premake5 both have the version suffix.
Fixes #51744
2018-12-08 14:47:13 -06:00
Maximilian Bosch
bb962eb2a2
Merge pull request #51747 from timstott/update/tmuxinator
...
tmuxinator: 0.11.3 -> 0.13.0
2018-12-08 21:05:29 +01:00
Alexander Krupenkin
7eb700b9a6
polkadot: init at 0.2.17
2018-12-08 22:49:48 +03:00
Alexander Krupenkin
7944624851
parity-beta: 2.2.1 -> 2.2.4
2018-12-08 22:46:32 +03:00
Alexander Krupenkin
762333cbce
parity: 2.1.6 -> 2.1.9
2018-12-08 22:46:13 +03:00
worldofpeace
420d022254
tootle: use vala_0_40
2018-12-08 14:34:57 -05:00
Will Dietz
77cdbf7e8f
tootle: hicolor-icon-theme dep, clear cache
2018-12-08 14:34:27 -05:00
Maximilian Bosch
65b33722db
Merge pull request #51608 from tylermauthe/patch-1
...
plex: 1.13.9.5456 -> 1.14.0.5470
2018-12-08 19:55:33 +01:00
Timothy Stott
63c2dabccd
tmuxinator: 0.11.3 -> 0.13.0
...
No changes to dependencies.
2018-12-08 18:51:17 +00:00
Jörg Thalheim
477d535c92
Merge pull request #51662 from srhb/zoom-2.6
...
zoom-us: 2.5.146186.1130 -> 2.6.146750.1204
2018-12-08 18:28:16 +00:00
Jörg Thalheim
950d552360
Merge pull request #51741 from florianjacob/libsass
...
libsass: 3.5.4 -> 3.5.5
2018-12-08 18:20:33 +00:00
Tor Hedin Brønner
0ed7d3c62a
ghostscript: 9.25 -> 9.26
2018-12-08 19:15:06 +01:00
Jörg Thalheim
f201392a78
Merge pull request #51328 from markus1189/dropbox
...
dropbox: add mesa and libxshmfence
2018-12-08 18:11:52 +00:00
Léo Gaspard
c0663aa3f8
Merge branch 'mdadm-sendmail'
...
* mdadm-sendmail:
mdadm: use shared system-sendmail
2018-12-09 02:46:22 +09:00
Jörg Thalheim
ab984d24b0
cyrus-sasl: remove not-needed libtool fixup
...
since pruneLibtoolFiles is used openssl is no longer referenced
2018-12-08 17:10:09 +00:00
Jörg Thalheim
f92943932d
cyrus-sasl: remove non-existing freebsd patch
2018-12-08 17:52:17 +01:00
Tor Hedin Brønner
a00c862e97
cyrus_sasl: prune .la files
...
Version 2.1.27 adds `-lkrb5` etc. to `dependency_libs` in all the .la files,
which in turn breaks spice's build. Prune .la's dependency_libs with
pruneLibtoolFiles.
2018-12-08 17:52:17 +01:00
Jörg Thalheim
1f1b7bd2a6
pelican: 3.7.1 -> 4.0.1 ( #51743 )
2018-12-08 16:49:43 +00:00
Graham Christensen
37293152c7
Merge pull request #51612 from Izorkin/nginx-unit
...
unit: init at v1.6
2018-12-08 11:49:05 -05:00
Maximilian Bosch
05882c0a74
weechatScripts.weechat-autosort: init at unstable-2018-01-11 ( #51729 )
...
Helpful weechat script to automatically keep buffers sorted.
Can be activated like this:
``` nix
weechat.override {
configure = { ... }: {
scripts = [
weechatScripts.weechat-autosort
];
};
}
```
2018-12-08 16:45:18 +00:00
Florian Jacob
02a1851362
pelican: 3.7.1 -> 4.0.1
2018-12-08 17:33:14 +01:00
Jörg Thalheim
da4e257fce
Merge pull request #51670 from Mic92/quassel-webserver
...
quassel-webserver: remove
2018-12-08 16:26:45 +00:00
Jörg Thalheim
d4aa3cce93
Merge pull request #51629 from Chiiruno/dev/update
...
Update: quicktemplate, nodePackages: meguca, meguca, hydron
2018-12-08 16:25:00 +00:00
Izorkin
9c5311251a
php: add option config.php.systemd
2018-12-08 19:20:12 +03:00
Izorkin
35eb1c21dc
phpPackages: add build phpPackages with php-unit
2018-12-08 19:20:12 +03:00
Izorkin
ef5161984c
unit: init at v1.6
2018-12-08 19:20:09 +03:00
Renaud
8fcb406459
Merge pull request #51371 from dtzWill/update/live555-20181126
...
live555: 2018.10.17 -> 2018.11.26
2018-12-08 17:11:16 +01:00
Vladyslav M
6638d2eb69
Merge pull request #51736 from markuskowa/upd-hackrf
...
hackrf: 2017.02.1 -> 2018.01.1
2018-12-08 17:49:17 +02:00
Florian Jacob
60532db0d3
libsass: 3.5.4 -> 3.5.5
2018-12-08 16:34:13 +01:00
Frederik Rietdijk
3e950d584c
Merge staging-next into master
2018-12-08 16:29:21 +01:00
Michael Raskin
edc3559c1a
pitivi: gst-transcoder: add python3 to nativeBuildInputs, fails otherwise
2018-12-08 16:35:41 +01:00
Tim Steinbach
02f8d66efa
linux: 4.19.7 -> 4.19.8
2018-12-08 10:26:09 -05:00
Tim Steinbach
e4da78c349
linux: 4.14.86 -> 4.14.87
2018-12-08 10:26:09 -05:00
Tim Steinbach
c7ea265e8e
linux: 4.9.143 -> 4.9.144
2018-12-08 10:26:09 -05:00
Renaud
4107c3dd01
Merge pull request #51730 from marsam/texlive-fix-poppler-patch-link
...
texlive: fix link to poppler patch
2018-12-08 16:25:54 +01:00
Ben Phipathananunth
df96b2224b
polybar: correct description
2018-12-08 10:23:33 -05:00
Frederik Rietdijk
78ae66652a
Merge pull request #51732 from jokogr/f/shiboken-py37
...
shiboken: add support for Python 3.7
2018-12-08 16:22:50 +01:00
Alyssa Ross
bef8c1344d
Merge pull request #51669 from alyssais/vbox
...
virtualbox: 5.2.14 -> 5.2.22
2018-12-08 15:22:31 +00:00
Markus Kowalewski
e32d63223b
hackrf: 2017.02.1 -> 2018.01.1
...
Use fetchFromGitHub instead of fetchgit
2018-12-08 16:17:25 +01:00
markuskowa
c057861375
Merge pull request #51410 from jfrankenau/init-intel-media
...
intel-media-driver: init at 18.3.0
2018-12-08 15:43:42 +01:00
markuskowa
86d80a7b78
Merge pull request #51583 from WilliButz/grafana-update
...
grafana: 5.3.4 -> 5.4.0
2018-12-08 15:42:15 +01:00
Renaud
e6def98472
Merge pull request #51707 from dtzWill/update/sssd-1.16.3
...
sssd: 1.16.2 -> 1.16.3 (security!)
2018-12-08 15:41:50 +01:00
Benjamin Hipple
8dbc8e586c
fetchurl: refresh and add extra KDE mirrors
...
* fetchurl: fix and add extra KDE mirrors (#51480 )
- The gwdg.de mirror has moved the relative path of its KDE tarballs
- Add new mirrors from Berkeley and MIT, which are on the list of officially supported mirrors
https://download.kde.org/extra/download-mirrors.html
* More KDE mirror touchups
- The official one is a redirect to HTTPS anyways, so go directly to HTTPS
- Add China USTC for Asian users
- Swap Finland university from FTP to HTTP
* fetchurl: keep one ftp KDE mirror
2018-12-08 15:39:05 +01:00
Maximilian Bosch
d21e281c95
dpt-rp1-py: add unstable infix to version
2018-12-08 15:30:09 +01:00
Florian Klink
8dc30f6272
Merge pull request #51705 from dtzWill/update/xf86-video-intel-12-03
...
xf86videointel: 2017-10-19 -> 2018-12-03
2018-12-08 15:22:56 +01:00
Will Dietz
9064f2b22d
packagekit: 1.1.11 -> 1.1.12
2018-12-08 15:02:37 +01:00
Johannes Frankenau
e48b9b5d0e
intel-media-driver: init at 18.3.0
2018-12-08 14:58:33 +01:00
Ioannis Koutras
07e956171d
shiboken: add support for Python 3.7
2018-12-08 15:57:47 +02:00
Mario Rodas
679a1f728e
texlive: fix link to poppler patch
2018-12-08 08:56:32 -05:00
Maximilian Bosch
59b6fe36f5
Merge pull request #51657 from marsam/fix-python-rednose-build
...
python2Packages.rednose: fix build on darwin
2018-12-08 14:49:43 +01:00
Renaud
61c3169a0e
Merge pull request #51713 from dtzWill/update/xpad-5.2.0
...
xpad: 5.1.0 -> 5.2.0
2018-12-08 13:49:04 +01:00
Renaud
f31cecfbc8
Merge pull request #51716 from dtzWill/update/lighttpd-1.4.52
...
lighttpd: 1.4.51 -> 1.4.52
2018-12-08 13:45:25 +01:00
Maximilian Bosch
99d96df65c
Merge pull request #51642 from marsam/add-git-test
...
gitAndTools.git-test: init at 1.0.4
2018-12-08 13:43:46 +01:00
Periklis Tsirakidis
a4700aa526
openjpeg: fix for CVE-2018-18088
2018-12-08 20:59:36 +09:00
Michael Raskin
9bca1c6979
julia: default to 1.0
2018-12-08 12:59:25 +01:00
Renaud
0c97fbc18f
Merge pull request #51432 from dtzWill/update/mtools-4.0.22
...
mtools: 4.0.21 -> 4.0.22
2018-12-08 12:47:49 +01:00
Renaud
dbb6975fe9
Merge pull request #51703 from dtzWill/update/terminology-1.3.0
...
terminology: 1.2.1 -> 1.3.0
2018-12-08 12:46:37 +01:00
Frederik Rietdijk
e0950ae9ad
Merge master into staging-next
2018-12-08 12:40:13 +01:00
Renaud
85d9f63975
Merge pull request #51531 from mkaito/bitlbee-discord-042
...
bitlbee-discord: 0.4.1 -> 0.4.2
2018-12-08 12:07:02 +01:00
Peter Simons
c37ae1dcf6
ghc: add new compiler version 8.6.3
2018-12-08 11:46:20 +01:00
Yegor Timoshenko
3ff3b83e71
Merge pull request #51718 from NixOS/yegortimoshenko-patch-4
...
monero: change desktop item name to Monero
2018-12-08 13:06:40 +03:00
Renaud
e85c1f5868
Merge pull request #51696 from dtzWill/update/elfinfo-0.7.5
...
elfinfo: 0.7.4 -> 0.7.5
2018-12-08 10:30:22 +01:00
Renaud
819aded337
Merge pull request #51691 from dtzWill/update/vnstat-2.1
...
vnstat: 1.18 -> 2.1
2018-12-08 10:14:17 +01:00
Renaud
cbbf17d129
Merge pull request #51695 from dtzWill/update/aminal-0.7.12
...
aminal: 0.7.8 -> 0.7.12
2018-12-08 09:30:06 +01:00
Mario Rodas
acc45d8f4f
postgresql: Build with icu support
2018-12-08 00:33:39 -05:00
Yegor Timoshenko
f8a88b3989
monero: change desktop shortcut name to Monero
2018-12-08 07:56:26 +03:00
Will Dietz
41194fc19c
mtools: 4.0.21 -> 4.0.22
...
https://lists.gnu.org/archive/html/info-gnu/2018-12/msg00000.html
2018-12-07 21:55:00 -06:00
worldofpeace
1f739a8810
Merge pull request #51689 from dtzWill/update/elementary-icon-theme-5.0.1
...
elementary-icon-theme: 5.0 -> 5.0.1
2018-12-07 22:32:58 -05:00
Will Dietz
05f6ec295f
lighttpd: 1.4.51 -> 1.4.52
...
https://www.lighttpd.net/2018/11/28/1.4.52/
2018-12-07 21:30:51 -06:00
worldofpeace
2ac1807dea
elementary-icon-theme: don't install pallette file
2018-12-07 22:30:17 -05:00
Will Dietz
cf3542bf92
xpad: 5.1.0 -> 5.2.0
2018-12-07 21:27:24 -06:00
Will Dietz
01fab8778f
sssd: 1.16.2 -> 1.16.3 (security!)
...
https://docs.pagure.org/SSSD.sssd/users/relnotes/notes_1_16_3.html
2018-12-07 21:12:19 -06:00
Will Dietz
5eff07f211
xf86videointel: 2017-10-19 -> 2018-12-03
2018-12-07 21:07:33 -06:00
Will Dietz
64a72afe63
terminology: 1.2.1 -> 1.3.0
2018-12-07 21:01:55 -06:00
Will Dietz
9a9d26fb77
elfinfo: 0.7.4 -> 0.7.5
...
https://github.com/xyproto/elfinfo/releases/tag/0.7.5
2018-12-07 20:49:13 -06:00
Dmitry Kalinkin
2da30b1384
Merge pull request #49918 from cocreature/agda-env
...
agda: use writeShellScriptbin instead of writeScriptBin
2018-12-07 21:48:34 -05:00
Will Dietz
a02863edac
aminal: 0.7.8 -> 0.7.12
2018-12-07 20:45:00 -06:00
Dmitry Kalinkin
3b6de72836
agda: use exec in agdaWrapper
2018-12-07 21:37:19 -05:00
Will Dietz
4f1b5653cf
vnstat: 1.18 -> 2.1
2018-12-07 20:32:45 -06:00
Will Dietz
b9c9de25b8
elementary-icon-theme: 5.0 -> 5.0.1
2018-12-07 20:28:44 -06:00
Alyssa Ross
0e8e02e686
Merge pull request #51214 from rnhmjoj/wine
...
winePackages.wine: add SDL support
2018-12-07 22:44:13 +00:00
Edmund Wu
a898f88d57
rstudioWrapper: include desktop file
2018-12-07 16:44:01 -05:00
adisbladis
2a7b82ca44
cni-plugins: Remove go from runtime closure
2018-12-07 21:15:12 +00:00
adisbladis
54b6c586a6
cni: Remove go from runtime closure
2018-12-07 21:15:12 +00:00
Markus Hauck
9f86eccafc
dropbox: add mesa, libxshmfence and libpthreadstubs
2018-12-07 20:20:32 +01:00
Alyssa Ross
716a38d015
Merge pull request #51620 from smaret/gildas-update
...
gildas: 20181101_a -> 20181201_a
2018-12-07 17:43:56 +00:00
Alyssa Ross
33c66f0e18
Merge pull request #51625 from vdemeester/update-skaffold
...
skaffold: 0.18.0 -> 0.19.0
2018-12-07 17:42:22 +00:00
Alyssa Ross
21ed8b1e40
Merge pull request #51665 from plapadoo/opus-tools-0.1.10-to-0.2
...
opusTools: 0.1.10 -> 0.2
2018-12-07 17:34:37 +00:00
Alyssa Ross
1efca5e558
Merge pull request #51667 from pacien/patch-2
...
todoman: 3.4.1 -> 3.5.0
2018-12-07 17:20:25 +00:00
Philipp Middendorf
a17d94a295
opusTools: 0.1.10 -> 0.2
2018-12-07 18:19:11 +01:00
Alyssa Ross
c7798cffb6
Merge pull request #51666 from holidaycheck/update-grobi
...
grobi: 0.3.0 -> 0.5.1
2018-12-07 17:16:35 +00:00
zimbatm
4a8d0927e1
bundix: 2.4.0 -> 2.4.1 ( #51660 )
...
fixes #51656
2018-12-07 17:49:33 +01:00
Jörg Thalheim
40c8969b4c
quassel-webserver: remove
...
Package is broken and the original maintainer does not respond.
Unless someone wants to pick it up, I propose the removal.
fixes #51614
2018-12-07 16:46:36 +00:00
Alyssa Ross
698b613564
virtualboxExtpack: 5.2.14 -> 5.2.22
...
Looks like the URL format has changed. Or maybe this is just the first
version and doesn't have a revision? I don't know.
2018-12-07 16:05:55 +00:00
Alyssa Ross
d41661cea7
virtualbox: 5.2.14 -> 5.2.22
...
I had to drop xorriso because it didn't seem to want to compile with it
any more, and had to add libopus as a build input because it wouldn't
compile without that.
2018-12-07 16:04:49 +00:00
Mario Rodas
6e54e95616
pythonPackages.rednose: fix build on darwin
2018-12-07 10:31:23 -05:00
Notkea
8273e650fa
todoman: 3.4.1 -> 3.5.0
...
updating to latest version and remove already included patch
2018-12-07 16:05:58 +01:00
Frederik Rietdijk
74d0b82f29
buildPython*: add updateScript to passthru
...
All Python packages now have an updateScript. The script calls
`update-python-libraries` and passes it the position of the derivation
expression obtained using `meta.position`. This works fine in case a Nix
expression represents only a single derivation. If there are more in it,
`update-python-libraries` will fail.
2018-12-07 15:48:54 +01:00
Joachim F
82579f80a5
Merge pull request #51655 from joachifm/uwsgi-withSystemd
...
uwsgi: fix build when withSystemd = false
2018-12-07 14:46:36 +00:00
Tobias Pflug
691f6cceea
grobi: 0.3.0 -> 0.5.1
2018-12-07 15:45:57 +01:00
Frederik Rietdijk
12e8ec041a
fix eval after merging
2018-12-07 15:30:12 +01:00
Justin Humm
09991d40e6
pythonPackages.tlslite-ng: init at 0.7.5
2018-12-07 15:28:55 +01:00
Frederik Rietdijk
5f554279ec
Merge master into staging-next
2018-12-07 15:22:35 +01:00
Sarah Brofeldt
8b3949d989
zoom-us: 2.5.146186.1130 -> 2.6.146750.1204
2018-12-07 15:00:26 +01:00
Robert Schütz
cb2a447c51
seafile-client: 6.2.7 -> 6.2.8
2018-12-07 14:16:49 +01:00
Robert Schütz
3df463d351
seafile-shared: 6.2.7 -> 6.2.8
2018-12-07 14:16:26 +01:00
Alexey Shmalko
12bacf1fca
Merge pull request #51654 from plapadoo/libopusenc-init-0.2.1
...
libopusenc: init at 0.2.1
2018-12-07 15:07:19 +02:00
Alexey Shmalko
dc87b4855f
Merge pull request #51653 from Tomahna/bloop
...
bloop: 1.1.0 -> 1.1.1
2018-12-07 14:59:03 +02:00
Joachim Fasting
e7548891e3
uwsgi: fix build when withSystemd = false
...
Passing -lsystemd unconditionally breaks the build when withSystemd = false.
2018-12-07 13:25:06 +01:00
Philipp Middendorf
bf050b13b0
libopusenc: init at 0.2.1
2018-12-07 13:19:04 +01:00
Sarah Brofeldt
e1b7493cfe
Merge pull request #51648 from vbgl/ocaml-camlimages-5.0.1
...
ocamlPackages.camlimages: 5.0.0 -> 5.0.1
2018-12-07 12:21:08 +01:00
Jörg Thalheim
fc7eef5358
Merge pull request #51592 from NixOS/yegortimoshenko-patch-1
...
yed: 3.18.1.1 -> 3.18.2
2018-12-07 11:08:36 +00:00
Sarah Brofeldt
4065217c9a
Merge pull request #51623 from taku0/flashplayer-32.0.0.101
...
flashplayer: 31.0.0.153 -> 32.0.0.101 [Critical security fix]
2018-12-07 11:57:22 +01:00
Jörg Thalheim
dca1fe7956
Merge pull request #51585 from veprbl/pr/tradcpp_aarch64_support
...
tradcpp: improved aarch64 support
2018-12-07 10:52:49 +00:00
Kevin Rauscher
0fc90852d9
bloop: 1.1.0 -> 1.1.1
2018-12-07 11:41:42 +01:00
Sarah Brofeldt
0ba6752675
Merge pull request #51640 from das-g/tectonic-0.1.11
...
tectonic: 0.1.9 -> 0.1.11
2018-12-07 11:27:13 +01:00
Jörg Thalheim
fc8c73de1c
Merge pull request #51618 from Mic92/crashplan
...
crashplan: mark as broken
2018-12-07 10:14:37 +00:00
Florian Klink
1915bbfae3
Merge pull request #51565 from alyssais/jenkins
...
jenkins: 2.138.3 -> 2.150.1 (security!)
2018-12-07 10:41:48 +01:00
Joachim F
f0dbbdf970
Merge pull request #51581 from joachifm/rWrapper-local-runCommand
...
Implement R wrappers as local-only runCommand
2018-12-07 09:17:44 +00:00
Florian Klink
b89978cafa
Merge pull request #51634 from jokogr/u/pylint-2.2.2
...
pylint: 2.1.1 -> 2.2.2
2018-12-07 10:07:12 +01:00
Florian Klink
57c69ff781
Merge pull request #51646 from worldofpeace/vivaldi/correct-hash
...
vivaldi: correct hash
2018-12-07 09:48:06 +01:00
lewo
f7e67be1dc
Merge pull request #51528 from grahamc/buildImage-on-layered-image
...
dockertools buildImage: support new-style image specs
2018-12-07 09:44:58 +01:00
gnidorah
fd8f754242
me_cleaner: init at 1.2
2018-12-07 10:02:22 +03:00
Vincent Laporte
0c9abf6436
ocamlPackages.camlimages: 5.0.0 -> 5.0.1
2018-12-07 04:22:10 +00:00
Mario Rodas
88b48753ac
flow: 0.86.0 -> 0.87.0
2018-12-07 03:48:39 +00:00
Ben Darwin
cf9743da48
remove omake_rc1 from all-packages.nix since it doesn't build
2018-12-07 03:29:55 +00:00
Ben Darwin
9852c74249
teyjus: fix build by using omake from ocaml 4.02 package set
2018-12-07 03:29:55 +00:00
Vincent Laporte
b684e3d24b
ocamlPackages.javalib: 2.3.5 -> 3.0
...
ocamlPackages.sawja: 1.5.3 -> 1.5.6
2018-12-07 03:28:54 +00:00
worldofpeace
5256cfd006
vivaldi: correct hash
...
Fixes #51635
2018-12-06 21:33:39 -05:00
Tom Bereknyei
b17eaa3aa9
scrcpy: 1.3 -> 1.5
2018-12-06 21:27:45 -05:00