Fabian Affolter
926d6ab20d
python3Packages.aiosyncthing: init at 0.5.1
2021-04-10 20:44:14 +02:00
Fabian Affolter
124aa02185
python3Packages.expects: init at 0.9.0
2021-04-10 20:41:26 +02:00
Mario Rodas
27d7c671af
Merge pull request #118972 from r-ryantm/auto-update/cloud-nuke
...
cloud-nuke: 0.1.27 -> 0.1.28
2021-04-10 12:31:55 -05:00
R. RyanTM
822c94a557
openfpgaloader: 0.2.5 -> 0.2.6
2021-04-10 17:24:56 +00:00
R. RyanTM
7a5b175c59
oneDNN: 2.1.3 -> 2.2.1
2021-04-10 17:12:26 +00:00
Fabian Affolter
bcb7d810cf
python3Packages.pydanfossair: init at 0.1.0
2021-04-10 18:55:57 +02:00
Sandro
a73020b2a1
Merge pull request #119020 from dotlambda/splinter-fix
...
pythonPackages.splinter: fix build
2021-04-10 18:42:38 +02:00
Sandro
42f3ca2467
Merge pull request #119017 from fabaff/bump-pykwalify
...
python3Packages.pykwalify: 1.7.0 -> 1.8.0
2021-04-10 18:41:58 +02:00
Sandro
baf5e666c6
Merge pull request #118957 from lovesegfault/pynvim-0.4.3
...
python3Packages.pynvim: 0.4.2 -> 0.4.3
2021-04-10 18:41:07 +02:00
Sandro
64a8f2b8e5
Merge pull request #118951 from kalbasit/update-west
...
python3Packages.west: 0.8.0 -> 0.10.1
2021-04-10 18:40:52 +02:00
Gabriel Ebner
cb6a191c65
Merge pull request #119040 from r-ryantm/auto-update/libqalculate
...
libqalculate: 3.17.0 -> 3.18.0
2021-04-10 18:30:20 +02:00
Sandro
38b7f6b9c2
Merge pull request #119022 from veprbl/pr/pythia_8_304
...
pythia: 8.303 -> 8.304
2021-04-10 17:09:22 +02:00
Mario Rodas
763b66fef5
Merge pull request #119013 from r-ryantm/auto-update/go-toml
...
go-toml: 1.8.1 -> 1.9.0
2021-04-10 10:03:14 -05:00
Sandro
937e6da44e
Merge pull request #118984 from Tomahna/metals
...
metals: 0.10.0 -> 0.10.1
2021-04-10 16:32:15 +02:00
Sandro
15435a234c
Merge pull request #118980 from r-ryantm/auto-update/dbmate
...
dbmate: 1.11.0 -> 1.12.0
2021-04-10 16:31:28 +02:00
Robert Schütz
c69e6e52e8
python3Packages.pytest-subprocess: init at 1.0.1
2021-04-10 15:36:46 +02:00
R. RyanTM
723a8da830
libqalculate: 3.17.0 -> 3.18.0
2021-04-10 13:36:16 +00:00
R. RyanTM
6ed757b460
lazygit: 0.26.1 -> 0.27.3
2021-04-10 13:15:23 +00:00
R. RyanTM
eff2b5d29f
jbang: 0.69.2 -> 0.70.0
2021-04-10 12:26:23 +00:00
Martin Weinelt
79fa31eff9
Merge pull request #119004 from mweinelt/home-assistant
...
home-assistant: 2021.4.2 -> 2021.4.3
2021-04-10 14:11:01 +02:00
Dmitry Kalinkin
9501203dc1
pythia: 8.303 -> 8.304
2021-04-10 08:05:43 -04:00
Robert Schütz
ecc1a0ff70
pythonPackages.splinter: fix build
...
Add six to propagatedBuildInputs.
Also enable tests and add dotlambda to maintainers.
2021-04-10 13:57:22 +02:00
Fabian Affolter
212244cd08
python3Packages.pykwalify: 1.7.0 -> 1.8.0
2021-04-10 13:32:01 +02:00
Dmitry Kalinkin
c32ba28e67
github-runner: fix eval ( #119011 )
2021-04-10 07:14:10 -04:00
R. RyanTM
79ea4d0e0f
go-toml: 1.8.1 -> 1.9.0
2021-04-10 11:09:57 +00:00
Vincent Haupert
f4af2f267a
nixos/github-runner: init at v2.277.1 ( #116775 )
...
* github-runner: init at 2.277.1
* nixos/github-runner: initial version
* nixos/github-runner: add warning if tokenFile in Nix store
* github-runner: don't accept unexpected attrs
* github-runner: formatting nits
* github-runner: add pre and post hooks to checkPhase
* nixos/github-runner: update ExecStartPre= comment
* nixos/github-runner: adapt tokenFile option description
Also note that not only a change to the option value will trigger a
reconfiguration but also modifications to the file's content.
* nixos/github-runner: remove mkDefault for DynamicUser=
* nixos/github-runner: create a parent for systemd dirs
Adds a parent directory "github-runner/" to all of the systemd lifecycle
directories StateDirectory=, RuntimeDirectory= and LogDirectory=.
Doing this has two motivations:
1. Something like this would required if we want to support multiple
runners configurations. Please note that this is already possible
using NixOS containers.
2. Having an additional parent directory makes it easier to remap
any of the directories. Without a parent, systemd is going to
complain if, for example, the given StateDirectory= is a symlink.
* nixos/github-runner: use specifier to get abs runtime path
* nixos/github-runner: use hostname as default for option `name`
Until now, the runner registration did not set the `--name` argument if
the configuration option was `null`, the default for the option.
According to GitHub's documentation, this instructs the registration
script to use the machine's hostname.
This commit causes the registration to always pass the `--name` argument
to the runner configuration script. The option now defaults to
`networking.hostName` which should be always set on NixOS.
This change becomes necessary as the systemd service name includes the
name of the runner since fcfa809 and, hence, expects it to be set. Thus,
an unset `name` option leads to an error.
* nixos/github-runner: use types.str for `name` option
Forcing a `name` option to comply with a pattern which could also be
used as a hostname is probably not required by GitHub.
* nixos/github-runner: pass dir paths explicitly for ExecStartPre=
* nixos/github-runner: update variable and script naming
* nixos/github-runner: let systemd choose the user/group
User and group naming restrictions are a complex topic [1] that I don't
even want to touch. Let systemd figure out the username and group and
reference it in our scripts through the USER environment variable.
[1] https://systemd.io/USER_NAMES/
* Revert "nixos/github-runner: use types.str for `name` option"
The escaping applied to the subdirectory paths given to StateDirectory=,
RuntimeDirectory= and LogsDirectory= apparently doesn't use the same
strategy that is used to escape unit names (cf. systemd-escape(1)). This
makes it unreasonably hard to construct reliable paths which work for
StateDirectory=/RuntimeDirectory=/LogsDirectory= and ExecStartPre=.
Against this background, I decided to (re-)apply restrictions to the
name a user might give for the GitHub runner. The pattern for
`networking.hostName` seems like a reasonable choice, also as its value
is the default if the `name` option isn't set.
This reverts commit 193ac67ba337990c22126da24a775c497dbc7e7d.
* nixos/github-runner: use types.path for `tokenFile` option
* nixos/github-runner: escape options used as shell arguments
* nixos/github-runner: wait for network-online.target
* github-runner: ignore additional online tests
2021-04-10 10:17:10 +00:00
Martin Weinelt
cd6cc34d41
python3Packages.python-smarttub: 0.0.21 -> 0.0.23
2021-04-10 12:04:21 +02:00
Martin Weinelt
977132fe59
python3Packages.devolo-home-control-api: 0.17.1 -> 0.17.3
2021-04-10 12:02:00 +02:00
Martin Weinelt
8cbaf51809
Merge pull request #118943 from mweinelt/home-assistant
...
home-assistant: 2021.4.1 -> 2021.4.2
2021-04-10 11:58:58 +02:00
Kevin Rauscher
92f5917c43
metals: 0.10.0 -> 0.10.1
2021-04-10 10:07:11 +02:00
R. RyanTM
3d3bad9ff3
dbmate: 1.11.0 -> 1.12.0
2021-04-10 07:49:58 +00:00
Doron Behar
ecd2d63dfd
Merge pull request #118975 from r-ryantm/auto-update/cpp-utilities
...
cpp-utilities: 5.10.1 -> 5.10.2
2021-04-10 07:47:41 +00:00
Thomas Gerbet
cadcf608b5
jasper: 2.0.26 -> 2.0.28
...
Fixes CVE-2021-3443.
Release notes:
https://github.com/jasper-software/jasper/releases/tag/version-2.0.27
https://github.com/jasper-software/jasper/releases/tag/version-2.0.28
2021-04-10 09:32:11 +02:00
R. RyanTM
ddccf4272c
cpp-utilities: 5.10.1 -> 5.10.2
2021-04-10 07:27:35 +00:00
R. RyanTM
e8a7bf4e2d
cloud-nuke: 0.1.27 -> 0.1.28
2021-04-10 07:03:23 +00:00
R. RyanTM
950b6c7868
civetweb: 1.13 -> 1.14
2021-04-10 06:47:54 +00:00
R. RyanTM
f549f4c86d
ciao: 1.19.0 -> 1.20.0
2021-04-10 06:44:18 +00:00
Dmitry Kalinkin
5bb883a1c0
rivet: 3.1.3 -> 3.1.4
2021-04-10 02:34:23 -04:00
R. RyanTM
cc2931b1a9
certbot: 1.13.0 -> 1.14.0
2021-04-10 06:23:42 +00:00
R. RyanTM
5131723e93
ccls: 0.20201219 -> 0.20210330
2021-04-10 06:19:39 +00:00
Daniël de Kok
0603c25738
python3Packages.pytorch: remove unused USE_MKL variable
...
PyTorch will always try to find MKL, USE_MKL does not do anything
anymore. So, we have to rely on MKL not being in the build
environment.
2021-04-10 08:10:28 +02:00
Daniël de Kok
209f4678f2
python3Packages.pytorch: disable building of tests
...
- We do not run them.
- The test binaries are installed into site-packages by default.
2021-04-10 08:09:38 +02:00
Daniël de Kok
4f876309fe
python3Packages.pytorch: convert boolean environment variables
...
We relied on the stdenv serialization for booleans. However, the
PyTorch configure script expects 0/1. So convert the options to 0/1
values.
2021-04-10 08:08:08 +02:00
R. RyanTM
b20d30e606
cargo-deny: 0.9.0 -> 0.9.1
2021-04-10 06:07:26 +00:00
R. RyanTM
85e62de17b
bazel-kazel: 0.2.1 -> 0.2.2 ( #118959 )
2021-04-09 22:52:24 -07:00
Wael M. Nasreddine
f3eddda1fb
python3Packages.west: 0.8.0 -> 0.10.1
2021-04-09 22:34:07 -07:00
Bernardo Meurer
debd8ed78f
python3Packages.pynvim: 0.4.2 -> 0.4.3
2021-04-09 22:08:38 -07:00
Ryan Mulligan
9d42670134
Merge pull request #117700 from r-ryantm/auto-update/python3.8-manhole
...
python38Packages.manhole: 1.6.0 -> 1.7.0
2021-04-09 20:53:02 -07:00
Ryan Mulligan
dd7dc1b724
Merge pull request #118473 from r-ryantm/auto-update/async-profiler
...
async-profiler: 1.8.4 -> 1.8.5
2021-04-09 20:50:02 -07:00
Ryan Mulligan
82dc205de6
Merge pull request #118511 from r-ryantm/auto-update/librealsense
...
librealsense: 2.42.0 -> 2.43.0
2021-04-09 20:47:58 -07:00
Martin Weinelt
8735fd1e95
Merge pull request #118944 from fabaff/homematicip
...
python3Packages.homematicip: init at 1.0.0
2021-04-10 02:19:55 +02:00
Martin Weinelt
e27e160247
python3Packages.pykodi: 0.2.3 -> 0.2.5
2021-04-10 01:31:55 +02:00
Martin Weinelt
47e2cb49d5
python3Packages.jsonrpc-websocket: 1.2.2 -> 3.0.0
2021-04-10 01:29:32 +02:00
Martin Weinelt
3779c01110
python3Packages.jsonrpc-base: 1.1.0 -> 2.0.0
...
Fetch source from GitHub so we can run tests, update homepage.
2021-04-10 01:29:19 +02:00
Martin Weinelt
d23d0aa3bb
python3Packages.jsonrpc-async: 1.1.1. -> 2.0.0
...
Fetch from GitHub to run tests, update homepage.
2021-04-10 01:28:56 +02:00
Martin Weinelt
e9ad3e3e10
python3Packages.zha-quirks: 0.0.55 -> 0.0.56
2021-04-10 01:28:41 +02:00
Fabian Affolter
7564d5ef16
python3Packages.homematicip: init at 1.0.0
2021-04-10 00:22:23 +02:00
Fabian Affolter
c197fdd498
python3Packages.aiohttp-wsgi: init at 0.8.2
2021-04-09 23:44:02 +02:00
Sandro
c1c617ff8d
Merge pull request #118895 from fabaff/bump-pywizlight
...
python3Packages.pywizlight: 0.4.5 -> 0.4.6
2021-04-09 23:03:42 +02:00
Fabian Affolter
c5a877a538
python3Packages.pyruckus: init at 0.14
2021-04-09 22:28:30 +02:00
Sandro
cbdbd24665
Merge pull request #118919 from fabaff/omnilogic
2021-04-09 21:57:00 +02:00
Johannes Schleifenbaum
3b46cdcc61
protoc-gen-twirp: 7.1.1 -> 7.2.0
2021-04-09 21:35:39 +02:00
Peter Simons
cb29de02c4
Merge pull request #118350 from NixOS/haskell-updates
...
Update Haskell package set to Stackage Nightly 2021-04-02 (plus other fixes)
2021-04-09 20:50:19 +02:00
Peter Simons
98f3f2f651
hackage2nix: keep the old version of refinery around for haskell-language-server
2021-04-09 20:31:28 +02:00
Peter Simons
b78820de3f
haskell-reflex-dom-core: add jailbreak to allow latest version of constraints
2021-04-09 20:23:33 +02:00
Peter Simons
adeee0d02e
haskell-dependent-sum-aeson-orphans: add jailbreak to allow latest version of constraints
2021-04-09 20:21:26 +02:00
Peter Simons
37905dfbf3
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.17.0-2-g2ef7e72 from Hackage revision
ca0d273639
.
2021-04-09 20:10:28 +02:00
Peter Simons
0868b8fb21
hackage2nix: update list of broken packages to fix evaluation on Hydra
2021-04-09 20:05:19 +02:00
Fabian Affolter
409af093e7
python3Packages.pyezviz: init at 0.1.8.7
2021-04-09 19:25:00 +02:00
Fabian Affolter
61a5c65f0d
python3Packages.omnilogic: init at 0.4.3
2021-04-09 18:44:41 +02:00
Frederik Rietdijk
0656d546fb
Merge pull request #118312 from NixOS/staging-next
...
Staging next
2021-04-09 18:29:47 +02:00
Maximilian Bosch
0b938eae3b
Merge pull request #117005 from tomberek/go-yq/test
...
yq-go: add simple test
2021-04-09 18:01:49 +02:00
Martin Weinelt
79d2bf4c84
Merge pull request #118809 from fabaff/webexteamssdk
2021-04-09 18:01:05 +02:00
Maximilian Bosch
45f94b613a
Merge pull request #117510 from r-ryantm/auto-update/py-spy
...
py-spy: 0.3.4 -> 0.3.5
2021-04-09 17:57:45 +02:00
Fabian Affolter
af602afe9d
python3Packages.nad-receiver: init at 0.2.0
2021-04-09 17:53:54 +02:00
Rouven Czerwinski
56fc7c44db
usbsdmux: 0.1.8 -> 0.2.0
2021-04-09 17:42:28 +02:00
Dennis Gosnell
b6043ee295
Merge pull request #118907 from cdepillabout/spago-0.20.0
...
spago: 0.19.0 -> 0.20.0
2021-04-10 00:40:43 +09:00
Maximilian Bosch
01e4f34873
Merge pull request #118079 from r-ryantm/auto-update/notcurses
...
notcurses: 2.2.3 -> 2.2.4
2021-04-09 17:38:00 +02:00
(cdep)illabout
8c36813a42
haskellPackages: remove dhall_1_37_1 extra package because it is no longer used
2021-04-10 00:04:42 +09:00
Fabian Affolter
027c28b18a
python3Packages.pyintesishome: init at 1.7.7
2021-04-09 17:03:10 +02:00
Martin Weinelt
7ab382b585
Merge pull request #118436 from fabaff/bump-plexwebsocket
2021-04-09 16:57:45 +02:00
(cdep)illabout
84902fa84a
spago: 0.19.0 -> 0.20.0
2021-04-09 23:47:09 +09:00
Fabian Affolter
4dc34642e3
python3Packages.webexteamssdk: init at 1.6
2021-04-09 16:44:12 +02:00
Richard Marko
2b3077c027
haskellPackages.update-nix-fetchgit: dontCheck
2021-04-09 16:27:11 +02:00
Florian Beeres
8fa0c918da
haskellPackages.capability: unbreak
...
The package compiles and works just fine without any additional changes
2021-04-09 16:12:34 +02:00
Richard Marko
552cfe19a1
haskellPackages.cereal-time: doJailbreak
2021-04-09 15:17:28 +02:00
Richard Marko
25b5fe7caf
haskellPackages.language-lua: doJailbreak
2021-04-09 15:17:28 +02:00
Richard Marko
2f665594b6
haskellPackages.cayene-lpp renamed to cayenne-lpp, fix in maintainer list
...
I've made a costly typo. Old package is now deprecated.
2021-04-09 15:17:28 +02:00
Richard Marko
b1353fcf59
haskellPackages.alex-tools: not broken
2021-04-09 15:17:28 +02:00
Richard Marko
fc421749be
haskellPackages.ttn-client: not broken
2021-04-09 15:17:28 +02:00
Richard Marko
a3dfde6476
haskellPackages.libmodbus: fix (lib)modbus system dependency
2021-04-09 15:17:28 +02:00
sternenseemann
27077f1149
python3Packages.pypandoc: vendor patches, test w/o pandoc-citeproc
...
* Translate all seds in postPatch into patches (for setting the static
path and skipping the test that needs network access)
* The patch for the changed pandoc heading generation was simplified:
Since we know our pandoc version is always that new, we can skip the
version check.
* Skip the test for pandoc-citeproc: pandoc-citeproc has been deprecated
in favor of pandoc --citeproc by the upstream pandoc developer.
pypandoc's testsuite doesn't reflect this yet (although it should
support --citeproc theoretically) to avoid depending on
pandoc-citeproc for the checkPhase (as we expect it to break again or
continue to be broken) we skip the test requiring pandoc-citeproc.
The breakage of pypandoc due to pandoc-citeproc was pointed out here:
https://github.com/NixOS/nixpkgs/pull/116635#issuecomment-809258707
Thank you!
2021-04-09 14:36:01 +02:00
sternenseemann
f0ceaf880e
ocamlPackages.mirage-crypto*: 0.9.1 -> 0.9.2
...
https://github.com/mirage/mirage-crypto/releases/tag/v0.9.2
2021-04-09 14:23:12 +02:00
sternenseemann
6fe82e59ee
haskellPackages.fuzzyfind: remove unnecessary override
...
https://github.com/runarorama/fuzzyfind/issues/1 was closed with release
2.1.0.
2021-04-09 14:18:43 +02:00
github-actions[bot]
c876eb99be
Merge master into staging-next
2021-04-09 12:06:22 +00:00
Fabian Affolter
0625b9a7af
python3Packages.pywizlight: 0.4.5 -> 0.4.6
2021-04-09 13:36:18 +02:00
Martin Weinelt
afd73abc4b
Merge pull request #118887 from dotlambda/pyturbojpeg-1.4.2
...
python3Packages.pyturbojpeg: 1.4.1 -> 1.4.2
2021-04-09 12:22:14 +02:00
Martin Weinelt
864dbf44a3
Merge pull request #118865 from mweinelt/home-assistant
2021-04-09 11:58:28 +02:00
sternenseemann
0767374c40
haskellPackages.ghc-bignum: unbreak
...
* Enable exactly one backend (Native seems like the safest choice, but
GMP also seems sane, interested to hear opinions on this!)
* Apply patch which fixes a type mismatch issue between Natural.hs and
Natural.hs-boot.
2021-04-09 11:31:52 +02:00
Alexander Bantyev
544664d484
Merge pull request #112477 from happysalada/fix_build_mix
...
buildMix: fix: initial try
2021-04-09 12:09:22 +03:00
Robert Schütz
1b0c015b91
python3Packages.zulip: fix build
2021-04-09 11:03:29 +02:00
Sandro
6f630a97e1
Merge pull request #118881 from fabaff/bump-twitterapi
...
python3Packages.twitterapi: 2.6.8 -> 2.6.10
2021-04-09 11:02:19 +02:00
Robert Schütz
9dc49179e0
python3Packages.urwid-readline: 0.12 -> 0.13
2021-04-09 10:47:45 +02:00
Robert Schütz
63d1bc7972
python3Packages.pyturbojpeg: 1.4.1 -> 1.4.2
...
https://github.com/lilohuang/PyTurboJPEG/releases/tag/v1.4.2
2021-04-09 10:25:11 +02:00
Ben Siraphob
970b82e7d0
coqtail-math: init at 20201124
2021-04-09 10:05:32 +02:00
Sandro
b5eec8b7fe
Merge pull request #118880 from Emantor/bump/labgrid
...
labgrid: 0.3.2 -> 0.3.3
2021-04-09 09:51:54 +02:00
Sandro
ce5c919122
Merge pull request #118844 from SuperSandro2000/python38Packages.h5py
...
python38Packages.h5py: 3.1.0 -> 3.2.1
2021-04-09 09:18:32 +02:00
Fabian Affolter
48491c72ce
python3Packages.twitterapi: 2.6.8 -> 2.6.10
2021-04-09 08:57:05 +02:00
github-actions[bot]
496c7d3e9d
Merge master into staging-next
2021-04-09 06:05:54 +00:00
sternenseemann
4462a1f678
ocamlPackages.irmin*: 2.5.1 -> 2.5.2
...
https://github.com/mirage/irmin/releases/tag/2.5.2
2021-04-09 07:57:04 +02:00
Rouven Czerwinski
aececed26b
labgrid: 0.3.2 -> 0.3.3
2021-04-09 07:56:06 +02:00
Mario Rodas
c9c90e31a3
Merge pull request #118591 from humancalico/libnbd-update
...
libnbd: 1.7.4 -> 1.7.5
2021-04-08 23:16:50 -05:00
Mario Rodas
b20a244252
Merge pull request #118777 from marsam/update-nodejs
...
nodejs: 10.24.0 -> 10.24.1, 12.22.0 -> 12.22.1, 14.16.0 -> 14.16.1
2021-04-08 23:13:52 -05:00
Sandro
6fc2b7ecc2
Merge pull request #116570 from dnr/gphotos-sync
2021-04-09 02:55:52 +02:00
Sandro
f37e906a18
python3Packages.wakeonlan: change license to MIT
2021-04-09 02:54:03 +02:00
Sandro
d5b46bbaa0
Merge pull request #118723 from oxalica/bump/electron-cash
2021-04-09 02:32:04 +02:00
Peter Simons
fd8fed8473
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.17.0-2-g2ef7e72 from Hackage revision
75dd0de40c
.
2021-04-09 02:30:30 +02:00
Sandro
14ef96000d
Merge pull request #118730 from TethysSvensson/master
...
flint: 2.5.2 -> 2.7.1
2021-04-09 02:24:19 +02:00
github-actions[bot]
c99b6f5343
Merge master into staging-next
2021-04-09 00:16:01 +00:00
Sandro Jäckel
40180ad725
python38Packages.h5py: 3.1.0 -> 3.2.1
2021-04-09 02:13:46 +02:00
Sandro
77de1a7f9c
Merge pull request #118847 from SuperSandro2000/jupyterlab
...
pythonPackages.jupyterlab: move jupyter-packaging to nativeBuildInput…
2021-04-09 02:12:50 +02:00
tnias
01cf5e4d68
dtc: add yaml support and enable tests ( #118700 )
2021-04-09 02:02:36 +02:00
Martin Weinelt
67b7e63d41
python3Packages.speedtest-cli: 2.1.2 -> 2.1.3
2021-04-09 01:25:57 +02:00
Edward Tjörnhammar
af45b82a37
jetbrains.jdk: 11.0.7-b64 -> 11.0.10-b37
2021-04-09 00:47:31 +02:00
Sandro
a5f6343808
Merge pull request #118702 from aanderse/conan
...
conan: 1.27.0 -> 1.35.0
2021-04-08 22:43:24 +02:00
sternenseemann
798dbc8478
haskellPackages.hgeometry-combinatiorial: unbreak
...
An upper bound on vector-builder was introduced which includes 0.3.8,
but excludes 0.3.8.1. I don't know why, but the changes between 0.3.8
and 0.3.8.1 look harmless enough to ignore. Possibly the
hgeometry-combinatorial maintainer operated under the assumption that
the author of vector-builder would always use version numbers which only
had 3 components.
2021-04-08 22:15:48 +02:00
sternenseemann
dd00a9aff5
haskellPackages.colourista: remove now obsolete patch
...
The patch we applied previously was included in a new release.
2021-04-08 22:07:44 +02:00
Sandro Jäckel
2895af7161
pythonPackages.jupyterlab: move jupyter-packaging to nativeBuildInputs, add pythonImportsCheck
2021-04-08 21:53:54 +02:00
Sandro
34a8f3d68d
Merge pull request #118808 from marsam/update-grpc
2021-04-08 21:22:50 +02:00
Frederik Rietdijk
4117f541cc
Merge pull request #118737 from FRidh/panel
...
python3Packages.{panel,bokeh}: update packages
2021-04-08 21:11:05 +02:00
github-actions[bot]
85b57e4446
Merge master into staging-next
2021-04-08 18:14:17 +00:00
Robert Schütz
c6bd90d48f
Merge pull request #118391 from dotlambda/openzwave-official
...
openzwave: use official version
2021-04-08 19:02:41 +02:00
Sandro
9e377a6ce4
Merge pull request #118823 from vcunat/p/tracker-i686-stop-gap
...
tracker: fixup i686 temporarily
2021-04-08 18:26:57 +02:00
Martin Weinelt
9803c87c07
Merge pull request #118758 from mweinelt/home-assistant
2021-04-08 18:06:27 +02:00
Michael Weiss
915e3fec91
Merge pull request #116544 from Synthetica9/sway-1.16
...
wlroots: 1.12 -> 1.13, sway: 1.5 -> 1.6
2021-04-08 17:53:42 +02:00
Vladimír Čunát
0c39a0b800
tracker: fixup i686 temporarily
...
Without causing rebuild on other platforms, as that would have to be
slowed down due to staging.
2021-04-08 17:36:57 +02:00
Patrick Hilhorst
c4976f3565
wlroots{,_0_12}: add synthetica (myself) as maintainer
2021-04-08 17:24:24 +02:00
Patrick Hilhorst
e03dde82a7
wlroots: 0.12.0 -> 0.13.0
...
Pulls in an upstream patch for dwl. Explicitly takes xcbutilrenderutil
as an argument to avoid pulling in all of xorg.
2021-04-08 17:24:23 +02:00
Patrick Hilhorst
49299adf4e
wlroots_0_12: init at 0.12.0
...
Uses the old wlroots in places where the new one isn't yet compatible.
Co-authored-by: Alyssa Ross <hi@alyssa.is>
Co-authored-by: Michael Weiss <dev.primeos@gmail.com>
2021-04-08 17:23:20 +02:00
Jörg Thalheim
97cdea3f94
Merge pull request #117170 from r-ryantm/auto-update/cargo-deny
...
cargo-deny: 0.8.9 -> 0.9.0
2021-04-08 15:23:10 +01:00
Robert Schütz
2e8e365f99
Merge pull request #118817 from dotlambda/smartypants-src
...
python3Packages.smartypants: fix src url
2021-04-08 16:19:59 +02:00
Michael Weiss
2b95bf44b8
llvmPackages_12: 12.0.0-rc4 -> 12.0.0-rc5
...
Note: Tested in #116646 .
2021-04-08 16:12:48 +02:00
Sandro
b90403a4f9
Merge pull request #118816 from dotlambda/ytmusicapi-0.15.1
...
python3Packages.ytmusicapi: 0.15.0 -> 0.15.1
2021-04-08 15:51:40 +02:00
Dmitry Kalinkin
01de9f2d45
python3Packages.smartypants: fix src url
...
Co-authored-by: Robert Schütz <dev@schuetz-co.de>
2021-04-08 15:46:25 +02:00
Sandro
f9544583b6
Merge pull request #118584 from fabaff/nats
2021-04-08 15:40:32 +02:00
Robert Schütz
8a8a05839a
python3Packages.ytmusicapi: 0.15.0 -> 0.15.1
...
https://github.com/sigma67/ytmusicapi/releases/tag/0.15.1
2021-04-08 15:29:07 +02:00
Sandro Jäckel
cd143399ec
Revert "python3Packages.smartypants: fix src url"
...
This reverts commit acc3b5ad90
.
2021-04-08 15:27:40 +02:00
Sandro
381aaa8547
Merge pull request #118795 from veprbl/pr/smartypants.py_fix_src
...
python3Packages.smartypants: fix src url
2021-04-08 15:25:49 +02:00
Jörg Thalheim
8865b1a8ce
Merge pull request #118803 from SuperSandro2000/radare-cleanup
...
Radare cleanup
2021-04-08 13:45:41 +01:00
Jörg Thalheim
e0e264e6ab
Merge pull request #118776 from marsam/marsam-codeowners
...
codeowners: add marsam to Ruby and PostgreSQL
2021-04-08 13:45:16 +01:00
Kim Lindberger
5a1bd5ff66
Merge pull request #116074 from talyz/discourse
...
discourse: Add package and NixOS module
2021-04-08 14:19:49 +02:00
github-actions[bot]
bf6abedefb
Merge master into staging-next
2021-04-08 12:06:16 +00:00
happysalada
481832b32d
beam-modules: buildMix -> mixRelease
2021-04-08 20:54:48 +09:00
Dmitry Kalinkin
acc3b5ad90
python3Packages.smartypants: fix src url
2021-04-08 07:30:35 -04:00
Martin Weinelt
61cf21b1fa
python3Packages.aiodiscover: 1.3.2 -> 1.3.3
2021-04-08 13:29:50 +02:00
austinbutler
5db7e33f1d
python3Packages.awslambdaric: init at 1.0.0 ( #118771 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-08 13:10:16 +02:00
Sandro Jäckel
9d3e9fc017
rizin: remove not required enableParallelBuilding
2021-04-08 13:08:05 +02:00
Sandro Jäckel
107adc2701
rizin: remove not required enableParallelBuilding
2021-04-08 13:07:43 +02:00
Sandro Jäckel
61712e88ed
radare2: remove ? null and assert
2021-04-08 13:06:47 +02:00
Jörg Thalheim
034c49f514
Merge pull request #118041 from Mic92/cutter
...
cutter: 1.12.0 -> 2.0.0
2021-04-08 11:32:54 +01:00
Alexander Bantyev
4fcc1eda6b
Merge pull request #118595 from dlesl/update-erlang
...
erlangR23: 23.2.6 -> 23.3.1
2021-04-08 13:29:58 +03:00
Sandro
952a87d190
Merge pull request #118796 from Riey/cargo-feature
2021-04-08 12:02:02 +02:00
Sandro
cef13018bb
Merge pull request #118787 from fabaff/bump-xknx
...
python3Packages.xknx: 0.17.5 -> 0.18.0
2021-04-08 11:40:40 +02:00
Sandro
5412d724a8
Merge pull request #118788 from kraem/kraem/go/1_15_11
...
go_1_15: 1.15.10 -> 1.15.11
2021-04-08 11:40:26 +02:00
Sandro
f320045f06
Merge pull request #118790 from fabaff/bump-pysmappee
...
python3Packages.pysmappee: 0.2.18 -> 0.2.23
2021-04-08 11:40:08 +02:00
Riey
6bf4e6b230
cargo-feature: init at 0.5.2
2021-04-08 18:32:24 +09:00
Sandro
88cd2147cf
Merge pull request #118765 from fabaff/bump-wakeonlan
...
python3Packages.wakeonlan: 1.1.6 -> 2.0.0
2021-04-08 11:29:31 +02:00
Sandro
65cb4ce042
Merge pull request #118725 from veehaitch/yubikey-manager-4.0.1
2021-04-08 11:29:00 +02:00
Orivej Desh
9741a4b3b4
x264: flatten configureFlags ( #118789 )
2021-04-08 05:09:32 -04:00
Fabian Affolter
79cb814ec4
python3Packages.pymazda: 0.0.10 -> 0.1.1
2021-04-08 10:19:12 +02:00
Fabian Affolter
82f9b63f70
python3Packages.pysmappee: 0.2.18 -> 0.2.23
2021-04-08 10:13:01 +02:00
kraem
004584d3b6
go_1_15: 1.15.10 -> 1.15.11
2021-04-08 10:00:47 +02:00
Mario Rodas
a20d26806f
python38Packages.internetarchive: 1.9.9 -> 2.0.2 ( #118779 )
...
Co-authored-by: Fabian Affolter <fabian@affolter-engineering.ch>
2021-04-08 09:55:51 +02:00
Sandro
339854db04
Merge pull request #118782 from eonpatapon/cue-0.3.0
...
cue: 0.2.2 -> 0.3.0
2021-04-08 09:53:34 +02:00
Fabian Affolter
26ab167218
python3Packages.xknx: 0.17.5 -> 0.18.0
2021-04-08 09:49:33 +02:00
Lorenz Leutgeb
2bc413b970
gradle: Add 7-rc-2, leave latest pointing at 6.8 ( #117462 )
2021-04-08 09:24:12 +02:00
Jean-Philippe Braun
e0213764e7
cue: 0.2.2 -> 0.3.0
2021-04-08 08:44:35 +02:00
github-actions[bot]
0ba1008684
Merge master into staging-next
2021-04-08 06:05:39 +00:00
Orivej Desh
394315def1
x264: fix static build
2021-04-08 05:59:56 +00:00
Benjamin Hipple
a634ea874a
Merge pull request #117354 from danieldk/onemkl
...
mkl: 2020.3.304 -> 2021.1.1.52
2021-04-07 23:47:55 -04:00
Anderson Torres
6188b599c2
Merge pull request #117856 from AndersonTorres/new-nodepy
...
nodepy-runtime: init at 1.7.3; pythonPackages.localimport: init at 1.7.3
2021-04-07 23:41:07 -03:00
Mario Rodas
e4650171af
Merge pull request #118684 from lugray/update-ruby_3_0
...
ruby_3_0: 3.0.0 -> 3.0.1
2021-04-07 21:02:45 -05:00
AndersonTorres
d9ed5352d7
nodepy-runtime: init at 2.1.5
2021-04-07 21:48:45 -03:00
Sandro
49cfaef0c3
Merge pull request #118596 from dlesl/update-rebar3
...
rebar3: 3.14.2 -> 3.14.4
2021-04-08 02:33:19 +02:00
Sandro
0e987c60c3
Merge pull request #115915 from jojosch/pywebview-3.4
...
pythonPackages.pywebview: 3.3.1 -> 3.4
2021-04-08 02:25:12 +02:00
github-actions[bot]
8d1d992273
Merge master into staging-next
2021-04-08 00:17:24 +00:00
Anderson Torres
91aa2b2dce
Merge pull request #117860 from AndersonTorres/new-ronin
...
pythonPackages.ronin: init at 1.1.1
2021-04-07 21:09:43 -03:00
Martin Weinelt
558235c32c
Merge pull request #118768 from fabaff/pyhomepluscontrol
...
python3Packages.homepluscontrol: init at 0.0.5
2021-04-08 01:45:12 +02:00
Martin Weinelt
33b025702a
Merge pull request #118767 from fabaff/screenlogicpy
...
python3Packages.screenlogicpy: init at 0.3.0
2021-04-08 01:33:17 +02:00
Martin Weinelt
7a8fe6244b
Merge pull request #118766 from fabaff/yalexs
2021-04-08 01:32:14 +02:00
Fabian Affolter
7e1a972bc0
python3Packages.homepluscontrol: init at 0.0.5
2021-04-08 01:29:52 +02:00
Martin Weinelt
e0b81f0a51
Merge pull request #118176 from fabaff/aiodiscover
2021-04-08 01:27:33 +02:00
Fabian Affolter
712ab79af5
python3Packages.pubnub: 4.8.0 -> 5.1.1
2021-04-08 01:14:19 +02:00
Fabian Affolter
c33772a781
python3Packages.yalexs: init at 1.1.10
2021-04-08 01:10:17 +02:00
Fabian Affolter
529811ddcb
python3Packages.screenlogicpy: init at 0.3.0
2021-04-08 00:57:19 +02:00
Fabian Affolter
eca0abfd50
python3Packages.aiodiscover: init at 1.3.2
2021-04-08 00:48:47 +02:00
Fabian Affolter
4a23886536
python3Packages.async-dns: init at 1.1.9
2021-04-08 00:48:46 +02:00
Fabian Affolter
61f566d45b
python3Packages.pytest-raises: init at 0.11
2021-04-08 00:48:46 +02:00
Fabian Affolter
54db6aaf6e
python3Packages.wakeonlan: 1.1.6 -> 2.0.0
2021-04-08 00:08:54 +02:00
Bernardo Meurer
890b13b38c
Merge pull request #118701 from jansol/pipewire
...
pipewire: 0.3.24 -> 0.3.25
2021-04-07 21:35:29 +00:00
Sandro
df6ff00a37
Merge pull request #118747 from NeQuissimus/sbtextras
...
sbt-extras: 2021-03-29 → 2021-04-06
2021-04-07 23:24:55 +02:00
Sandro
5dabc86289
Merge pull request #118748 from NeQuissimus/jenkins
...
jenkins: 2.277.1 → 2.277.2
2021-04-07 23:24:41 +02:00
talyz
9b30cda2f6
gitlab: 13.9.4 -> 13.10.2
2021-04-07 23:23:24 +02:00
Jonathan Ringer
141ece8fe2
python3Packages.requests-aws4auth: fix build, add missing six dep
2021-04-07 13:18:52 -07:00
Jonathan Ringer
a4c701e7e3
python3Packages.gdown: fix build, add missing six dep
2021-04-07 13:18:52 -07:00
Tim Steinbach
608bb089e9
python3Packages.boto3: 1.17.45 -> 1.17.46
2021-04-07 13:14:39 -07:00
Tim Steinbach
321f4d54f0
python3Packages.botocore: 1.20.45 -> 1.20.46
2021-04-07 13:14:39 -07:00
AndersonTorres
34da7899c5
pythonPackages.ronin: init at 1.1.1
2021-04-07 16:34:51 -03:00
Vincent Laporte
cf42b2eb0f
ocamlPackages.sqlite3: use Dune 2
2021-04-07 21:27:13 +02:00
Vincent Haupert
0ff4e2a618
pythonPackages.makefun: init at 1.11.2
2021-04-07 21:16:42 +02:00
Vincent Haupert
c1c43413d6
python3Packages.solo-python: mark package as broken
...
solo-python currently does not support fido2 >= v0.9. Hence, we mark the
package as broken until upstream intoduces support. Starting point to
track this issue: https://github.com/solokeys/solo-python/issues/110 .
2021-04-07 21:16:40 +02:00
Vincent Haupert
0e489fbc97
python3Packages.aws-adfs: loosen fido2 version constraint
2021-04-07 21:15:00 +02:00
Vincent Haupert
7b36a1ad09
pythonPackages.fido2: 0.8.1 -> 0.9.1
2021-04-07 21:14:57 +02:00
Alexander Krimm
ddfc9e0dc3
scenic-view: init at 11.0.2
2021-04-07 21:12:00 +02:00
Alexander Krimm
91e408f47f
scenebuilder: init at 15.0.0
2021-04-07 21:11:59 +02:00
maralorn
c50e680b03
Merge pull request #118735 from KAction/laminar
...
laminar: use "pname" instead of "name" in mkDerivation
2021-04-07 20:50:02 +02:00
Vincent Laporte
cc6d25b0d3
ocamlPackages.merlin-extend: use Dune 2
2021-04-07 20:34:26 +02:00
Vincent Laporte
e66af6a67e
reason: 3.6.2 → 3.7.0
2021-04-07 20:34:26 +02:00
Vincent Laporte
55ddc94d92
ocamlPackages.ocamlnet: 4.1.8 → 4.1.9
2021-04-07 20:32:28 +02:00
github-actions[bot]
6e4d572602
Merge master into staging-next
2021-04-07 18:14:53 +00:00
Tim Steinbach
5e504f87a8
jenkins: 2.277.1 → 2.277.2
2021-04-07 18:01:25 +00:00
Tim Steinbach
5452be4bc6
sbt-extras: 2021-03-29 → 2021-04-06
2021-04-07 18:00:26 +00:00
Frederik Rietdijk
c6ed6450c9
Revert "Revert "python3Packages.bokeh: 2.2.3 -> 2.3.0""
...
Bokeh is now used with a supposedly compatible version of panel.
This reverts commit 3660d282ac
.
2021-04-07 17:40:32 +02:00
Frederik Rietdijk
5e2eccd298
python3Packages.panel: 0.9.7 -> 0.11.1
...
Since 0.10.0 setup.py the node assets are no longer included in the
tarball. During setup, npm is used to first collect assets. Then,
a function is bokeh used to bundle the assets. Unfortunately,
at that time it attempts to collect files *again*. This we cannot
handle so we do not bundle.
2021-04-07 17:38:32 +02:00
oxalica
5162507599
pythonPackages.pysatochip: init at 0.11.4
2021-04-07 23:27:18 +08:00
oxalica
a81bd15fcf
pythonPackages.pathvalidate: init at 2.4.1
2021-04-07 23:27:18 +08:00
Martin Weinelt
d1183f3dc4
Merge pull request #118648 from fabaff/bump-pychromecast
...
python3Packages.PyChromecast: 9.1.1 -> 9.1.2
2021-04-07 17:21:27 +02:00
Tethys Svensson
962cac656b
flint: 2.5.2 -> 2.7.1
2021-04-07 16:10:59 +02:00
Sandro
a73894acfb
Merge pull request #118726 from saschagrunert/ginkgo
...
ginkgo: 1.16.0 -> 1.16.1
2021-04-07 15:58:03 +02:00
Sandro
c2dddefa0b
Merge pull request #118721 from happysalada/update_nodejs
...
nodejs: 15.13.0 -> 15.14.0
2021-04-07 15:53:02 +02:00
Sandro
015a720046
Merge pull request #118720 from dotlambda/transitions-0.8.8
...
python3Packages.transitions: 0.8.7 -> 0.8.8
2021-04-07 15:52:39 +02:00
Jan Tojnar
e3c239fa55
gi-docgen: fix patch URL
...
Fixes: https://github.com/NixOS/nixpkgs/issues/118728
2021-04-07 15:33:15 +02:00
Jan Solanti
f94c84f844
pipewire: 0.3.24 -> 0.3.25
2021-04-07 16:23:43 +03:00
Sandro
99fd96f6a8
pythonPackages.bokeh: add comment to update together with panel
2021-04-07 15:04:41 +02:00
Sascha Grunert
caf9668c8b
ginkgo: 1.16.0 -> 1.16.1
...
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2021-04-07 14:31:47 +02:00
Frederik Rietdijk
3660d282ac
Revert "python3Packages.bokeh: 2.2.3 -> 2.3.0"
...
This version of bokeh is apparently incompatible with the current panel (0.9.7).
Using it results in all kind of missing models and modules.
We should upgrade panel but it is not straightforward. Until then, bokeh should
remain at 2.2.
This reverts commit ba9b70bcfd
.
2021-04-07 14:25:52 +02:00
github-actions[bot]
1d48804dab
Merge master into staging-next
2021-04-07 12:06:23 +00:00
happysalada
ba6577f8cb
nodejs: 15.13.0 -> 15.14.0
2021-04-07 20:45:34 +09:00
Robert Schütz
6d49bb239f
python3Packages.transitions: 0.8.7 -> 0.8.8
...
https://github.com/pytransitions/transitions/releases/tag/0.8.8
2021-04-07 12:23:00 +02:00
Sandro
b219457ac0
Merge pull request #117333 from OPNA2608/fix/supercollider-wrapping/21.05
...
supercollider: fix Qt wrapping
2021-04-07 10:31:19 +02:00
Jonas Heinrich
a0408312e8
krankerl: init at 0.13.0 ( #118582 )
2021-04-07 10:07:31 +02:00
Sandro
54767a9b45
Merge pull request #118710 from lopsided98/buildbot-update
...
buildbot: 3.0.2 -> 3.1.0
2021-04-07 09:49:09 +02:00
Ben Wolsieffer
8dd8ee4487
buildbot: 3.0.2 -> 3.1.0
2021-04-07 00:21:38 -04:00
Mario Rodas
bfd326421e
nodejs-14_x: 14.16.0 -> 14.16.1
...
https://github.com/nodejs/node/releases/tag/v14.16.1
2021-04-07 04:20:00 +00:00
Mario Rodas
61d28e7fb6
python38Packages.grpcio-tools: 1.36.1 -> 1.37.0
2021-04-07 04:20:00 +00:00
Mario Rodas
2493c84369
nodejs-12_x: 12.22.0 -> 12.22.1
...
https://github.com/nodejs/node/releases/tag/v12.22.1
2021-04-07 04:20:00 +00:00
Mario Rodas
26279f95f1
grpc: 1.36.4 -> 1.37.0
...
https://github.com/grpc/grpc/releases/tag/v1.37.0
2021-04-07 04:20:00 +00:00
Mario Rodas
5ed5e2a391
nodejs-10_x: 10.24.0 -> 10.24.1
...
https://github.com/nodejs/node/releases/tag/v10.24.1
2021-04-07 04:20:00 +00:00
Mario Rodas
e36ce4359f
bundix: add marsam to maintainers
2021-04-07 04:20:00 +00:00
Jan Tojnar
714ef27ffe
Merge branch 'master' into staging-next
2021-04-07 05:32:57 +02:00