Commit Graph

35550 Commits

Author SHA1 Message Date
Marek Mahut
c9d957afc1
Merge pull request #66875 from r-ryantm/auto-update/dvdstyler
dvdstyler: 3.1 -> 3.1.2
2019-08-19 10:01:04 +02:00
Marek Mahut
c3ff03f63e
Merge pull request #66868 from r-ryantm/auto-update/fldigi
fldigi: 4.1.07 -> 4.1.08
2019-08-19 09:18:53 +02:00
Marek Mahut
7d3829683e
Merge pull request #66864 from r-ryantm/auto-update/FlexGet
flexget: 2.21.15 -> 2.21.16
2019-08-19 09:15:30 +02:00
Marek Mahut
9541c6b7bf
Merge pull request #66740 from lopsided98/processing-update
processing: 3.4 -> 3.5.3
2019-08-19 08:43:13 +02:00
R. RyanTM
4db5a101e8 dvdstyler: 3.1 -> 3.1.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/dvdstyler/versions
2019-08-18 23:32:26 -07:00
Peter Hoeg
374e0ad0a8 pulseview: use mkDerivation 2019-08-19 08:14:21 +02:00
gnidorah
741cab4c66 mytetra: use qt5's mkDerivation 2019-08-19 08:04:51 +02:00
gnidorah
be820b8761 munt: use qt5's mkDerivation 2019-08-19 08:04:51 +02:00
R. RyanTM
42f9a45660 fldigi: 4.1.07 -> 4.1.08
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fldigi/versions
2019-08-18 22:50:57 -07:00
R. RyanTM
818b71b84b flexget: 2.21.15 -> 2.21.16
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/flexget/versions
2019-08-18 21:43:00 -07:00
Nikolay Amiantov
b7d04d6e6b flashplayer: 32.0.0.223 -> 32.0.0.238 2019-08-19 02:04:37 +03:00
worldofpeace
05fbabfd43
Merge pull request #66849 from eadwu/vscode/1.37.1
vscod{e,ium}: 1.37.1
2019-08-18 18:15:11 -04:00
worldofpeace
27dbf754e3
Merge pull request #66684 from vbgl/mkvtoolnix-qt-mkDerivation
mkvtoolnix: use wrapQtApp
2019-08-18 17:58:06 -04:00
Vincent Laporte
b43c368bda mkvtoolnix: use wrapQtApp
See #65399
2019-08-18 17:56:37 -04:00
WilliButz
066136034c
Merge pull request #65945 from r-ryantm/auto-update/imagemagick
imagemagick7: 7.0.8-53 -> 7.0.8-58
2019-08-18 23:43:46 +02:00
worldofpeace
3a26957d91
Merge pull request #66721 from emmanuelrosa/brave-desktop-file-fix
brave: fix path to brave in *.desktop file
2019-08-18 17:30:35 -04:00
worldofpeace
5c430ff744
Merge pull request #64607 from gloaming/gimp-fix-plugins-exiv2
Fix build for gimp-with-plugins against exiv2 0.27.1
2019-08-18 17:21:36 -04:00
Edmund Wu
fae006f6ee
vscode: 1.37.0 -> 1.37.1 2019-08-18 16:50:21 -04:00
Edmund Wu
7e48bc78f2
vscodium: 1.36.1 -> 1.37.1 2019-08-18 16:50:11 -04:00
Marek Mahut
fcacab714d
Merge pull request #66804 from r-ryantm/auto-update/clipgrab
clipgrab: 3.8.3 -> 3.8.4
2019-08-18 22:24:03 +02:00
Marek Mahut
5603eec8ac
Merge pull request #66832 from kim0/xmrigproxy300
Xmrigproxy300
2019-08-18 21:59:40 +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
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
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
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
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
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
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
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
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
adisbladis
ee80e10a98
emacs-packages: Make elpa generated file overrideable 2019-08-18 11:10:02 +01:00
adisbladis
eacc71a6b6
emacs-packages: Add easy wrapper script to update elpa 2019-08-18 11:03:32 +01:00
R. RyanTM
ffbb4d26f9 kdeconnect: 1.3.4 -> 1.3.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/kdeconnect/versions
2019-08-18 12:02:51 +02:00
Maximilian Bosch
b1ac3587cd
kitty: python3 runtime requires ncurses executables
`infocmp` from `ncruses.dev` is needed to copy kitty's terminfo e.g. to
a remote server: 3a5baf2722/docs/faq.rst (id45)

Fixes #66583
2019-08-18 10:55:45 +02:00
xrelkd
b2b2441f79 parity-beta: 2.6.0 -> 2.6.1 2019-08-18 16:34:09 +08:00
xrelkd
b2c7b8ab3f parity: 2.5.5 -> 2.5.6 2019-08-18 16:33:50 +08:00
Vladimír Čunát
8ed485c67b
Merge #65948: tlaplusToolbox: 1.5.7 -> 1.6.0 2019-08-18 10:11:50 +02:00
Marek Mahut
47de427923
Merge pull request #66798 from r-ryantm/auto-update/calibre
calibre: 3.45.2 -> 3.46.0
2019-08-18 09:44:37 +02:00
Frederik Rietdijk
295888c622
Merge pull request #66381 from NixOS/staging-next
Staging next
2019-08-18 08:54:45 +02:00
Evan Stoll
0be1f764fb gitkraken: add evanjs to maintainers 2019-08-17 22:04:47 -04:00
Evan Stoll
58b482987e gitkraken: remove gnome2 2019-08-17 22:04:47 -04:00
Evan Stoll
52f36c3db4 gitkraken: 6.1.1 -> 6.1.3 2019-08-17 21:30:42 -04:00