Commit Graph

35588 Commits

Author SHA1 Message Date
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
Emery Hemingway
9a1b8bc325 irssi: build bundled OTR plug-in and remove "irssi-otr" package 2019-08-18 12:35:57 +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
Ahmed Kamal
61077c02ca xmrig: 2.14.4 -> 3.0.0 2019-08-18 02:01:28 +02:00
R. RyanTM
2784331d15 clipgrab: 3.8.3 -> 3.8.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/clipgrab/versions
2019-08-17 15:34:15 -07:00
R. RyanTM
b31f56c783 calibre: 3.45.2 -> 3.46.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/calibre/versions
2019-08-17 14:54:59 -07:00
worldofpeace
9399e2bf59
Merge pull request #66793 from mmahut/nbstripout
nbstripout: moving buildInputs to checkInputs
2019-08-17 17:49:55 -04:00
Marek Mahut
b560e4674a
Merge pull request #66764 from tadeokondrak/discord-canary-0.0.93
discord-canary: 0.0.92 -> 0.0.93
2019-08-17 23:46:16 +02:00
Maximilian Bosch
f217c3b6fe
Merge pull request #66769 from r-ryantm/auto-update/avidemux
avidemux: 2.7.3 -> 2.7.4
2019-08-17 23:28:41 +02:00
Marek Mahut
92571e8a55 nbstripout: moving buildInputs to checkInputs
Fixes https://hydra.nixos.org/build/98602011
2019-08-17 23:10:37 +02:00
Marek Mahut
6858166004
Merge pull request #66791 from r-ryantm/auto-update/cni-plugins
cni-plugins: 0.8.1 -> 0.8.2
2019-08-17 22:56:01 +02:00
Marek Mahut
73a719a21a
Merge pull request #66777 from r-ryantm/auto-update/bspwm
bspwm: 0.9.8 -> 0.9.9
2019-08-17 22:48:59 +02:00
Marek Mahut
e0833da7a2
Merge pull request #66778 from r-ryantm/auto-update/barrier
barrier: 2.3.0 -> 2.3.1
2019-08-17 22:46:22 +02:00
R. RyanTM
ace4a1a351 cni-plugins: 0.8.1 -> 0.8.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/cni-plugins/versions
2019-08-17 13:16:07 -07:00
Joseph Salisbury
4032ca6bf0
gsctl: init at 0.15.4 2019-08-17 20:38:20 +01:00
Louis Tim Larsen
efb0d11eb8 nano 3.2 -> 4.3 (#66760) 2019-08-17 21:35:01 +02:00
R. RyanTM
4d9481854f barrier: 2.3.0 -> 2.3.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/barrier/versions
2019-08-17 11:35:36 -07:00
R. RyanTM
004a2b9ed0 bspwm: 0.9.8 -> 0.9.9
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bspwm/versions
2019-08-17 11:12:35 -07:00
R. RyanTM
5b8f8a6177 avidemux: 2.7.3 -> 2.7.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/avidemux/versions
2019-08-17 10:33:37 -07:00
Michael Weiss
2ae080f822
gollum: Update the dependencies (security, CVE-2019-5477) 2019-08-17 19:22:54 +02:00
Michael Weiss
42a777d5cf
jekyll: Update the dependencies (security, CVE-2019-5477) 2019-08-17 19:22:54 +02:00
Tadeo Kondrak
d076469911
discord-canary: 0.0.92 -> 0.0.93 2019-08-17 10:11:02 -06:00
Frederik Rietdijk
113dbfeb27
Merge pull request #66596 from emilazy/update-pypy-and-eda-tools
Update PyPy and FOSS EDA tools
2019-08-17 17:48:21 +02:00
Michael Raskin
9693fd5f1b
Merge pull request #66756 from AluisioASG/libreoffice-6.3.0.4
libreoffice-fresh: 6.2.4.2 -> 6.3.0.4
2019-08-17 14:50:52 +00:00
Jörg Thalheim
2240c5c858
Merge pull request #66294 from astro/firestarter
firestarter: init at 1.7.3
2019-08-17 14:47:30 +01:00
Michael Weiss
ff5e66b745
gns3Packages.{server,gui}Preview: 2.2.0b4 -> 2.2.0rc3 2019-08-17 15:38:50 +02:00
Aluísio Augusto Silva Gonçalves
b90c63f50d
libreoffice-fresh: 6.2.4.2 -> 6.3.0.4 2019-08-17 10:35:39 -03:00
Michael Weiss
7a66c79d8d
androidStudioPackages.{dev,canary}: 3.6.0.5 -> 3.6.0.6
Unfortunately this update will probably still cause the builds from
canary 3 to break and require manual steps to resolve these issues:
https://issuetracker.google.com/issues/136077720#comment9

I.e. manually update the Gradle plugin here (e.g. directly to alpha06):
dependencies {
   classpath 'com.android.tools:gradle:3.6.0-alpha03'
}

But as the current status is "Won't Fix (Infeasible)" [0] there's no
point in skipping the updates for the dev/canary channel.

[0]: https://issuetracker.google.com/issues/136077720#comment10
2019-08-17 15:09:09 +02:00
Michael Weiss
b58bfbd250
androidStudioPackages.{dev,canary}: 3.6.0.4 -> 3.6.0.5 2019-08-17 15:03:47 +02:00
Michael Weiss
7aa0222ee5
androidStudioPackages.{dev,canary}: 3.6.0.3 -> 3.6.0.4 2019-08-17 15:03:43 +02:00
markuskowa
1d1eee57a4
Merge pull request #66715 from matthiasbeyer/update-mixxx
mixxx: 2.2.1 -> 2.2.2
2019-08-17 13:05:06 +02:00
Tadeo Kondrak
249b56fe2f discord-canary: 0.0.91 -> 0.0.92 2019-08-17 12:41:11 +02:00
Jonathan Ringer
2b2d8919e8 pythonPackage.pre-commit: move to python-modules
Add pkgs.gitAndTools.pre-commit alias
  Add pkgs.pre-commit alias
2019-08-17 12:29:39 +02:00
Michael Weiss
b63980dc68
signal-desktop: 1.26.1 -> 1.26.2 2019-08-17 12:09:51 +02:00
Frederik Rietdijk
c68f58d95c Merge master into staging-next 2019-08-17 09:30:16 +02:00
Ben Wolsieffer
939cd1bf4c processing: 3.4 -> 3.5.3 2019-08-16 22:22:03 -04:00
Aaron Andersen
08161d9013
Merge pull request #65713 from lilyball/macvim
macvim: 8.1.1517 -> 8.1.1722
2019-08-16 22:08:25 -04:00
Aaron Andersen
7a712206a4
Merge pull request #66692 from jonringer/bump-smartgit
smartgithg: 18.2.9 -> 19.1.1
2019-08-16 20:41:34 -04:00
Andreas Rammhold
a583152ff8
Merge pull request #66727 from jabranham/firefox
Firefox 68.0.2
2019-08-16 22:55:44 +00:00
Timo Kaufmann
192197dc6c
Merge pull request #65802 from timokau/sage-transient-debug
sage: add patch to debug transient issue
2019-08-17 00:33:05 +02:00
Timo Kaufmann
41bb319462 sage: avoid running out of memory during tests 2019-08-16 23:50:55 +02:00
Andreas Rammhold
17843aa025
firefox-bin: 68.0.1 -> 68.0.2 2019-08-16 23:08:08 +02:00
Andreas Rammhold
a1b7ce78fa
firefox-beta-bin: 69.0b10 -> 69.0b14 2019-08-16 23:07:35 +02:00
Jonathan Ringer
099b79d443 smartgithg: 18.2.9 -> 19.1.1 2019-08-16 10:26:05 -07:00
Alex Branham
5ca29a98b2
firefox-esr: 68.0.1esr -> 68.0.2esr 2019-08-16 12:08:51 -05:00
Alex Branham
75ae4a318a
firefox: 68.0.1 -> 68.0.2 2019-08-16 12:08:51 -05:00
Marek Mahut
fba291b6ff
Merge pull request #66694 from jonasnick/bitcoin-0.18.1
bitcoin: 0.18.0 -> 0.18.1
2019-08-16 16:34:19 +02:00
Emmanuel Rosa
82f02ce0c3 brave: fix path to brave in *.desktop file 2019-08-16 20:44:51 +07:00
Sascha Grunert
a2b27ecf37
podman: 1.4.4 -> 1.5.1
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2019-08-16 14:28:46 +02:00
Matthias Beyer
45a961fa5d mixxx: 2.2.1 -> 2.2.2 2019-08-16 13:54:06 +02:00
Craig Hall
38b057f6ca ufraw: Remove --enable-extras
Don't build the 'dcraw' and 'nikon-curve' binaries, as per ufraw's README:

"Do not package the executables generated by by --enable-extras. These extras
are there for testing the code during development. They are of no interest
to end user. Specifically, if you want to package dcraw, you should use
Dave's original code and not UFRaw's modified code."
2019-08-16 11:30:41 +01:00
Daniël de Kok
cbfdb79b0e drawio: 11.1.1 -> 11.1.4
Changelog:

https://github.com/jgraph/drawio-desktop/releases/tag/v11.1.4

The most important user-visible change is that the binary is renamed
from draw.io to drawio.
2019-08-16 08:31:31 +02:00
Jörg Thalheim
6c15ffe487
Merge pull request #66670 from averelld/rstudio-build-fix
rstudio: fix build
2019-08-16 06:55:17 +01:00
Jörg Thalheim
94bd2a029e
Merge pull request #66700 from yrashk/wtf-0.19.1
wtf: 0.17.1 -> 0.19.1
2019-08-16 06:53:51 +01:00
Wael Nasreddine
2cc2131a90
prow: init unstable at 2019-08-14 (#66662) 2019-08-15 20:48:12 -07:00
Yurii Rashkovskii
93194dc6c9
wtf: 0.17.1 -> 0.19.1 2019-08-15 17:45:22 -07:00
Craig Hall
debf1db8f8 ufraw: 0.22 -> unstable-2019-06-12
The original ufraw repo is no longer maintained, so change
to a new upstream that's collecting patches, including one
we need to fix the build against more recent versions of exiv2.
2019-08-15 22:34:46 +01:00
Jonas Nick
6cb53ac9a6
bitcoin: 0.18.0 -> 0.18.1 2019-08-15 21:12:47 +00:00
markuskowa
8f5ce70861
Merge pull request #66665 from markuskowa/upd-molden
molden: 6.1 -> 6.2
2019-08-15 18:59:50 +02:00
Joachim Fasting
e90acb5edb
tor-browser-bundle-bin: additional store capture fixups 2019-08-15 18:21:46 +02:00
Matthew Bauer
ae15177ade calc: don’t include glibc headers in closure 2019-08-15 23:31:14 +09:00
Marek Mahut
aba586ad2d
Merge pull request #66633 from jonringer/bump-fmit
fmit: 1.1.14 -> 1.2.6
2019-08-15 15:42:10 +02:00
Marek Mahut
26c6802a58
Merge pull request #66637 from jonringer/bump-pamixer
pamixer: 1.3.1 -> 1.4
2019-08-15 15:37:19 +02:00
Tim Steinbach
4e2efe2b07
vivaldi: 2.6.1566.49-1 -> 2.6.1566.51-1 2019-08-15 08:54:44 -04:00
Michael Weiss
07cf130686
signal-desktop: 1.26.0 -> 1.26.1 2019-08-15 11:18:18 +02: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