Vincent Laporte
3cc99ee1eb
ocamlPackages.zarith: enable for OCaml 4.08
2019-08-15 09:09:28 +00:00
Averell Dalton
5f10ab6377
rstudio: fix build
2019-08-15 11:04:25 +02:00
adisbladis
2f1cb20e50
Merge pull request #66642 from etu/emacspackagesng-emacsql-fix-sqlite
...
emacsPackagesNg.emacsql-sqlite: Build sqlite binary
2019-08-15 09:55:10 +01:00
Yegor Timoshenko
da3da08cdf
buildRustPackage: link against pthreads-w32 on x86_64-pc-mingw32
2019-08-15 08:44:54 +00:00
Yegor Timoshenko
31d5005cd6
pthreads-w32: 1.10.0 -> 2.9.1
2019-08-15 08:44:54 +00:00
Yegor Timoshenko
0fcffe88db
buildRustPackage: support cross-compilation to x86_64-pc-mingw32
2019-08-15 08:44:54 +00:00
Marek Mahut
1e602ffdc9
Merge pull request #66666 from danbst/update-ena
...
linuxPackages/ena: 2.0.2 -> 2.1.2
2019-08-15 10:15:23 +02:00
Markus Kowalewski
5b0bbcbb6e
molden: 6.1 -> 6.2
2019-08-15 09:35:34 +02:00
danbst
4522648d0e
linuxPackages/ena: 2.0.2 -> 2.1.2
...
Unbreak for newer kernels.
2019-08-15 10:10:25 +03:00
Elis Hirwing
ce60bca7c2
emacsPackagesNg.emacsql-sqlite: Build sqlite binary
2019-08-15 07:52:46 +02:00
Joachim F
e8c04bb367
Merge pull request #66245 from corngood/chicken-fix
...
chicken: fixes for chicken 5.1.0
2019-08-15 04:09:49 +00:00
xrelkd
db3f4a3149
cargo-make: 0.21.0 -> 0.22.0
2019-08-15 11:26:39 +08:00
Emily
6aa1b0acaf
tinyprog: init at 1.0.24.dev99+ga77f828
2019-08-14 21:10:05 -05:00
Emily
527684b1e2
pythonPackages.jsonmerge: init at 1.6.1
2019-08-14 21:10:05 -05:00
Derek Kulinski
1c392dfcf0
pgbouncer: use c-ares for name resolution ( #66336 )
...
According to pgbouncer README.md file c-ares is the
prefered way to resolve names for pgbouncer 1.10+:
https://github.com/pgbouncer/pgbouncer/blob/master/README.md#dns-lookup-support
The previous method (evdns) did not support EDNS0 and SOA lookups.
2019-08-15 03:20:42 +03:00
worldofpeace
80396cf18a
pythonPackages.wikipedia: remove
...
as lollypop no longer depends on this library that is
essentially abandoned we should remove it from
nixpkgs.
2019-08-14 19:59:02 -04:00
worldofpeace
8097e63ad8
lollypop: 1.1.4.2 -> 1.1.4.14
...
Removed python-wikipedia dependency [0]
[0]: https://gitlab.gnome.org/World/lollypop/-/tags/1.1.4.7
2019-08-14 19:59:02 -04:00
aszlig
dc525e8b12
Merge pull request #66648 (improve xkbvalidate)
...
This allows xkbvalidate to be compiled via Clang and also has a few
other portability improvements, eg. it now can even be compiled on OS X,
even though it's probably not needed there.
In addition, I changed the binary name so that it matches the package
name.
I'm merging this in right now, because there is only the xserver NixOS
module where this is used, so the risk of a catastrophic breakage is
very low.
Checks and build done by ofborg also ran successfully and I also did a
few local tests (eg. running via valgrind to avoid leaks) to make sure
it's still working properly.
2019-08-15 01:32:09 +02:00
aszlig
16ecd0d5ca
xkbvalidate: Rename output binary to xkbvalidate
...
So far, the output binary has been just "validate", which is quite a
very generic name and doesn't match the package name.
Even though I highly doubt that this program will ever be used outside
of NixOS modules, it's nevertheless less confusing to have a consistent
naming.
Signed-off-by: aszlig <aszlig@nix.build>
2019-08-15 01:11:32 +02:00
aszlig
1964b0c1b1
xkbvalidate: Don't rely on GNU extensions
...
The only reason why I was using _GNU_SOURCE was because of vasprintf(),
so getting rid of that extension should make the source way more
portable.
When using vsnprintf() with a null pointer for the output buffer and a
size of 0, I wasn't quite sure whether this would be undefined
behaviour, so I looked it up in the C11 standard.
In section 7.21.6.5, it explicitly mentions this case, so we're lucky:
If n is zero, nothing is written, and s may be a null pointer.
Additionally, section 7.21.6.12 writes the following about vsnprintf():
The vsnprintf function does not invoke the va_end macro.
So to be sure to avoid undefined behaviour I subsequently added the
corresponding va_end() calls.
With this, the platforms attribute is now "unix", because the program
should now even run on OS X, even though it usually wouldn't be needed.
Signed-off-by: aszlig <aszlig@nix.build>
2019-08-15 00:59:58 +02:00
Lily Ballard
63259057a8
erlang: Fix build error on darwin
...
Stop hardcoding 10.10 as the platform when building. Instead we'll use
$MACOSX_DEPLOYMENT_TARGET so erlang doesn't have to be updated again the
next time that's changed.
2019-08-14 15:56:29 -07:00
Markus Kowalewski
681b36b14e
pythonPackages.pyslurm: 18-08-3 -> 19-05-0
2019-08-15 00:19:20 +02:00
Markus Kowalewski
6a5d83231e
slurm: 19.05.1.2 -> 19.05.2.1
2019-08-15 00:15:03 +02:00
aszlig
77e8a12755
xkbvalidate: Use $CC instead of hardcoded gcc
...
I initially didn't use $CC because I thought this would be GCC specific,
but it turns out that Clang actually accepts -std=gnu11.
So using $CC here might not work on compilers other than Clang or GCC,
but at the moment those are the compilers we typically use in nixpkgs,
so even if we'd use some other compiler it *might* even work there.
I've tested this by compiling against clangStdenv with both $CC and
clang hardcoded and it works.
This was reported by @dkudriavtsev on IRC.
Signed-off-by: aszlig <aszlig@nix.build>
2019-08-14 23:57:20 +02:00
WilliButz
9bce1eaabd
Merge pull request #66630 from kolaente/update/gitea-1.9.1
...
gitea: 1.9.0 -> 1.9.1
2019-08-14 22:32:56 +02:00
Jonathan Ringer
9a52a52e99
pazi: 0.2.0 -> 0.3.0
2019-08-14 13:08:49 -07:00
WilliButz
f2e631148a
Merge pull request #66525 from andir/google-cloud-cpp
...
google-cloud-cpp: init at 0.11.0
2019-08-14 21:57:21 +02:00
Matthew Bauer
8281a67be0
Merge pull request #64809 from ambrop72/chromium-egl-fix
...
chromium: Fix running with --use-gl=egl.
2019-08-14 15:42:31 -04:00
Jonathan Ringer
ed0cb5cf58
pamixer: 1.3.1 -> 1.4
2019-08-14 12:38:07 -07:00
Michael Raskin
f5a7cf7941
Merge pull request #66632 from fare-patches/master
...
Update Gambit and Gerbil from upstream
2019-08-14 18:24:00 +00:00
Matthew Bauer
9af20c376b
Merge pull request #65349 from matthewbauer/dicts
...
Lookup hunspell dictionaries in XDG_DATA_DIRS
2019-08-14 14:17:41 -04:00
Jonathan Ringer
6cf9f6afa5
fmit: 1.1.14 -> 1.2.6
2019-08-14 10:58:48 -07:00
Gabriel Ebner
29851a69d3
calculix: init at 2.15 ( #66628 )
...
calculix: init at 2.15
2019-08-14 19:51:18 +02:00
kolaente
e137c91526
gitea: 1.9.0 -> 1.9.1
2019-08-14 19:38:59 +02:00
Niklas Hambüchen
19b043fe84
coreutils: Patch benign test case failing with musl.
...
See https://github.com/NixOS/nixpkgs/pull/61250#issuecomment-491642024
Using upstream patch.
2019-08-14 19:16:43 +02:00
Niklas Hambüchen
5524dac2fe
coreutils: Refactor test patching.
...
So that more patches can easily be added and commented.
2019-08-14 19:16:43 +02:00
Gabriel Ebner
0a1e131077
gmsh: opencascade support
2019-08-14 19:09:40 +02:00
Gabriel Ebner
f91904a889
calculix: init at 2.15
2019-08-14 19:09:40 +02:00
Gabriel Ebner
a736d87393
spooles: init at 2.2
2019-08-14 19:09:39 +02:00
Gabriel Ebner
8d67c151a6
all-packages: fix trailing space
2019-08-14 18:18:09 +02:00
aszlig
3e78331d96
Merge pull request #66582 (nginx security updates)
...
This addresses CVE-2019-9511, CVE-2019-9513 and CVE-2019-9516. Details
about these vulnerabilities can be found at:
216433296d/advisories/third-party/2019-002.md
Version 1.16.1 only includes the security fixes, however version 1.17.3
has two additional bugfixes:
* "zero size buf" alerts might appear in logs when using gzipping; the
bug had appeared in 1.17.2.
* a segmentation fault might occur in a worker process if the
"resolver" directive was used in SMTP proxy.
I haven't extensively tested this, but from a quick test, nginx is still
working and the NixOS tests also succeed.
Thanks to @Izorkin for the pull request.
2019-08-14 18:17:45 +02:00
Matthew Bauer
e9b7085ff8
cups: add myself as maintainer
2019-08-14 11:47:48 -04:00
worldofpeace
dd49cf711e
Merge pull request #66338 from worldofpeace/installer/no-root
...
installer: Don't run as root
2019-08-14 11:20:54 -04:00
Joachim F
8f156698bf
Merge pull request #54425 from eadwu/init/srhtPackages
...
sourcehut: init
2019-08-14 14:50:59 +00:00
Vincent Laporte
6bb07c80bf
smtube: use qt5’s mkDerivation
...
See #65399
2019-08-14 14:43:11 +00:00
Vincent Laporte
95ec53813a
smplayer: use qt5’s mkDerivation
...
See #65399
2019-08-14 14:43:11 +00:00
Matthew Bauer
81bddd62ca
Merge pull request #62953 from asymmetric/wasmtime-update
...
wasmtime: 0.1.0 -> 20190521
2019-08-14 10:26:54 -04:00
Robert Winslow
e91d400dff
darwin.adv_cmds: Fix fetchzip call by using https not http ( #64546 )
2019-08-14 10:24:34 -04:00
Matthew Bauer
4202715c58
Merge pull request #63835 from luaduck/rpi4-firmware
...
raspberrypi-firmware: Update version to 1.20190620+1
2019-08-14 10:22:22 -04:00
Matthew Bauer
166905cb31
Merge pull request #65484 from arcnmx/pr-stdenv-cmake-cross
...
stdenv: correct cross CMAKE_SYSTEM_NAME
2019-08-14 10:17:12 -04:00
Matthew Bauer
579168b537
Merge pull request #65483 from arcnmx/pr-llvm-baremetal
...
llvm8 bare metal fixes
2019-08-14 10:16:57 -04:00
Frederik Rietdijk
cff9e6429a
Merge staging-next into staging
2019-08-14 13:46:33 +02:00
Frederik Rietdijk
8d56f2472e
Merge master into staging-next
2019-08-14 13:45:54 +02:00
Marek Mahut
930659b10b
Merge pull request #66608 from saschagrunert/cri-tools
...
cri-tools: 1.14.0 -> 1.15.0
2019-08-14 12:50:01 +02:00
Marek Mahut
dd87e37a8e
Merge pull request #66590 from jonringer/bump-bdsync
...
bdsync: 0.10.1 -> 0.11.1
2019-08-14 12:28:36 +02:00
Marek Mahut
d09eb635b3
Merge pull request #66609 from prusnak/runwayml
...
runwayml: 0.8.1 -> 0.9.0
2019-08-14 12:28:01 +02:00
symphorien
757ac88383
utsushi: init at 3.57.0 ( #65223 )
2019-08-14 08:37:19 +00:00
Sascha Grunert
3efc04c41d
cri-tools: 1.14.0 -> 1.15.0
...
- Fix go build process to include critest as well.
- Fix GitHub repo location to be `kubernetes-sigs`
- Add me as maintainer
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2019-08-14 09:16:31 +02:00
Emily
a51e3987ad
symbiyosys: 2019.04.18 -> 2019.08.13
2019-08-14 00:14:22 -07:00
Emily
830801805d
yosys: 2019.04.23 -> 2019.08.13
2019-08-14 00:14:22 -07:00
Emily
a0824ccff7
nextpnr: 2019.04.19 -> 2019.08.10
2019-08-14 00:14:22 -07:00
Emily
86ed03ae4c
trellis: 2019.04.22 -> 2019.08.09
2019-08-14 00:14:22 -07:00
Emily
6f4f493891
icestorm: 2019.04.16 -> 2019.08.08
2019-08-14 00:14:22 -07:00
Marek Mahut
90f6578ef2
Merge pull request #66602 from jonringer/bump-axel
...
axel: 2.17.3 -> 2.17.5
2019-08-14 08:52:42 +02:00
Linus Heckemann
a6055b7d87
Merge pull request #66385 from volth/patch-355
...
perl: 5.28.2 -> 5.30.0
2019-08-14 08:42:56 +02:00
Peter Hoeg
d7fc23a0a6
Merge pull request #66420 from peterhoeg/p/maestral
...
maestral: init at 0.2.6
2019-08-14 14:29:36 +08:00
Jörg Thalheim
453d108417
youtube-dl: 2019.08.02 -> 2019.08.13 ( #66603 )
...
youtube-dl: 2019.08.02 -> 2019.08.13
2019-08-14 07:22:29 +01:00
Jörg Thalheim
4f835fb2de
Merge pull request #66538 from singron/config-whitespace
...
kernel generate-config.pl: Allow whitespace in values
2019-08-14 07:21:59 +01:00
Marek Mahut
8fa1bb84e8
ptex: 2.3.0 -> 2.3.2
2019-08-14 15:16:22 +09:00
Jörg Thalheim
cf5f02b4bb
zsh/pth/zsync: cross fixes ( #65780 )
...
zsh/pth/zsync: cross fixes
2019-08-14 07:15:01 +01:00
Tadeo Kondrak
b5facab048
qMasterPassword: use qt mkDerivation
2019-08-14 15:12:02 +09:00
Peter Hoeg
a67aec1746
maestral: init at 0.2.6
2019-08-14 14:07:12 +08:00
Francois-Rene Rideau
1a00ceeb32
gerbil-unstable: 2019-02-09 -> 2019-08-11
2019-08-14 00:49:41 -04:00
Francois-Rene Rideau
cb2059e29e
gambit-unstable: 2019-02-05 -> 2019-07-21
2019-08-14 00:49:41 -04:00
Robert Djubek
352239e24a
ocrmypdf: init at 8.2.3
2019-08-14 04:45:09 +00:00
Robert Djubek
a141544cb5
pythonPackages.ruffus: init at 2.8.1
2019-08-14 04:45:09 +00:00
Robert Djubek
33aced023e
pythonPackages.hocr-tools: init at 1.3.0
2019-08-14 04:45:08 +00:00
Robert Djubek
6fcb265e63
pythonPackages.pikepdf: init at 1.1.0
2019-08-14 04:45:08 +00:00
Robert Djubek
d69040e9c4
pythonPackages.python-xmp-toolkit: init at 2.0.2
2019-08-14 04:45:08 +00:00
Robert Djubek
05f549e857
pythonPackages.pytest-helpers-namespace: init at 2019.1.8
2019-08-14 04:45:08 +00:00
xrelkd
0ab733a9e1
youtube-dl: 2019.08.02 -> 2019.08.13
2019-08-14 11:37:33 +08:00
Jonathan Ringer
cbed276a69
axel: 2.17.3 -> 2.17.5
2019-08-13 19:55:13 -07:00
Matthew Bauer
d9eeb35588
Merge pull request #65490 from lopsided98/zfs-cross
...
zfs: fix kernel module cross-compile
2019-08-13 21:54:31 -04:00
Matthew Bauer
326f40e97c
Merge pull request #66386 from typetetris/bacula-crosscompile-fix
...
bacula: fix cross compiling for armv7l
2019-08-13 21:51:15 -04:00
worldofpeace
24870b40d6
Merge pull request #66469 from emilazy/update-blackmagic
...
blackmagic: 1.6.1 -> unstable-2019-08-13
2019-08-13 20:17:36 -04:00
Emily
d792c84f35
blackmagic: 1.6.1 -> unstable-2019-08-13
2019-08-13 17:10:02 -07:00
Emily
ec07b882b3
pypy{2,27,3,35 -> 36}: 7.0.0 -> 7.1.1
2019-08-13 16:49:27 -07:00
Emily
5638dd55e3
pythonInterpreters.pypy{27,35 -> 36}_prebuilt: 6.0.0 -> 7.1.1
2019-08-13 16:49:27 -07:00
worldofpeace
a41873dbc9
Merge pull request #66422 from stefano-m/icedtea_web-1.8.3
...
icedtea_web: 1.7.1 -> 1.8.3 (fixes CVE-2019-10185, CVE-2019-10181, CVE-2019-10182)
2019-08-13 18:54:35 -04:00
Aaron Andersen
9af06755f3
nixos/zabbixProxy: fix database initialization logic
2019-08-13 18:50:28 -04:00
Jan Tojnar
ad135f0518
libwnck3: 3.30.0 → 3.32.0 ( #66586 )
...
libwnck3: 3.30.0 → 3.32.0
2019-08-14 00:17:30 +02:00
Jonathan Ringer
65b64ae301
bdsync: 0.10.1 -> 0.11.1
2019-08-13 15:00:05 -07:00
Stefano Mazzucco
2d4bdb8733
icedtea_web: use glib rather than gtk2 in buildInputs
...
The dependency on GTK was removed in
c7aae0e400
Also, remove that pesky commented-out line from `preConfigure` too!
2019-08-13 22:45:25 +01:00
Jan Tojnar
3e47ef9790
libwnck3: 3.30.0 → 3.32.0
...
https://gitlab.gnome.org/GNOME/libwnck/blob/3.32.0/NEWS#L1-33
2019-08-13 23:11:25 +02:00
Pavol Rusnak
b79ed3f1f4
runwayml: 0.8.1 -> 0.9.0
2019-08-13 22:05:33 +02:00
Marek Mahut
61ea45d6be
Merge pull request #65403 from dtzWill/update/dhcpcd-8.0.1
...
dhcpcd: 7.2.3 -> 8.0.2
2019-08-13 21:59:37 +02:00
Tim Otten
dae42566db
mysql80: init at 8.0.17 ( #65221 )
...
MySQL 8.0 is a significant iteration after MySQL 5.7. This patch adds it as
a parallel build alongside mysql57 (similar to mysql56 and mysql55 before).
2019-08-13 19:50:51 +00:00
Wael Nasreddine
a3bf0c2e40
vimPlugins: turn filetype and syntax before sourcing the plugins ( #66536 )
...
Vim Terraform expects the `filetypedetect` group to exist. However, since we were enabling the filetype and the syntax *after* loading the plugins, it was exiting with an error preventing us from generating the remote plugins manifest with the plugin enabled. See #65894 for context.
2019-08-13 12:25:06 -07:00
worldofpeace
a5b77b8cae
Merge pull request #65724 from doronbehar/improve-sequoia
...
Improve sequoia package expression
2019-08-13 14:44:35 -04:00
Doron Behar
701c788c3f
sequoia: improve expression, rename from sequoia-tool
...
- Add the package to the pythonPackages' attribute set.
- Make the python support overrideable
We use the pythonSupport argument.
- Rename sequoia-tool -> sequoia
We provide the whole ecosystem which includes:
* ffi bindings to Python and C
* zsh and bash completion for `sq` and `sqv` executables.
- Meta:
* Use a string as the homepage URL (plain URLs are deprecated).
* Change description of package to fit upstream and the files we
actually install.
* Add @doronbehar as maintainer.
2019-08-13 14:42:27 -04:00
Izorkin
83381bec9c
nginxMainline: 1.17.2 -> 1.17.3
2019-08-13 21:31:57 +03:00
Michael Raskin
6490f9c740
Merge pull request #65853 from wahjava/add/sagittarius-scheme
...
sagittarius-scheme: init at 0.9.6
2019-08-13 18:31:17 +00:00
Izorkin
aec55db737
nginxStable: 1.16.0 -> 1.16.1
2019-08-13 21:30:08 +03:00
Jan Tojnar
932bb0c3e1
Merge pull request #66570 from jtojnar/libgudev-233
...
libgudev: 232 → 233
2019-08-13 20:20:45 +02:00
Peter Simons
705b5cd05d
darcs: fix build
2019-08-13 20:01:38 +02:00
Tim Steinbach
ce1b77231a
git: 2.22.0 -> 2.22.1
2019-08-13 13:58:37 -04:00
Marek Mahut
72c55dda97
Merge pull request #64492 from dtzWill/update/evdi-1.6.2
...
evdi: 1.6.1 -> 1.6.2
2019-08-13 19:50:53 +02:00
Jan Tojnar
af4e271db9
libgudev: 232 → 233
...
https://ftp.gnome.org/pub/gnome/sources/folks/0.13/folks-0.13.1.news
2019-08-13 19:39:24 +02:00
Matthew Bauer
3ff9b6edec
Merge pull request #65783 from Mic92/drm
...
libdrm: cross-compile fix
2019-08-13 13:38:11 -04:00
worldofpeace
36e567fc08
Merge pull request #66395 from catern/simpfix
...
pythonPackages.simplefix: init at 1.0.12
2019-08-13 12:48:13 -04:00
Matthew Bauer
554a789403
Merge pull request #65537 from Holo-Host/201907/extend-static
...
pkgsStatic: override libunwind
2019-08-13 12:47:03 -04:00
worldofpeace
bf1cf3d520
Merge pull request #66191 from r-ryantm/auto-update/wolfssl
...
wolfssl: 4.0.0 -> 4.1.0
2019-08-13 12:43:06 -04:00
worldofpeace
d914581523
Merge pull request #66324 from xaverdh/notepadqq-qt-fix
...
notepadqq: use qt5's mkDerivation
2019-08-13 12:40:44 -04:00
worldofpeace
fe8364a821
Merge pull request #66397 from svalaskevicius/add-electron-6
...
electron: add 6.x version
2019-08-13 12:39:06 -04:00
Matthew Bauer
8a95dfd829
Merge pull request #66475 from kirelagin/stack-native-build-inputs
...
haskell.buildStackProject: Pass nativeBuildInputs
2019-08-13 11:45:19 -04:00
Matthew Bauer
bab946b216
Merge pull request #66542 from matthewbauer/mesa-add-surfaceless
...
mesa: add surfaceless egl platform
2019-08-13 11:40:03 -04:00
Aaron Andersen
65bf9f4aa5
Merge pull request #66305 from aanderse/kdevelop
...
kdevelop, kdev-php, kdev-python: 5.3.3 -> 5.4.0
2019-08-13 11:28:11 -04:00
Andreas Rammhold
1a72fe89f8
google-cloud-cpp: init at 0.11.0
2019-08-13 17:26:51 +02:00
Andreas Rammhold
ac6adc8260
crc32c: init at 1.1.0
2019-08-13 17:26:31 +02:00
Edmund Wu
a2ca6ef26f
sourcehut: init
...
builds-sr-ht: init at 0.45.13
dispatch-sr-ht: init at 0.11.0
git-sr-ht: init at 0.32.3
hg-sr-ht: init at 0.13.0
lists-sr-ht: init at 0.36.3
man-sr-ht: init at 0.12.4
meta-sr-ht: init at 0.34.3
paste-sr-ht: init at 0.5.1
todo-sr-ht: init at 0.46.8
2019-08-13 11:25:52 -04:00
Edmund Wu
f006c88d82
python3Packages.emailthreads: init at 0.1.0
2019-08-13 11:25:52 -04:00
Edmund Wu
b45ecd0f70
python3Packages.aiosmtpd: init at 1.2
2019-08-13 11:25:51 -04:00
Edmund Wu
4adaa3c313
python3Packages.atpublic: init at 1.0
2019-08-13 11:25:51 -04:00
Edmund Wu
ee2161c5e8
python3Packages.asyncpg: init at 0.18.3
2019-08-13 11:25:51 -04:00
Edmund Wu
eaa81a4cce
pythonPackages.sqlalchemy-utils: init at 0.34.0
2019-08-13 11:25:51 -04:00
Edmund Wu
cd878d09d9
pythonPackages.pgpy: init at 0.5.2
2019-08-13 11:25:50 -04:00
Edmund Wu
15eb9f95ab
pythonPackages.pytest-ordering: init at 0.6
2019-08-13 11:25:50 -04:00
Edmund Wu
beb547a1c6
pythonPackages.pep8-naming: init at 0.8.2
2019-08-13 11:25:50 -04:00
Edmund Wu
e73473f424
pythonPackages.flake8-polyfill: init at 1.0.2
2019-08-13 11:25:49 -04:00
Marek Mahut
2fc0ff34a4
Merge pull request #66562 from jonringer/bump-topgit
...
gitAndTools.topgit: 0.9 -> 0.19.12
2019-08-13 16:59:27 +02:00
Marek Mahut
9130e5f1e3
ponyc: disabling stdlib tests
2019-08-13 16:29:41 +02:00
Justin Bedo
f889214bc1
pythonPackages.cnvkit: init at 0.9.6
2019-08-13 10:14:10 -04:00
Justin Bedo
4bb197f4b2
pythonPackages.pyfaidx: init at 0.5.5.2
2019-08-13 10:14:06 -04:00
Justin Bedo
5859c5b472
pythonPackages.pomegranate: 0.8.1 -> 0.11.0
2019-08-13 10:13:38 -04:00
Dmitry Kalinkin
943c10325b
Merge pull request #66247 from veprbl/pr/arrow_1_14_1
...
arrow-cpp: 0.13.0 -> 0.14.1
2019-08-13 10:06:52 -04:00
Jan Tojnar
bb4a33ec91
ofono: init at 1.30 ( #66565 )
...
ofono: init at 1.30
2019-08-13 15:56:52 +02:00
Jan Tojnar
1dbc0be5b7
iwd: 0.18 → 0.19
...
fix build with ell 0.21
2019-08-13 15:37:16 +02:00
Jan Tojnar
590310b23f
ofono: init at 1.30
2019-08-13 15:37:16 +02:00
Jan Tojnar
bd3a54b222
ell: 0.20 -> 0.21
2019-08-13 15:37:15 +02:00
Jan Tojnar
4f7f9701ae
ell: run tests
...
Also add multiple outputs and some other details
2019-08-13 15:37:15 +02:00
Michael Weiss
66d745f5f5
python37Packages.google_api_python_client: 1.7.10 -> 1.7.11
2019-08-13 15:27:00 +02:00
adisbladis
bafc5edbac
Merge pull request #66563 from xrelkd/update/go-ethereum
...
go-ethereum: 1.9.1 -> 1.9.2
2019-08-13 14:24:19 +01:00
Vincent Laporte
3a4aab967b
ocaml: 4.08.0 -> 4.08.1
...
Bugfix release.
Announcement: https://inbox.ocaml.org/caml-list/0978f74a-9b8c-e9a3-e3a1-c110af4a2f04@inria.fr/T/#u
2019-08-13 12:37:56 +00:00
Jörg Thalheim
108c57b141
Merge pull request #53734 from yurrriq/update/noweb
...
Update noweb (and icon-lang)
2019-08-13 13:37:08 +01:00
xrelkd
196d4a6eee
go-ethereum: 1.9.1 -> 1.9.2
2019-08-13 20:34:30 +08:00
Jonathan Ringer
4e19dfcb70
gitAndTools.topgit: 0.9 -> 0.19.12
2019-08-13 05:28:03 -07:00
Marek Mahut
14368b71d0
Merge pull request #66558 from jonringer/bump-libversion
...
libversion: 2.8.1 -> 2.9.0
2019-08-13 14:24:04 +02:00
Marek Mahut
be28074e54
Merge pull request #66559 from jonringer/bump-varnish
...
varnish6: 6.1.1 -> 6.2.0
2019-08-13 14:23:26 +02:00
Jonathan Ringer
f1f59e19d2
varnish6: 6.1.1 -> 6.2.0
2019-08-13 04:32:11 -07:00
Michael Weiss
cfe629e42d
signal-desktop: 1.25.3 -> 1.26.0
2019-08-13 13:31:28 +02:00
Jonathan Ringer
74d8f3ca5d
libversion: 2.8.1 -> 2.9.0
2019-08-13 04:19:14 -07:00
Eric Bailey
6db22bca4b
noweb: remove noweb_awk
2019-08-13 13:06:01 +02:00
adisbladis
86d143f58c
emacsPackagesNg: Update melpa
2019-08-13 11:23:34 +01:00
adisbladis
8ac0ff54dc
emacsPackagesNg.melpaStablePackages: Fix eval by moving vterm override
2019-08-13 11:23:34 +01:00
Marek Mahut
8b2d5f9088
s3ql: 2.26 -> 3.2
2019-08-13 11:58:39 +02:00
adisbladis
7bad92935d
emacsPackagesNg.telega: Build server binary
2019-08-13 10:43:44 +01:00
Eric Bailey
3f2ba625d6
noweb: use clang on darwin
2019-08-13 11:21:44 +02:00
Marek Mahut
2871348a6f
Merge pull request #66548 from delroth/efivar-r13y
...
efivar: patch build system for reproducibility
2019-08-13 10:37:29 +02:00
Marek Mahut
1d37178f94
Merge pull request #64579 from MrMebelMan/init/django-logentry-admin
...
pythonPackages.django-logentry-admin: init at 1.0.4
2019-08-13 10:21:43 +02:00
R. RyanTM
7ab38e48eb
python37Packages.ipdb: 0.12 -> 0.12.2
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-ipdb/versions
2019-08-13 09:23:54 +02:00
Jonathan Ringer
3147cb1a8a
pythonPackages.sqlalchemy: 1.2.14 -> 1.3.6
2019-08-13 09:19:06 +02:00
Mario Rodas
c0dc032e42
pythonPackages.pytest_3: drop
...
pluggy>=0.9 introduced a breaking change to pytest_3, and is not
feasible to keep pytest_3 around in nixpkgs.
See: https://github.com/NixOS/nixpkgs/pull/64445
2019-08-13 09:18:25 +02:00
Mario Rodas
48e167e028
ulauncher: use latest pytest
2019-08-13 09:18:25 +02:00
Mario Rodas
0a59ea6076
pythonPackages.fastpair: disable tests
2019-08-13 09:18:25 +02:00
Mario Rodas
59d07914da
bonfire: fix build with pytest 4
2019-08-13 09:18:25 +02:00
Mario Rodas
9e36f82367
pythonPackages.click-default-group: 1.2 -> 1.2.1
2019-08-13 09:18:25 +02:00
Mario Rodas
6ea1b3cf9c
python3Packages.pysonos: 0.0.21 -> 0.0.22
2019-08-13 09:18:25 +02:00
Mario Rodas
174fe8470a
pythonPackages.zeep: fix build with pytest 4
2019-08-13 09:18:25 +02:00
Mario Rodas
f8aa6f1235
pythonPackages.zetup: 0.2.48 -> 0.2.52
2019-08-13 09:18:25 +02:00
Mario Rodas
2b78d54c82
python3Packages.matchpy: fix build with pytest 4
2019-08-13 09:18:25 +02:00
Pierre Bourdon
f289585d54
efivar: patch build system for reproducibility
2019-08-13 05:21:54 +02:00
Spencer Baugh
4756d3958b
pythonPackages.simplefix: init at 1.0.12
2019-08-13 00:54:16 +00:00
Aaron Andersen
8746c77a38
Merge pull request #66439 from aanderse/subversion
...
subversion: 1.9.10 -> 1.9.12, 1.10.4 -> 1.10.6
2019-08-12 20:53:59 -04:00
worldofpeace
233b0af748
Merge pull request #66533 from gnidorah/musescore
...
musescore: use qt5's mkDerivation
2019-08-12 20:42:25 -04:00
gnidorah
172e06dbb6
musescore: use qt5's mkDerivation
...
See #65399
2019-08-12 20:41:07 -04:00
Niklas Hambüchen
0f206b3e73
idevicerestore: init at 2019-02-14
2019-08-13 02:13:15 +02:00
Niklas Hambüchen
da3cb9e35b
libirecovery: init at 2019-01-28
2019-08-13 02:13:15 +02:00
Graham Christensen
8adaae2df2
dockertools.buildLayeredImage: default layer count up to 100
2019-08-12 19:59:40 -04:00
Niklas Hambüchen
3c2c3f0dda
libimobiledevice: Remove unnecessary --disable-static
.
...
That's already controlled by `dontDisableStatic`, see:
* https://nixos.org/nixpkgs/manual/#ssec-configure-phase
* #51540
2019-08-13 01:41:15 +02:00
Niklas Hambüchen
b7dfc72a88
fetchurl: Don't force-override curl's gssSupport to on. Fixes #66499 .
...
The original intent in commit
a1fec866
treewide: assemble all `fetchurlBoot` uses in overrides to `fetchurl` itself
was to turn `gssSupport` *off* on Darwin, but the code actually also forced
it *on* on Linux.
This resulted in previous (e.g. overlays) `.override { gssSupport = false; }`
being ignored (#66499 ).
This commit fixes it by just respecting the old value when it doesn't need
to be forced to off.
2019-08-13 00:42:46 +02:00
Matthew Bauer
a316d71f59
mesa: add surfaceless egl platform
2019-08-12 18:09:30 -04:00
Marek Mahut
4652a0a520
Merge pull request #65557 from fgaz/qbe/2019-07-11
...
qbe: unstable-2019-05-15 -> unstable-2019-07-11
2019-08-12 23:27:39 +02:00
Marek Mahut
9a86619dc8
Merge pull request #66071 from angristan/dogecoin/update/1.14.1
...
dogecoin: 1.10.0 -> 1.14.1
2019-08-12 23:26:54 +02:00
Marek Mahut
903333094b
Merge pull request #66057 from jdanekrh/jd_netcore
...
dotnet.sdk: 2.2.300/2.2.5 -> 2.2.401/2.2.6
2019-08-12 23:20:42 +02:00
Marek Mahut
81e28b4e9a
Merge pull request #66060 from r-ryantm/auto-update/ponyc
...
ponyc: 0.28.1 -> 0.30.0
2019-08-12 22:39:04 +02:00
Eric Wolf
aa696e8a63
bacula: fix cross compiling for armv7l
...
got this error while cross compiling:
checking whether setpgrp takes no argument... configure: error: cannot
check setpgrp when cross compiling
autoconf manual says:
— Macro: AC_FUNC_SETPGRP
If setpgrp takes no argument (the Posix version), define SETPGRP_VOID. Otherwise, it is the BSD version, which takes two process IDs as arguments. This macro does not check whether setpgrp exists at all; if you need to work in that situation, first call AC_CHECK_FUNC for setpgrp.
The result of this macro is cached in the ac_cv_func_setpgrp_void variable.
This macro is obsolescent, as current systems have a setpgrp whose signature conforms to Posix. New programs need not use this macro.
So override it with caching variable.
2019-08-12 22:35:45 +02:00
Marek Mahut
36d3a8a0eb
Merge pull request #66058 from pmiddend/fcppt-update-to-3.2.2
...
fcppt: 3.0.0 -> 3.2.2
2019-08-12 22:13:33 +02:00
Jiri Danek
e395060805
dotnet.sdk: 2.2.300/2.2.5 -> 2.2.401/2.2.6
2019-08-12 22:07:49 +02:00
Eric Culp
92cc949f9f
kernel generate-config.pl: Allow whitespace in values
...
In particular, this allows setting CONFIG_CMDLINE to a value with
multiple space-seperated parameters. Other variables also take free-form
strings and might similarly benefit.
2019-08-12 12:10:43 -07:00
worldofpeace
15f5535430
gparted: add adwaita-icon-theme
...
This adds the icon theme to XDG_DATA_DIRS.
It doesn't appear Plasma5 is properly configured for gtk
apps so this works around there being no icon theme installed
for it.
2019-08-12 14:45:27 -04:00
worldofpeace
7b3006478d
gparted: correct polkit support
...
Use wrapGAppsHook as well
2019-08-12 14:45:27 -04:00
Marek Mahut
1c709e0e6c
Merge pull request #63270 from r-ryantm/auto-update/itk
...
itk: 4.13.2 -> 5.0.0
2019-08-12 20:00:17 +02:00
Franz Pletz
fe9c676e99
nuspell: 2.2.0 -> 2.3.0
2019-08-12 19:53:54 +02:00
Marek Mahut
2ae308a414
Merge pull request #66498 from jonringer/bump-librelp
...
librelp: 1.3.0 -> 1.4.0
2019-08-12 19:52:32 +02:00
Marek Mahut
8c1d78aa4a
Merge pull request #62182 from dtzWill/update/moosefs-3.0.105
...
moosefs: 3.0.104 -> 3.0.105
2019-08-12 19:52:08 +02:00
Maximilian Bosch
f0d6955052
Merge pull request #66470 from WilliButz/update-blackbox-exporter
...
prometheus-blackbox-exporter: 0.12.0 -> 0.14.0, run tests and check config
2019-08-12 19:38:43 +02:00
Marek Mahut
7a82e00ba3
Merge pull request #62337 from khumba/netbeans-11
...
netbeans: 10.0 -> 11.0
2019-08-12 19:34:29 +02:00
Jan Tojnar
9af14d3e5a
Merge pull request #66531 from jtojnar/eds-hardcode-gschemas
...
gnome3.evolution-data-server: Hardcode more GSettings schemas
2019-08-12 19:33:17 +02:00
Marek Mahut
194909a092
Merge pull request #62825 from lfont/lfont/aseprite-unfree-1.2.11
...
aseprite-unfree: 1.2.9 -> 1.2.11
2019-08-12 19:22:09 +02:00
Marek Mahut
03b47280b9
Merge pull request #62650 from marius851000/azimuth-1.0.3
...
azimuth: use the builtins install target
2019-08-12 19:18:06 +02:00
Sarunas Valaskevicius
4a31479ae5
electron_6: init at 6.0.1
2019-08-12 18:14:10 +01:00
Marek Mahut
d7bcb48908
itk: Adding darwin.apple_sdk.frameworks.Cocoa
2019-08-12 19:13:14 +02:00
Marek Mahut
79b28f5a53
Merge pull request #63116 from peterhoeg/f/opendune
...
opendune: support ALSA and pulseaudio (move to SDL2)
2019-08-12 19:04:00 +02:00
Silvan Mosberger
096031a513
fetchurl: Make it overridable using callPackage
( #66503 )
...
fetchurl: Make it overridable using `callPackage`
2019-08-12 19:03:30 +02:00
Marek Mahut
7115780ea1
Merge pull request #65147 from magnetophon/x42-plugins
...
x42-plugins: 20190206 -> 20190714
2019-08-12 18:59:37 +02:00
Marek Mahut
129bf575a2
Merge pull request #63654 from mtrsk/update-dotnet-sdk-2.2.300
...
dotnet-sdk: 2.2.203 -> 2.2.300 (core 2.2.4 -> 2.2.5)
2019-08-12 18:58:54 +02:00
Marek Mahut
86ac9f55b9
Merge pull request #63600 from steadmon/fail2ban-dovecot-service
...
fail2ban: fix dovecot filter's journalmatch
2019-08-12 18:51:32 +02:00
Marek Mahut
d4b6735f55
Merge pull request #63424 from r-ryantm/auto-update/seafile-shared
...
seafile-shared: 6.2.11 -> 7.0.2
2019-08-12 18:48:30 +02:00
Marek Mahut
caf9295730
Merge pull request #63686 from flokli/mlarchive2maildir
...
mlarchive2maildir: init at 0.0.6
2019-08-12 18:47:34 +02:00
Marek Mahut
99d66e14b9
Merge pull request #65170 from erikarvstedt/tmpwatch-fuser
...
tmpwatch: add fuser support
2019-08-12 18:46:02 +02:00
worldofpeace
8a139bfa9f
Merge pull request #66483 from worldofpeace/calibre-cleanup
...
calibre: wrap manually
2019-08-12 12:44:15 -04:00
Marek Mahut
92f6cf61f8
Merge pull request #65422 from jojosch/teamspeak_server_3.9.1
...
teamspeak_server: 3.8.0 -> 3.9.1
2019-08-12 18:39:07 +02:00
Jan Tojnar
80cb87971e
gnome3.evolution-data-server: Fix gsettings-desktop-schemas path
2019-08-12 18:32:12 +02:00
Jan Tojnar
b18215bd6f
gnome3.evolution-data-server: Hardcode more GSettings schemas
...
I used Coccinelle to create a base patch:
spatch --sp-file hardcode-gsettings.cocci --dir src/ --in-place
```cocci
@@
expression GSETTINGS_SCHEMA;
expression settings;
@@
- settings = g_settings_new (GSETTINGS_SCHEMA);
+ {
+ GSettingsSchemaSource *schema_source;
+ GSettingsSchema *schema;
+ schema_source = g_settings_schema_source_new_from_directory ("@ESD_GSETTINGS_PATH@", g_settings_schema_source_get_default (), TRUE, NULL);
+ schema = g_settings_schema_source_lookup (schema_source, GSETTINGS_SCHEMA, FALSE);
+ settings = g_settings_new_full (schema, NULL, NULL);
+ g_settings_schema_source_unref (schema_source);
+ g_settings_schema_unref (schema);
+ }
```
2019-08-12 18:31:09 +02:00
WilliButz
4d7465126f
prometheus-varnish-exporter: 1.5 -> 1.5.1, use buildGoModule ( #66472 )
2019-08-12 09:23:27 -07:00
Jonathan Ringer
7943e28fec
librelp: 1.3.0 -> 1.4.0
2019-08-12 09:22:42 -07:00
Silvan Mosberger
a7c7bb156f
clight: init ( #64309 )
...
clight: init
2019-08-12 18:18:05 +02:00
Graham Christensen
5d807f80c7
Merge pull request #63864 from cransom/datadog-agent-integrations-fix
...
datadog-agent: fix extraIntegrations
2019-08-12 12:15:48 -04:00
Marek Mahut
c822f39a58
Merge pull request #66486 from nh2/zlib-static-shared-comments
...
zlib: Add comments regarding static/shared linking
2019-08-12 18:12:05 +02:00
Edmund Wu
1688dc72e5
clight: init at 3.1
2019-08-12 11:56:47 -04:00
Edmund Wu
a0736d0fad
clightd: init at 3.4
2019-08-12 11:56:47 -04:00
Edmund Wu
e277b3832a
libmodule: init at 4.2.0
2019-08-12 11:56:47 -04:00
Vincent Laporte
957a0ae2a7
ocamlPackages.camlp5: 7.07 -> 7.08
2019-08-12 14:36:38 +00:00
R. RyanTM
94804a63a2
apfel: 3.0.3 -> 3.0.4 ( #63977 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/apfel/versions
2019-08-12 10:36:03 -04:00
Marek Mahut
984851a9bf
Merge pull request #66509 from emilazy/add-git-revise
...
git-revise: init at 0.4.2
2019-08-12 15:25:42 +02:00
Pascal Bach
f5d84bb446
Revert "gitlab-runner: don't bundle prebuilt docker images ( #66225 )" ( #66522 )
...
This reverts commit 9175a201bb
.
2019-08-12 13:06:15 +00:00
Michael Weiss
a82860cb9e
Merge pull request #66434 from primeos/ffmpeg_4
...
ffmpeg_4: 4.1.4 -> 4.2
2019-08-12 14:52:39 +02:00
Lancelot SIX
8791afb8e6
unifont_upper: 12.1.02 -> 12.1.03
2019-08-12 14:15:01 +02:00
Lancelot SIX
f14b76634d
unifont: 12.1.01 -> 12.1.03
2019-08-12 14:15:01 +02:00
Michael Raskin
0ff831dedd
Merge pull request #66523 from charles-dyfis-net/sysdig-0.26.2
...
sysdig: 0.26.1 -> 0.26.2
2019-08-12 12:13:36 +00:00
Marek Mahut
48d07a5987
Merge pull request #65857 from jonringer/bump-click
...
click: 0.3.2 -> 0.4.2
2019-08-12 14:13:06 +02:00
Michael Weiss
ba3196ee9a
Merge pull request #66433 from primeos/scons
...
scons: 3.1.0 -> 3.1.1
2019-08-12 13:50:20 +02:00
Marek Mahut
87e13bb9e0
Merge pull request #66517 from doronbehar/update-sccache
...
sccache: 0.2.9 -> 0.2.10
2019-08-12 13:34:34 +02:00
Marek Mahut
9acb728c52
Merge pull request #66507 from jonringer/bump-libpinyin
...
libpinyin: 2.1.91 -> 2.3.0
2019-08-12 13:32:47 +02:00
Marek Mahut
60523a6222
Merge pull request #66505 from jonringer/bump-libetpan
...
libetpan: 1.8 -> 1.9.3
2019-08-12 13:32:18 +02:00
Marek Mahut
11bbc69354
Merge pull request #66372 from kirelagin/fsfe-reuse-0.4.1
...
reuse: 0.3.4 -> 0.4.1
2019-08-12 13:24:34 +02:00
Charles Duffy
9d151f1b7b
sysdig: 0.26.1 -> 0.26.2
2019-08-12 06:24:11 -05:00
markuskowa
45532916f0
Merge pull request #66342 from markuskowa/upd-gnss
...
gnss-sdr: 0.0.9 -> 0.0.11
2019-08-12 13:12:42 +02:00
Marek Mahut
e8016409bb
Merge pull request #66512 from saschagrunert/conmon
...
conmon: 0.3.0 -> 2.0.0
2019-08-12 11:56:32 +02:00
Jörg Thalheim
8529dea18d
Merge pull request #66515 from doronbehar/update-pdfcpu
...
pdfcpu: 0.2.2 -> 0.2.3
2019-08-12 10:49:00 +01:00
Timo Kaufmann
5fa2f51448
vimPlugins: update ( #66491 )
2019-08-12 11:29:07 +02:00
Vincent Laporte
4018a4cddf
coqPackages.interval: 3.4.0 -> 3.4.1
2019-08-12 09:05:16 +00:00
Doron Behar
0bd4aa02d1
sccache: 0.2.9 -> 0.2.10
2019-08-12 11:56:22 +03:00
WilliButz
dcc12cea9f
prometheus-blackbox-exporter: 0.12.0 -> 0.14.0, run tests
...
Also added myself as maintainer.
2019-08-12 10:53:00 +02:00
Doron Behar
ea955cb28f
pdfcpu: 0.2.2 -> 0.2.3
2019-08-12 11:16:39 +03:00
zimbatm
a0a0106f59
pre-commit: 1.17.0 -> 1.18.1
2019-08-12 09:34:23 +02:00
Sascha Grunert
965f869e59
conmon: 0.3.0 -> 2.0.0
...
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2019-08-12 09:02:15 +02:00
Emily
a010a7b665
git-revise: init at 0.4.2
...
A flexible and fast alternative to `git commit --amend`/`git rebase`.
See also:
* https://mystor.github.io/git-revise.html
* https://lobste.rs/s/5gdnrt/introducing_git_revise
* https://git-revise.readthedocs.io/en/latest/
2019-08-11 22:58:39 -07:00
Jonathan Ringer
7d8d9e4799
libpinyin: 2.1.91 -> 2.3.0
2019-08-11 22:00:17 -07:00
Niklas Hambüchen
cd6033ba97
fetchurl: Make it overridable.
...
This provides a workaround for #66499 , because this way
https://github.com/NixOS/nixpkgs/issues/66499#issuecomment-520277782
self: super: {
fetchurl = super.fetchurl.override (old: {
curl = old.curl.override {
gssSupport = false;
# ...
};
});
}
works as expected.
2019-08-12 06:51:05 +02:00
worldofpeace
3ea6859512
Merge pull request #66504 from tadeokondrak/discord-0.0.91
...
discord-canary: 0.0.85 -> 0.0.91
2019-08-11 22:52:35 -04:00
worldofpeace
bc0f60ff1c
Merge pull request #66389 from erictapen/scribus-1.5.5
...
scribusUnstable: 2019-01-16 -> 1.5.5
2019-08-11 22:49:05 -04:00
worldofpeace
ee877d7b19
Merge pull request #66497 from emilazy/add-stm32loader
...
stm32loader: init at 0.5.0
2019-08-11 22:31:07 -04:00
Jonathan Ringer
58fb551cc6
libetpan: 1.8 -> 1.9.3
2019-08-11 19:29:58 -07:00
Tadeo Kondrak
e836d29f52
discord-canary: 0.0.85 -> 0.0.91
2019-08-11 20:21:25 -06:00
worldofpeace
d73cca7808
Merge pull request #66435 from lightbulbjim/sigil-wrapping
...
sigil: use qt5's mkDerivation
2019-08-11 22:17:02 -04:00
Dmitry Kalinkin
34224c7ba0
Merge pull request #66117 from veprbl/pr/hepmc_2_06_10
...
hepmc: 2.06.09 -> 2.06.10
2019-08-11 22:16:16 -04:00
Emily
42e55dbe9a
stm32loader: init at 0.5.0
2019-08-11 18:46:33 -07:00
Herwig Hochleitner
ac2eb3151d
emacsPackages.melpaPackages: fix cmake-mode
2019-08-12 02:54:45 +02:00
Herwig Hochleitner
ff79e9dad2
steam: fix for screeps
2019-08-12 02:52:51 +02:00
Herwig Hochleitner
9acdab85e2
steam: add /lib32 and /lib64 to ldpath in chroot
2019-08-12 02:52:51 +02:00
Herwig Hochleitner
6a76eb087f
systemtap: 4.0 -> 4.1
2019-08-12 02:51:49 +02:00
Maximilian Bosch
4ed6d362c0
Merge pull request #66403 from volth/patch-356
...
scala_2_12: 2.12.8 -> 2.12.9
2019-08-12 02:33:05 +02:00
Silvan Mosberger
aa26fbfcbe
syncthing-gtk: gdk_pixbuf -> gdk-pixbuf
2019-08-12 01:02:06 +02:00
Silvan Mosberger
f5c793ecb4
haskellPackages: Unmark hpack, pantry and http-download as broken
...
Fixes evaluation of stack
2019-08-12 01:00:24 +02:00
Lassulus
612871e2ec
Merge pull request #66375 from emmanuelrosa/syncthing-1.2.1
...
syncthing: 1.1.4 -> 1.2.1
2019-08-12 00:22:25 +02:00
worldofpeace
bddce34e49
Merge pull request #66478 from aanderse/nylas-mail
...
nylas-mail-bin: drop package which is no longer supported upstream
2019-08-11 17:52:26 -04:00
Aaron Andersen
26f128c1af
nylas-mail-bin: drop package which is no longer supported upstream
2019-08-11 17:44:05 -04:00
Niklas Hambüchen
bda6618bb6
zlib: Add comments regarding static/shared linking.
...
The main explanation was taken from commit:
e999def1
zlib: clean up static/shared distincion
The `SHARED_MODE=1` bit was originally introduced in commit:
0bfc84b0
Cross-compile zlib for Windows
2019-08-11 21:32:22 +02:00
Peter Simons
44afe30245
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.14.4-5-g57efca0 from Hackage revision
f44d65d7f8
.
2019-08-11 20:48:10 +02:00
Peter Simons
57343fb703
haskell-pantry: disable test suite to fix the build
2019-08-11 20:48:10 +02:00
Peter Simons
3b19d7de6a
haskell-http-download: disable test suite to fix the build
2019-08-11 20:48:10 +02:00
Peter Simons
c4d321494e
haskell-hpack: disable the test suite to avoid build failures
2019-08-11 20:48:10 +02:00
Peter Simons
f2787c2af9
haskell-hsdev: drop broken overrides that no longer succeed
2019-08-11 20:48:10 +02:00
Peter Simons
ca171ca0fa
haskell-hlint: add version overrides to fix the build
2019-08-11 20:48:10 +02:00
Peter Simons
35c6087e37
haskell-text & parsec: fix version overrides for ghc-8.2.x
2019-08-11 20:48:10 +02:00
Peter Simons
a76bd39c64
haskell-cryptol: drop obsolete version overrides
2019-08-11 20:48:10 +02:00
Peter Simons
3cbe376b37
haskell-llvm-hs: drop obsolete version overrides
2019-08-11 20:48:10 +02:00
Peter Simons
79a149e051
hackage2nix: update list of broken builds
2019-08-11 20:48:10 +02:00
Peter Simons
fcd3115ef6
haskell-stack: drop obsolete version overrides
2019-08-11 20:48:09 +02:00
Peter Simons
c3941614d2
haskell-network-bsd: fix the build
2019-08-11 20:48:09 +02:00
Peter Simons
bfb9f66427
haskell-ip: drop obsolete override
2019-08-11 20:48:09 +02:00
Peter Simons
82feb71d0f
haskell-butcher: drop obsolete override
2019-08-11 20:48:09 +02:00
Peter Simons
7ae07cfcb4
haskell-names: drop obsolete overrides
2019-08-11 20:48:09 +02:00
Peter Simons
898444c93d
haskell-lambdabot-haskell-plugins: drop obsolete overrides
2019-08-11 20:48:09 +02:00
Peter Simons
fd303f8a62
haskell-pandoc: drop obsolete overrides
2019-08-11 20:48:09 +02:00
Peter Simons
76de461acc
haskell-hlint & hoogle: drop obsolete overrides
2019-08-11 20:48:09 +02:00
Peter Simons
e10ae7afa6
haskell-clock & tasty: break infinite recursions
2019-08-11 20:48:09 +02:00
Peter Simons
9038403136
cachix: fix infinite recursion during evaluation
2019-08-11 20:48:09 +02:00
Peter Simons
fba1a02724
haskell-clock: drop obsolete patches
2019-08-11 20:48:09 +02:00
Peter Simons
c4cfd7506b
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.14.4-5-g57efca0 from Hackage revision
8822e69b9b
.
2019-08-11 20:48:01 +02:00
Peter Simons
bc8bc2c7cf
hackage2nix: ensure Cabal 2.4.x is still available for older compilers
2019-08-11 20:46:43 +02:00
Peter Simons
99423d71c8
LTS Haskell 14.0
2019-08-11 20:46:43 +02:00
worldofpeace
51816f0d40
Merge pull request #66249 from virusdave/dnicponski/scratch/unison_language
...
unison-ucm: init at 1.0.M1c alpha
2019-08-11 14:16:34 -04:00
Dave Nicponski
4673896662
unison-ucm: init at 1.0.M1c alpha
2019-08-11 14:14:56 -04:00
Ashish SHUKLA
8c32ecd1f4
sagittarius-scheme: init at 0.9.6
2019-08-11 21:47:41 +05:30
R. RyanTM
791bc4762b
srt: 1.3.2 -> 1.3.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/srt/versions
2019-08-11 18:01:54 +02:00
Maximilian Bosch
12a7cc0d1f
Merge pull request #52685 from timokau/fzf-vim-dep
...
vimPlugins.fzf-vim: automatically add fzfWrapper
2019-08-11 17:16:36 +02:00
xrelkd
0a8e68b1b5
cargo-expand: 0.4.12 -> 0.4.13
2019-08-11 23:06:47 +08:00
Maximilian Bosch
5002c9aedb
Merge pull request #66473 from WilliButz/update-nginx-exporter
...
prometheus-nginx-exporter: 0.4.1 -> 0.4.2, run tests
2019-08-11 16:59:00 +02:00
worldofpeace
38b96afce8
calibre: wrap manually
...
Also move wrapGAppsHook to nativeBuildInputs
2019-08-11 10:42:47 -04:00
Vincent Laporte
18fa1c335e
ocamlPackages.ocaml-migrate-parsetree: 1.2.0 -> 1.4.0
2019-08-11 13:58:43 +00:00
Tim Steinbach
dbfea916f8
linux: 4.9.188 -> 4.9.189
2019-08-11 09:41:31 -04:00
Tim Steinbach
6710232309
linux: 4.4.188 -> 4.4.189
2019-08-11 09:40:55 -04:00
R. RyanTM
223adea447
ibus-engines.typing-booster-unwrapped: 2.6.2 -> 2.6.4 ( #65949 )
...
* ibus-engines.typing-booster-unwrapped: 2.6.2 -> 2.6.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ibus-typing-booster/versions
* use pname
2019-08-11 15:34:57 +02:00
edef
068f46f991
Merge pull request #63585 from edef1c/openssh-keysign
...
openssh: use ssh-keysign from PATH
2019-08-11 12:57:42 +00:00
Maximilian Bosch
142d2f8384
Merge pull request #65401 from aanderse/php-mongodb-driver
...
phpPackages.mongodb: init at 1.5.5
2019-08-11 14:49:38 +02:00
Kirill Elagin
18a95439ec
haskell.buildStackProject: Pass nativeBuildInputs
2019-08-11 14:21:13 +03:00
Michael Weiss
4e668aee42
python3Packages.pysnmp: 4.4.10 -> 4.4.11
2019-08-11 12:48:03 +02:00
WilliButz
d373b3fbb3
prometheus-nginx-exporter: 0.4.1 -> 0.4.2, run tests
2019-08-11 12:30:41 +02:00
Sander van der Burg
5f01a2586a
Merge pull request #50805 from r-ryantm/auto-update/axis2
...
axis2: 1.6.4 -> 1.7.9
2019-08-11 12:15:33 +02:00
Vincent Laporte
08f438fe50
ocamlPackages.ocsigen-start: 1.5.0 -> 1.8.0
2019-08-11 08:03:00 +00:00
Vincent Laporte
82db668615
ocamlPackages.ocsigen-toolkit: 2.0.0 -> 2.2.0
2019-08-11 08:03:00 +00:00
Marek Mahut
fba7d8e27f
Merge pull request #66457 from lasandell/wsjtx-2.1.0
...
wsjtx: 2.0.1 -> 2.1.0
2019-08-11 08:57:55 +02:00
Emmanuel Rosa
fd39791936
syncthing: clean up package
...
Thank you, @Lassulus
2019-08-11 08:35:24 +07:00
Emmanuel Rosa
d80670bdc2
syncthing: 1.1.4 -> 1.2.1
...
syncthing-gtk: add missing runtime dependencies
NixOS: fix syncthing-init NixOS test
2019-08-11 08:35:04 +07:00
Matthew Bauer
4557b9f1f5
Merge pull request #66419 from takeda/busybox
...
busybox: apply clang-cross patch when host is different than build system.
2019-08-10 20:18:18 -04:00
Luke Sandell
6417b03431
wsjtx: 2.0.1 -> 2.1.0
2019-08-10 18:54:55 -05:00
Chris Rendle-Short
2eb1dcc5b2
sigil: mark as unmaintained
...
Maintainer has not committed for >2 years.
2019-08-11 09:44:29 +10:00
Chris Rendle-Short
e373ce139f
sigil: use qt5's mkDerivation
...
Slightly different implementation because out of the box:
- $out/bin/sigil is a shell script wrapper
- $out/lib/sigil/sigil is the ELF executable
See #65399
2019-08-11 09:36:51 +10:00
Aaron Andersen
0f91a1f329
Merge pull request #66079 from marius851000/ctrtool-update
...
ctrtool: 0.15 -> 0.16
2019-08-10 19:28:57 -04:00
Marek Mahut
ea7c049d54
Merge pull request #65932 from r-ryantm/auto-update/gdcm
...
gdcm: 3.0.0 -> 3.0.1
2019-08-10 22:46:39 +02:00
Marek Mahut
85147685a3
Merge pull request #66442 from primeos/iw
...
iw: 5.0.1 -> 5.3
2019-08-10 22:44:42 +02:00
Marek Mahut
557fbe94b2
Merge pull request #65908 from r-ryantm/auto-update/fldigi
...
fldigi: 4.1.04 -> 4.1.07
2019-08-10 22:35:44 +02:00
Marek Mahut
850f7acc07
Merge pull request #64073 from r-ryantm/auto-update/live555
...
live555: 2019.05.29 -> 2019.06.28
2019-08-10 22:24:06 +02:00
Marek Mahut
40c26973c9
gdcm: adding darwin.apple_sdk.frameworks.ApplicationServices
2019-08-10 22:16:30 +02:00
Marek Mahut
5e53e1cb52
Merge pull request #65992 from r-ryantm/auto-update/mullvad-vpn
...
mullvad-vpn: 2019.5 -> 2019.6
2019-08-10 22:14:39 +02:00
Marek Mahut
4ff0effbab
Merge pull request #66053 from r-ryantm/auto-update/pmd
...
pmd: 6.16.0 -> 6.17.0
2019-08-10 22:02:53 +02:00
Marek Mahut
1d88c43d7c
Merge pull request #63990 from r-ryantm/auto-update/byacc
...
byacc: 20180609 -> 20190617
2019-08-10 21:53:32 +02:00
Marek Mahut
06edd50ad7
Merge pull request #64043 from r-ryantm/auto-update/guile-sdl2
...
guile-sdl2: 0.3.1 -> 0.4.0
2019-08-10 21:43:41 +02:00
Marek Mahut
985a6155dd
fldigi: 4.1.06 -> 4.1.07
2019-08-10 21:42:33 +02:00
Marek Mahut
af447de1b8
Merge pull request #65907 from r-ryantm/auto-update/fasm-bin
...
fasm-bin: 1.73.12 -> 1.73.15
2019-08-10 21:34:36 +02:00
Marek Mahut
33d044b525
Merge pull request #66101 from r-ryantm/auto-update/python3.7-folium
...
python37Packages.folium: 0.9.1 -> 0.10.0
2019-08-10 21:31:41 +02:00
Marek Mahut
6cd1e20412
Merge pull request #65962 from r-ryantm/auto-update/libfilezilla
...
libfilezilla: 0.17.1 -> 0.18.0
2019-08-10 21:30:24 +02:00
Marek Mahut
65844693fc
Merge pull request #66106 from r-ryantm/auto-update/python3.7-plotly
...
python37Packages.plotly: 3.10.0 -> 4.0.0
2019-08-10 21:14:14 +02:00
Marek Mahut
ec2c3f9116
Merge pull request #66102 from r-ryantm/auto-update/python3.7-poyo
...
python37Packages.poyo: 0.4.2 -> 0.5.0
2019-08-10 21:08:54 +02:00
Astro
c5eaef0ab9
firestarter: init at 1.7.3
2019-08-10 20:36:29 +02:00
Florian Peter
72330fc275
scylladb: init at 3.0.5
2019-08-11 02:11:32 +08:00
Florian Peter
53a4c3511b
thrift: re-add compatibility 0.10
2019-08-11 02:11:32 +08:00
Florian Peter
b0a480147b
libsystemtap: init at 3.2
2019-08-11 02:11:32 +08:00
Florian Peter
cb5b65c62a
antlr: add library outputs to 3.5.2
2019-08-11 02:11:32 +08:00
Marek Mahut
809b38a784
Merge pull request #62467 from r-ryantm/auto-update/librealsense
...
librealsense: 2.21.0 -> 2.22.0
2019-08-10 19:30:02 +02:00
Marek Mahut
2cc3a789c3
Merge pull request #62418 from r-ryantm/auto-update/glbinding
...
glbinding: 3.0.2 -> 3.1.0
2019-08-10 19:29:20 +02:00
Marek Mahut
64ebc0bf80
Merge pull request #62348 from r-ryantm/auto-update/argyllcms
...
argyllcms: 2.1.0 -> 2.1.1
2019-08-10 19:28:56 +02:00
Silvan Mosberger
cf2a158730
nixos/beegfs: mark as broken ( #66352 )
...
nixos/beegfs: mark as broken
2019-08-10 18:59:51 +02:00
Daniel Schaefer
e1a5484098
pptp: Fix shebangs
...
- Remove `which` as build-time input
- Use substituteInPlace instead of sed (warns if it fails to replace)
- Use perl in buildInputs as it's a run-time dependency
- Patch shebangs manually, not sure why fixupPhase doesn't do it
2019-08-11 01:53:08 +09:00
Stefano Mazzucco
ebde1ddd0e
icedtea_web: install .destkop entries
2019-08-10 17:27:41 +01:00
Stefano Mazzucco
de14e5b951
icedtea_web: update homepage
2019-08-10 17:04:51 +01:00
worldofpeace
4a3aa14c32
Merge pull request #60796 from r-ryantm/auto-update/standardnotes
...
standardnotes: 3.0.6 -> 3.0.15
2019-08-10 12:01:05 -04:00
R. RyanTM
55af862a76
standardnotes: 3.0.6 -> 3.0.15
2019-08-10 11:57:58 -04:00