Commit graph

210414 commits

Author SHA1 Message Date
vasile luta
da5bb025c6 rsyslog: include libmaxminddb 2020-01-23 22:23:09 +02:00
Michael Weiss
983f39cdab
unrar: Install all C++ header files into the "dev" output
This is e.g. required for the rar2fs build [0], which needs at least
version.hpp, rar.hpp, dllext.hpp, dll.hpp, and headers5.hpp.

At least Gentoo does this as well [1] but most other distributions only
install dll.hpp or no header files at all.

[0]: https://github.com/NixOS/nixpkgs/pull/78189
[1]: https://gitweb.gentoo.org/repo/gentoo.git/tree/app-arch/unrar/unrar-5.8.5.ebuild
2020-01-23 21:16:38 +01:00
kraem
04bf042e2f
rar2fs: init at 1.28.0 2020-01-23 21:16:20 +01:00
Jonathan Ringer
f4b4c66a08 steam: use 64-bit libva 2020-01-23 12:13:14 -08:00
Dmitry Kalinkin
f4131d260d
cernlib: add src mirror url 2020-01-23 15:03:34 -05:00
Niklas Hambüchen
6df94f6688
Merge pull request #78386 from plumelo/feature/remmina-1.3.10
remmina: 1.3.9 -> 1.3.10
2020-01-23 20:42:20 +01:00
Jaka Hudoklin
25e80647b3
Merge pull request #78381 from Charg/update-tf-providers
terraform-providers: bump version
2020-01-23 19:34:47 +00:00
Meghea Iulian
3f46a4afab remmina: 1.3.9 -> 1.3.10 2020-01-23 21:10:57 +02:00
Yurii Rashkovskii
8c54c8240a
frama-c: 19.1 -> 20.0 2020-01-23 10:55:29 -08:00
adisbladis
0df887dd7b
Merge pull request #78379 from adisbladis/doc-patch-appimagetools
doc: Fix callout reference in appimagetools
2020-01-23 18:45:55 +00:00
chris
67509cc831 Updated the terraform providers 2020-01-23 10:34:48 -08:00
Profpatsch
166d8247d0 modules/at-spi2-core: add debugging help to description
This makes the error message greppable.
2020-01-23 19:31:05 +01:00
Profpatsch
65862d2140 dasher: init at 2018-04-03 2020-01-23 19:31:05 +01:00
Ryan Mulligan
cb0843898b
Merge pull request #78334 from r-ryantm/auto-update/qview
qview: 2.0 -> 3.0
2020-01-23 10:17:05 -08:00
adisbladis
65ff43e866
doc: Fix callout reference in appimagetools 2020-01-23 17:49:13 +00:00
Izorkin
f2c9bcf009 nixos/unit: fix attrs 2020-01-23 20:40:49 +03:00
Jörg Thalheim
ace14c5b38
nodePackages_12_x: add node-gyp (#78070)
nodePackages_12_x: add node-gyp
2020-01-23 17:17:51 +00:00
WilliButz
b5302705b5
Merge pull request #78369 from Ma27/bump-matrix-synapse
matrix-synapse: 1.8.0 -> 1.9.0
2020-01-23 18:05:35 +01:00
Eric Bailey
6c868ddda3 renderizer: init at 2.0.5 (#78326) 2020-01-23 08:04:54 -08:00
Mario Rodas
a8c301e72e
Merge pull request #78368 from marsam/update-procs
procs: 0.8.16 -> 0.9.0
2020-01-23 10:37:54 -05:00
Timo Kaufmann
7db53cc312
Merge pull request #78348 from timokau/pygments-lexer-fix
python2.pkgs.ipython, python2.pkgs.sphinx: use proper python2 lexer
2020-01-23 16:10:21 +01:00
kraem
89f80c0a90
maintainers: add kraem 2020-01-23 15:29:12 +01:00
Mario Rodas
944236a0f1
Merge pull request #78355 from marsam/update-spotify-tui
spotify-tui: 0.11.0 -> 0.12.0
2020-01-23 09:11:56 -05:00
Mario Rodas
4dbba7a143
procs: 0.8.16 -> 0.9.0 2020-01-23 09:00:00 -05:00
Profpatsch
7228a3c0bc lib/cli: mkKey -> mkOptionName, use generators.mkValueStringDefault
Let’s call them by what they are, option names.

`generators.mkValueStringDefault` is a better value string renderer
than plain `toString`.

Also add docs to all options.
2020-01-23 14:47:38 +01:00
Profpatsch
18520b7f36 lib/generators: floats are not supported in mkValueStringDefault
They are cut off after a few decimal places; we cannot in good faith
define a default string representation with that.
2020-01-23 14:47:38 +01:00
Profpatsch
e71e1be859 lib/cli: rename renderX options to mkX
Mirrors the naming scheme in `generators.nix`, for consistency.

Also rename `key` to `k` and value to `v` to aid readability to the
code structure.
2020-01-23 14:47:38 +01:00
Profpatsch
b2654c226a lib/cli,lib/tests/misc: somewhat more standard formatting 2020-01-23 14:47:38 +01:00
Profpatsch
6841f408cc CODEOWNERS: add Profpatsch to /lib/cli.nix and /lib/asserts.nix 2020-01-23 14:47:38 +01:00
Profpatsch
582354d3b6 lib/cli: encodeGNUCommandLine -> toGNUCommandLineShell
The semantic difference between `encode` and `to` is not apparent.
Users are likely to confuse both functions (which leads to unexpected
error messages about the wrong types). Like in `generators.nix`, all
functions should be prefixed by `to`.

Furthermore, converting to a string depends on the target context. In
this case, it’s a POSIX shell, so we should name it that (compare
`escapeShellArg` in `strings.nix`).

We can later add versions that escape for embedding in e.g. python
scripts or similar.
2020-01-23 14:47:38 +01:00
Profpatsch
88a7f65c83 lib/cli: unexport symbols & sort with generators
lib/cli is very similar to generators, so it should follow largely the
same interface. Similar to how generators isn’t exported, we should
also namespace cli by default (plus “cli” is only three characters to
type).
2020-01-23 14:47:38 +01:00
Maximilian Bosch
6930a1602c
matrix-synapse: 1.8.0 -> 1.9.0
https://github.com/matrix-org/synapse/releases/tag/v1.9.0
2020-01-23 14:32:22 +01:00
Michael Weiss
5a4b93e33c
Merge pull request #76787 from primeos/sway
sway: 1.2 -> 1.4, wlroots: 0.8.1 -> 0.10.0
2020-01-23 14:19:59 +01:00
Christian Höppner
4da3513960
Pass on nixos configuration to amazonImage 2020-01-23 14:16:25 +01:00
Christian Höppner
94899871b8
nixos/amazon-init.nix: Add gzip to amazon-init path 2020-01-23 14:15:26 +01:00
Christian Höppner
6d68699809
nixos/amazon-init.nix: Add gnutar to amazon-init PATH 2020-01-23 14:15:25 +01:00
Christian Höppner
52d5ce38fb
nixos/amazon-init.nix: add git to amazon-init script PATH 2020-01-23 14:15:18 +01:00
Vincent Laporte
ab6eebbe20 ocamlPackages.batteries: 2.10.0 → 2.11.0 2020-01-23 14:01:38 +01:00
Yorick van Pelt
23d5d9bbe9
nixos/alertmanager: add environmentFile, envsubst for secrets 2020-01-23 13:51:00 +01:00
Maximilian Bosch
a605fcabae
evcxr: 0.4.6 -> 0.5.0
https://crates.io/crates/evcxr/0.5.0
2020-01-23 13:16:58 +01:00
Arseniy Seroka
055e5b391a
Merge pull request #78325 from romildo/upd.screengrab
lxqt.screengrab: 1.101 -> 2.0.0
2020-01-23 14:19:18 +03:00
Mario Rodas
166ac309e7
spotify-tui: 0.11.0 -> 0.12.0
Changelog: https://github.com/Rigellute/spotify-tui/releases/tag/v0.12.0
2020-01-23 05:30:00 -05:00
Mario Rodas
28e4113a78
nodejs-13_x: 13.6.0 -> 13.7.0 2020-01-23 04:20:00 -05:00
Mario Rodas
dfaae48381
broot: 0.11.9 -> 0.12.0 2020-01-23 04:20:00 -05:00
Jaka Hudoklin
3ff9f5ccd4
Merge pull request #78059 from xtruder/pkgs/xss-lock/session-param
xss-lock: add patch to allow setting session
2020-01-23 09:01:45 +00:00
Timo Kaufmann
0811a69fef python2.pkgs.sphinx: user proper python2 lexer 2020-01-23 09:40:26 +01:00
Timo Kaufmann
66675b5650 python2.pkgs.ipython: use the proper python2 lexer
Since pygments 2.5 `PythonLexer` refers to python3 [1]. We have to be
explicit if we want to use python2.

[1] https://pygments.org/docs/changelog/
2020-01-23 09:40:14 +01:00
lewo
27accf380b
Merge pull request #78339 from marsam/update-terraform
terraform: 0.12.19 -> 0.12.20
2020-01-23 09:02:28 +01:00
R. RyanTM
c221115c4f python37Packages.hstspreload: 2019.12.25 -> 2020.1.17 2020-01-22 23:59:12 -08:00
R. RyanTM
34719fa2c7 python27Packages.boltons: 19.3.0 -> 20.0.0 2020-01-22 23:58:31 -08:00