Marek Mahut
388e154b24
Merge pull request #66813 from aethelz/update/docui-2.0.0
...
docui: 1.0.3 -> 2.0.0
2019-08-18 22:04:41 +02:00
Marek Mahut
9128a9d9a7
Merge pull request #66783 from r-ryantm/auto-update/agda-stdlib
...
AgdaStdlib: 1.0.1 -> 1.1
2019-08-18 21:59:57 +02:00
Marek Mahut
5603eec8ac
Merge pull request #66832 from kim0/xmrigproxy300
...
Xmrigproxy300
2019-08-18 21:59:40 +02:00
Marek Mahut
44ba72b546
Merge pull request #66776 from toonn/pass-otp-bump
...
pass-otp: 1.1.1 -> 1.2.0
2019-08-18 21:56:58 +02:00
Marek Mahut
ab2cfaf9a7
Merge pull request #66839 from Izorkin/nftables
...
nftables: 0.9.0 -> 0.9.1
2019-08-18 21:56:11 +02:00
WilliButz
dfb66de179
grafana-loki: 0.2.0 -> 0.3.0 ( #66835 )
2019-08-18 21:47:31 +02:00
Nikolay Amiantov
44099371b2
bolt: 0.7 -> 0.8
2019-08-18 21:17:32 +03:00
Nikolay Amiantov
9960a2be9b
umockdev: 0.12.1 -> 0.13.1
...
Enable testing and fix a bug which leads to bolt build failing on some host filesystems.
2019-08-18 21:17:32 +03:00
WilliButz
4835f65e95
Merge pull request #66814 from mguentner/synapse_1_3_1
...
matrix-synapse: 1.2.1 -> 1.3.1
2019-08-18 19:30:14 +02:00
Sarah Brofeldt
ef1be47edb
Merge pull request #66816 from xrelkd/update/parity
...
parity: 2.5.5 -> 2.5.6, parity-beta: 2.6.0 -> 2.6.1
2019-08-18 19:27:23 +02:00
markuskowa
7bc147a496
Merge pull request #66810 from evanjs/feature/gitkraken-6.1.3
...
gitkraken: 6.1.1 -> 6.1.3
2019-08-18 19:14:59 +02:00
Izorkin
643565cd59
nftables: 0.9.0 -> 0.9.1
2019-08-18 20:14:48 +03:00
Michael Raskin
9cb419ee2c
Merge pull request #66837 from AluisioASG/libreoffice-still-6.2.6
...
libreoffice-still: 6.1.5.2 -> 6.2.6.2
2019-08-18 16:52:20 +00:00
Eric Litak
ccf3557015
nixos/cjdns: add extraConfig option ( #53502 )
2019-08-18 18:47:56 +02:00
Marek Mahut
e6fb350cf6
Merge pull request #66606 from DerTim1/riemann-config
...
nixos/riemann-tools: Add ExtraArgs Config Option
2019-08-18 18:47:19 +02:00
WilliButz
0c2b9e6eac
Merge pull request #65903 from r-ryantm/auto-update/EventStore
...
eventstore: 5.0.0 -> 5.0.2
2019-08-18 18:39:45 +02:00
Aaron Andersen
fbff757014
Merge pull request #66730 from bbigras/starship
...
starship: init at 0.10.1
2019-08-18 12:02:21 -04:00
Sarah Brofeldt
af55f23e8d
Merge pull request #66817 from Ma27/kitty-ncurses
...
kitty: python3 runtime requires ncurses executables
2019-08-18 18:01:58 +02:00
Sarah Brofeldt
754d626411
Merge pull request #66828 from jD91mZM2/multimc
...
multimc: 0.6.6 -> 0.6.7
2019-08-18 17:56:43 +02:00
Aluísio Augusto Silva Gonçalves
2bc8c6705e
libreoffice-still: 6.1.5.2 -> 6.2.6.2
2019-08-18 12:56:29 -03:00
Florian Klink
368be910fc
Merge pull request #66825 from flokli/nixos-systemd-test-dup
...
nixosTests.systemd: remove duplicate copypasta
2019-08-18 17:54:09 +02:00
Danylo Hlynskyi
d09b4e3c87
lib: introduce forEach
= flip map ( #64723 )
...
* lib: introduce `foreach` = flip map
The main purpose is to bring attention to `flip map`, which improves
code readablity. It is useful when ad-hoc anonymous function
grows two or more lines in `map` application:
```
map (lcfg:
let port = lcfg.port;
portStr = if port != defaultPort then ":${toString port}" else "";
scheme = if cfg.enableSSL then "https" else "http";
in "${scheme}://cfg.hostName${portStr}"
) (getListen cfg);
```
Compare this to `foreach`-style:
```
foreach (getListen cfg) (lcfg:
let port = lcfg.port;
portStr = if port != defaultPort then ":${toString port}" else "";
scheme = if cfg.enableSSL then "https" else "http";
in "${scheme}://cfg.hostName${portStr}"
);
```
This is similar to Haskell's `for` (http://hackage.haskell.org/package/base-4.12.0.0/docs/Data-Traversable.html#v:for )
* mass replace "flip map -> foreach"
See `foreach`-introduction commit.
```
rg 'flip map ' --files-with-matches | xargs sed -i 's/flip map /foreach /g'
```
* Revert "mass replace "flip map -> foreach""
This reverts commit 3b0534310c
.
* mass replace "flip map -> forEach"
See `forEach`-introduction commit.
```
rg 'flip map ' --files-with-matches | xargs sed -i 's/flip map /forEach /g'
```
* rename foreach -> forEach
* and one more place
* add release notes
2019-08-18 18:47:57 +03:00
xbreak
549cbc0f48
gcc: 9.1.0 -> 9.2.0
...
gcc 9.2.0 is a bug-fix release.
2019-08-18 15:39:54 +00:00
Danylo Hlynskyi
a2ea2a1945
tortoisehg: untie from mercurial and update to 5.0.2 ( #66173 )
...
* tortoisehg: untie from mercurial
When I've added `tortoisehg` package, it turned out that mercurial updates
sometimes broke thg. I've added a comment to `mercurial/default.nix` to
update torotisehg version during mercurial updates, but this worked the other way round:
mercurial stopped to be updated regularly (https://github.com/NixOS/nixpkgs/pull/60993 ).
And sadly it didn't solve the issue - https://github.com/NixOS/nixpkgs/issues/61759 .
Here I'm trying to untie them. Tortoisehg will build a custom mercurial package
if versions don't match. This makes updating tortoisehg more complicated,
but it is still better than current situation.
* expose custom mercurial from thg package
2019-08-18 18:28:03 +03:00
danbst
d80cd26ff9
Merge branch 'master' into flip-map-foreach
2019-08-18 18:00:25 +03:00
Ahmed Kamal
18e615a7a5
remove kDefaultDonateLevel patch, upstream now defaults it to zero
2019-08-18 16:40:31 +02:00
Ahmed Kamal
03fbb136f4
xmrig-proxy: 2.14.4 -> 3.0.0
2019-08-18 16:37:01 +02:00
toonn
5a035ec45f
pass-otp: 1.1.1 -> 1.2.0
...
Had to specify `BASHCOMPDIR` in `$out` to keep things pure.
2019-08-18 16:34:16 +02:00
Danylo Hlynskyi
2ca09a94be
Merge pull request #66657 from danbst/pgpackages-fixes
...
Postgresql plugins fixes
2019-08-18 17:30:56 +03:00
Marek Mahut
aff691af10
Merge pull request #65892 from r-ryantm/auto-update/couchdb
...
couchdb2: 2.3.0 -> 2.3.1
2019-08-18 16:28:41 +02:00
Marek Mahut
6f27f6c494
Merge pull request #66358 from Ralith/openxr-loader
...
openxr-loader: init at 1.0.1
2019-08-18 16:25:45 +02:00
Marek Mahut
17f72af38a
Merge pull request #66513 from alexbakker/looking-glass-client-b1
...
looking-glass-client: a12 -> B1
2019-08-18 16:20:32 +02:00
Marek Mahut
bcc14b2700
Merge pull request #66757 from kim0/xmrig300
...
xmrig: 2.14.4 -> 3.0.0
2019-08-18 16:16:27 +02:00
Marek Mahut
f9676fb94b
Merge pull request #66800 from r-ryantm/auto-update/cutemaze
...
cutemaze: 1.2.4 -> 1.2.5
2019-08-18 16:15:32 +02:00
Danylo Hlynskyi
2b393c8913
elasticsearch: add example on how to use plugins ( #55115 )
...
See https://discourse.nixos.org/t/elastic-search-plugins/1997
2019-08-18 17:11:20 +03:00
jD91mZM2
c86c704289
multimc: 0.6.6 -> 0.6.7
2019-08-18 14:53:59 +02:00
Marek Mahut
3a17a52a2a
Merge pull request #66676 from WilliButz/grafana-update
...
grafana: 6.3.2 -> 6.3.3
2019-08-18 14:18:07 +02:00
Marek Mahut
83fb9ed4cc
Merge pull request #66779 from r-ryantm/auto-update/bird
...
bird2: 2.0.4 -> 2.0.5
2019-08-18 14:16:40 +02:00
Florian Klink
36ece762e5
Merge pull request #66621 from flokli/gitlab-12.1.6
...
gitlab-ce: 12.0.3 -> 12.1.6
2019-08-18 14:08:14 +02:00
Marek Mahut
f39b94cb71
clipgrab: use qt5’s mkDerivation
2019-08-18 13:59:27 +02:00
Marek Mahut
d2ebcec779
tests: adding metabase service test
2019-08-18 13:44:26 +02:00
Marek Mahut
69089e990e
modules: adding metabase service
2019-08-18 13:44:26 +02:00
tbenst
fd7ca9faec
python: wxPython: init at 4.0.6
2019-08-18 13:42:46 +02:00
Florian Klink
ffef31459a
nixosTests.systemd: remove duplicate copypasta
...
It seems the regression test for #35268 sneaked in twice.
2019-08-18 13:11:51 +02:00
adisbladis
f2c619fae8
Merge pull request #66819 from adisbladis/elpa-org-overrides
...
emacs-packages: Make elpa & org package sets overrideable
2019-08-18 12:50:22 +02:00
Eugene
6f494e57ec
docui: add maintainer
2019-08-18 13:36:35 +03:00
Eugene
41797ac53f
docui: 1.0.3 -> 2.0.0
2019-08-18 13:36:19 +03:00
adisbladis
517d1b0869
elpa-packages: 2019-08-18
2019-08-18 11:10:34 +01:00
adisbladis
b6ccc1a6b0
emacs-packages: Make org packages overrideable
2019-08-18 11:10:06 +01:00
adisbladis
316f68552b
emacs-packages: Add simple org-packages update wrapper script
2019-08-18 11:10:06 +01:00