Commit Graph

35754 Commits

Author SHA1 Message Date
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
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
41f72597df avocode: 3.9.0 -> 3.9.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/avocode/versions
2019-08-17 11:51:12 -07: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
Edmund Wu
3c1cda9b84
compton: 7 -> 7.2 2019-08-15 21:49:15 -04: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
Markus Kowalewski
5b0bbcbb6e
molden: 6.1 -> 6.2 2019-08-15 09:35:34 +02:00
Elis Hirwing
ce60bca7c2
emacsPackagesNg.emacsql-sqlite: Build sqlite binary 2019-08-15 07:52:46 +02:00
worldofpeace
8097e63ad8 lollypop: 1.1.4.2 -> 1.1.4.14
Removed python-wikipedia dependency [0]

[0]: https://gitlab.gnome.org/World/lollypop/-/tags/1.1.4.7
2019-08-14 19:59:02 -04:00
WilliButz
9bce1eaabd
Merge pull request #66630 from kolaente/update/gitea-1.9.1
gitea: 1.9.0 -> 1.9.1
2019-08-14 22:32:56 +02:00
Alexander Bakker
13d261b535 looking-glass-client: replace pneumaticat as maintainer 2019-08-14 21:45:09 +02:00
Matthew Bauer
8281a67be0
Merge pull request #64809 from ambrop72/chromium-egl-fix
chromium: Fix running with --use-gl=egl.
2019-08-14 15:42:31 -04:00
Jonathan Ringer
ed0cb5cf58 pamixer: 1.3.1 -> 1.4 2019-08-14 12:38:07 -07:00
Jonathan Ringer
6cf9f6afa5 fmit: 1.1.14 -> 1.2.6 2019-08-14 10:58:48 -07:00
Gabriel Ebner
29851a69d3
calculix: init at 2.15 (#66628)
calculix: init at 2.15
2019-08-14 19:51:18 +02:00
kolaente
e137c91526
gitea: 1.9.0 -> 1.9.1 2019-08-14 19:38:59 +02:00
Gabriel Ebner
0a1e131077 gmsh: opencascade support 2019-08-14 19:09:40 +02:00
Gabriel Ebner
f91904a889 calculix: init at 2.15 2019-08-14 19:09:40 +02:00
Joachim F
8f156698bf
Merge pull request #54425 from eadwu/init/srhtPackages
sourcehut: init
2019-08-14 14:50:59 +00:00
Vincent Laporte
6bb07c80bf smtube: use qt5’s mkDerivation
See #65399
2019-08-14 14:43:11 +00:00
Vincent Laporte
95ec53813a smplayer: use qt5’s mkDerivation
See #65399
2019-08-14 14:43:11 +00:00
Florian Klink
48da993627 gitaly: 1.47.0 -> 1.53.2 2019-08-14 14:52:16 +02:00
Florian Klink
362076c581 gitlab-ee: 12.0.3 -> 12.1.6 2019-08-14 14:51:59 +02:00
Florian Klink
8ce1c4c26a gitlab-ce: 12.0.3 -> 12.1.6 2019-08-14 14:51:00 +02:00
Florian Klink
765491c895 gitlab: remove gitlab-deb-data.tar after extracting from it
There's no reason to ship a 1.6GiB .tar file in the output.
Slims down that output from 1.9GiB to ~350MiB
2019-08-14 14:45:08 +02:00
Frederik Rietdijk
8d56f2472e Merge master into staging-next 2019-08-14 13:45:54 +02:00
Craig Hall
15dd4479cf gimpPlugins.gimplensfun: 0.2.4 -> unstable-2018-10-21
Fixes broken build with exiv2-0.27.1 by using gexiv2 instead
2019-08-14 11:43:00 +01:00
Marek Mahut
d09eb635b3
Merge pull request #66609 from prusnak/runwayml
runwayml: 0.8.1 -> 0.9.0
2019-08-14 12:28:01 +02:00
Marek Mahut
95c6b4c8b4 jormungandr: Adding darwin.apple_sdk.frameworks.Security 2019-08-14 12:21:29 +02:00
Emily
a51e3987ad symbiyosys: 2019.04.18 -> 2019.08.13 2019-08-14 00:14:22 -07:00
Peter Hoeg
d7fc23a0a6
Merge pull request #66420 from peterhoeg/p/maestral
maestral: init at 0.2.6
2019-08-14 14:29:36 +08:00
Tadeo Kondrak
b5facab048 qMasterPassword: use qt mkDerivation 2019-08-14 15:12:02 +09:00
Peter Hoeg
a67aec1746 maestral: init at 0.2.6 2019-08-14 14:07:12 +08:00
Marek Mahut
3b1116ad59 jormungandr: 0.3.1 -> 0.3.2 2019-08-13 23:38:03 +02:00
Pavol Rusnak
b79ed3f1f4
runwayml: 0.8.1 -> 0.9.0 2019-08-13 22:05:33 +02:00
Wael Nasreddine
a3bf0c2e40
vimPlugins: turn filetype and syntax before sourcing the plugins (#66536)
Vim Terraform expects the `filetypedetect` group to exist. However, since we were enabling the filetype and the syntax *after* loading the plugins, it was exiting with an error preventing us from generating the remote plugins manifest with the plugin enabled. See #65894 for context.
2019-08-13 12:25:06 -07:00
Francesco Gazzetta
452128816f keepassxc: 2.4.1 -> 2.4.3 2019-08-13 18:58:47 +02:00
worldofpeace
d914581523
Merge pull request #66324 from xaverdh/notepadqq-qt-fix
notepadqq: use qt5's mkDerivation
2019-08-13 12:40:44 -04:00
Aaron Andersen
65bf9f4aa5
Merge pull request #66305 from aanderse/kdevelop
kdevelop, kdev-php, kdev-python: 5.3.3 -> 5.4.0
2019-08-13 11:28:11 -04:00
Edmund Wu
a2ca6ef26f
sourcehut: init
builds-sr-ht: init at 0.45.13
dispatch-sr-ht: init at 0.11.0
git-sr-ht: init at 0.32.3
hg-sr-ht: init at 0.13.0
lists-sr-ht: init at 0.36.3
man-sr-ht: init at 0.12.4
meta-sr-ht: init at 0.34.3
paste-sr-ht: init at 0.5.1
todo-sr-ht: init at 0.46.8
2019-08-13 11:25:52 -04:00
Marek Mahut
2fc0ff34a4
Merge pull request #66562 from jonringer/bump-topgit
gitAndTools.topgit: 0.9 -> 0.19.12
2019-08-13 16:59:27 +02:00
xrelkd
196d4a6eee go-ethereum: 1.9.1 -> 1.9.2 2019-08-13 20:34:30 +08:00
Jonathan Ringer
4e19dfcb70 gitAndTools.topgit: 0.9 -> 0.19.12 2019-08-13 05:28:03 -07:00
Michael Weiss
cfe629e42d
signal-desktop: 1.25.3 -> 1.26.0 2019-08-13 13:31:28 +02:00
adisbladis
86d143f58c
emacsPackagesNg: Update melpa 2019-08-13 11:23:34 +01:00
adisbladis
8ac0ff54dc
emacsPackagesNg.melpaStablePackages: Fix eval by moving vterm override 2019-08-13 11:23:34 +01:00
adisbladis
7bad92935d
emacsPackagesNg.telega: Build server binary 2019-08-13 10:43:44 +01:00
Mario Rodas
48e167e028 ulauncher: use latest pytest 2019-08-13 09:18:25 +02:00
Aaron Andersen
8746c77a38
Merge pull request #66439 from aanderse/subversion
subversion: 1.9.10 -> 1.9.12, 1.10.4 -> 1.10.6
2019-08-12 20:53:59 -04:00
worldofpeace
233b0af748
Merge pull request #66533 from gnidorah/musescore
musescore: use qt5's mkDerivation
2019-08-12 20:42:25 -04:00
gnidorah
172e06dbb6 musescore: use qt5's mkDerivation
See #65399
2019-08-12 20:41:07 -04:00
Marek Mahut
9a86619dc8
Merge pull request #66071 from angristan/dogecoin/update/1.14.1
dogecoin: 1.10.0 -> 1.14.1
2019-08-12 23:26:54 +02:00
Marek Mahut
7a82e00ba3
Merge pull request #62337 from khumba/netbeans-11
netbeans: 10.0 -> 11.0
2019-08-12 19:34:29 +02:00
Marek Mahut
194909a092
Merge pull request #62825 from lfont/lfont/aseprite-unfree-1.2.11
aseprite-unfree: 1.2.9 -> 1.2.11
2019-08-12 19:22:09 +02:00
Marek Mahut
7115780ea1
Merge pull request #65147 from magnetophon/x42-plugins
x42-plugins: 20190206 -> 20190714
2019-08-12 18:59:37 +02:00
Marek Mahut
caf9295730
Merge pull request #63686 from flokli/mlarchive2maildir
mlarchive2maildir: init at 0.0.6
2019-08-12 18:47:34 +02:00
worldofpeace
8a139bfa9f
Merge pull request #66483 from worldofpeace/calibre-cleanup
calibre: wrap manually
2019-08-12 12:44:15 -04:00
Marek Mahut
92f6cf61f8
Merge pull request #65422 from jojosch/teamspeak_server_3.9.1
teamspeak_server: 3.8.0 -> 3.9.1
2019-08-12 18:39:07 +02:00
Silvan Mosberger
a7c7bb156f
clight: init (#64309)
clight: init
2019-08-12 18:18:05 +02:00
Edmund Wu
1688dc72e5
clight: init at 3.1 2019-08-12 11:56:47 -04:00
Edmund Wu
a0736d0fad
clightd: init at 3.4 2019-08-12 11:56:47 -04:00
Marek Mahut
48d07a5987
Merge pull request #65857 from jonringer/bump-click
click: 0.3.2 -> 0.4.2
2019-08-12 14:13:06 +02:00
markuskowa
45532916f0
Merge pull request #66342 from markuskowa/upd-gnss
gnss-sdr: 0.0.9 -> 0.0.11
2019-08-12 13:12:42 +02:00
Marek Mahut
e8016409bb
Merge pull request #66512 from saschagrunert/conmon
conmon: 0.3.0 -> 2.0.0
2019-08-12 11:56:32 +02:00
Jörg Thalheim
8529dea18d
Merge pull request #66515 from doronbehar/update-pdfcpu
pdfcpu: 0.2.2 -> 0.2.3
2019-08-12 10:49:00 +01:00
Doron Behar
ea955cb28f pdfcpu: 0.2.2 -> 0.2.3 2019-08-12 11:16:39 +03:00
Alexander Bakker
d6d1e6bd27 looking-glass-client: a12 -> B1 2019-08-12 09:53:31 +02:00
zimbatm
a0a0106f59
pre-commit: 1.17.0 -> 1.18.1 2019-08-12 09:34:23 +02:00
Sascha Grunert
965f869e59
conmon: 0.3.0 -> 2.0.0
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2019-08-12 09:02:15 +02:00
worldofpeace
3ea6859512
Merge pull request #66504 from tadeokondrak/discord-0.0.91
discord-canary: 0.0.85 -> 0.0.91
2019-08-11 22:52:35 -04:00
worldofpeace
bc0f60ff1c
Merge pull request #66389 from erictapen/scribus-1.5.5
scribusUnstable: 2019-01-16 -> 1.5.5
2019-08-11 22:49:05 -04:00
Tadeo Kondrak
e836d29f52
discord-canary: 0.0.85 -> 0.0.91 2019-08-11 20:21:25 -06:00
worldofpeace
d73cca7808
Merge pull request #66435 from lightbulbjim/sigil-wrapping
sigil: use qt5's mkDerivation
2019-08-11 22:17:02 -04:00
Dmitry Kalinkin
34224c7ba0
Merge pull request #66117 from veprbl/pr/hepmc_2_06_10
hepmc: 2.06.09 -> 2.06.10
2019-08-11 22:16:16 -04:00
Herwig Hochleitner
ac2eb3151d emacsPackages.melpaPackages: fix cmake-mode 2019-08-12 02:54:45 +02:00
Silvan Mosberger
aa26fbfcbe
syncthing-gtk: gdk_pixbuf -> gdk-pixbuf 2019-08-12 01:02:06 +02:00
Lassulus
612871e2ec
Merge pull request #66375 from emmanuelrosa/syncthing-1.2.1
syncthing: 1.1.4 -> 1.2.1
2019-08-12 00:22:25 +02:00
Aaron Andersen
26f128c1af nylas-mail-bin: drop package which is no longer supported upstream 2019-08-11 17:44:05 -04:00
worldofpeace
38b96afce8 calibre: wrap manually
Also move wrapGAppsHook to nativeBuildInputs
2019-08-11 10:42:47 -04:00
Emmanuel Rosa
fd39791936 syncthing: clean up package
Thank you, @Lassulus
2019-08-11 08:35:24 +07:00
Emmanuel Rosa
d80670bdc2 syncthing: 1.1.4 -> 1.2.1
syncthing-gtk: add missing runtime dependencies

NixOS: fix syncthing-init NixOS test
2019-08-11 08:35:04 +07:00
Luke Sandell
6417b03431 wsjtx: 2.0.1 -> 2.1.0 2019-08-10 18:54:55 -05:00
Chris Rendle-Short
2eb1dcc5b2 sigil: mark as unmaintained
Maintainer has not committed for >2 years.
2019-08-11 09:44:29 +10:00
Chris Rendle-Short
e373ce139f sigil: use qt5's mkDerivation
Slightly different implementation because out of the box:

  - $out/bin/sigil is a shell script wrapper
  - $out/lib/sigil/sigil is the ELF executable

See #65399
2019-08-11 09:36:51 +10:00
Marek Mahut
557fbe94b2
Merge pull request #65908 from r-ryantm/auto-update/fldigi
fldigi: 4.1.04 -> 4.1.07
2019-08-10 22:35:44 +02:00
Marek Mahut
5e53e1cb52
Merge pull request #65992 from r-ryantm/auto-update/mullvad-vpn
mullvad-vpn: 2019.5 -> 2019.6
2019-08-10 22:14:39 +02:00
Marek Mahut
985a6155dd fldigi: 4.1.06 -> 4.1.07 2019-08-10 21:42:33 +02:00
Astro
c5eaef0ab9 firestarter: init at 1.7.3 2019-08-10 20:36:29 +02:00
worldofpeace
4a3aa14c32
Merge pull request #60796 from r-ryantm/auto-update/standardnotes
standardnotes: 3.0.6 -> 3.0.15
2019-08-10 12:01:05 -04:00
R. RyanTM
55af862a76 standardnotes: 3.0.6 -> 3.0.15 2019-08-10 11:57:58 -04:00
Justin Humm
c39818d3dc
scribusUnstable: 2019-01-16 -> 1.5.5
changelog: https://bugs.scribus.net/changelog_page.php?version_id=106

Co-Authored-By: worldofpeace <worldofpeace@protonmail.ch>
2019-08-10 16:41:23 +02:00
Aaron Andersen
ccf0499170 subversion: 1.9.10 -> 1.9.12, 1.10.4 -> 1.10.6 2019-08-10 09:23:48 -04:00
Aaron Andersen
9267328b09
Merge pull request #66169 from r-ryantm/auto-update/subversion-client
subversionClient: 1.12.0 -> 1.12.2
2019-08-10 09:09:38 -04:00
worldofpeace
63f0c69318
Merge pull request #66322 from lightbulbjim/rapid-photo-downloader-wrapping
rapid-photo-downloader: fix QT wrapping
2019-08-10 08:00:41 -04:00
Chris Rendle-Short
2f1b92ddf8 rapid-photo-downloader: fix QT wrapping
See #65399
2019-08-10 07:59:48 -04:00
Andreas Rammhold
d404bcd1d9
Merge pull request #66393 from ivan/chromium-76.0.3809.100
chromium: 76.0.3809.87 -> 76.0.3809.100
2019-08-10 11:54:10 +00:00
Timo Kaufmann
3541df594e
Merge pull request #66396 from timokau/sage-undo-short
sage: default to long tests again
2019-08-10 13:16:00 +02:00
Michael Weiss
7680b512cb
tdesktop: 1.7.14 -> 1.8.0 2019-08-10 13:01:23 +02:00
Michael Weiss
8ade595b94
androidStudioPackages.beta: 3.5.0.19 -> 3.5.0.20 2019-08-10 12:31:05 +02:00
adisbladis
496ae0a1d4
Merge pull request #66360 from rasendubi/emacs-packages-2019-08-09
Emacs packages update: 2019-08-09
2019-08-10 11:54:21 +02:00
Marek Mahut
eb2651d338
Merge pull request #65175 from r-ryantm/auto-update/rapid-photo-downloader
rapid-photo-downloader: 0.9.14 -> 0.9.15
2019-08-10 09:34:53 +02:00
Marek Mahut
91e8008034 python3Packages.rapid-photo-downloader: adding tenacity dependency 2019-08-10 09:15:15 +02:00
Ryan Mulligan
07ce48cc3a
Merge pull request #65924 from r-ryantm/auto-update/gitkraken
gitkraken: 6.0.0 -> 6.0.1
2019-08-09 18:10:52 -07:00
Marek Mahut
e89b1d61fb
Merge pull request #65909 from r-ryantm/auto-update/flrig
flrig: 1.3.45 -> 1.3.47
2019-08-10 00:10:43 +02:00
Marek Mahut
3cde54ceb9
Merge pull request #65893 from r-ryantm/auto-update/chirp-daily
chirp: 20190511 -> 20190718
2019-08-10 00:03:04 +02:00
Lancelot SIX
8137a78adc
Merge pull request #66063 from lsix/drop_motu_client
motu_client: drop
2019-08-10 00:02:12 +02:00
Marek Mahut
78dd0174e5 gitkraken: 6.0.1 -> 6.1.1 2019-08-09 23:51:51 +02:00
Marek Mahut
4a2a22d7a5 flrig: 1.3.46 -> 1.3.47 2019-08-09 23:41:36 +02:00
Marek Mahut
f688a3ea38 gitkraken: adding e2fsprogs and krb5 as inputs 2019-08-09 23:37:11 +02:00
Marek Mahut
62509f72cf
Merge pull request #65993 from r-ryantm/auto-update/menumaker
menumaker: 0.99.10 -> 0.99.11
2019-08-09 23:30:07 +02:00
worldofpeace
ededb06332
Merge pull request #65787 from rawkode/feature/qtwrap-nheko
nheko: use qt5's mkDerivation
2019-08-09 13:12:21 -04:00
Timo Kaufmann
f6265b0da5 sage: default to long tests again
Changed by accident in 5e58c5f900.
2019-08-09 18:42:14 +02:00
Timo Kaufmann
f5674b20ac
Merge pull request #66388 from timokau/sympow2
sympow: 1.018.1 -> 2.023.4
2019-08-09 18:38:41 +02:00
Ivan Kozik
42521cb95b chromium: 76.0.3809.87 -> 76.0.3809.100
CVE-2019-5868 CVE-2019-5867
2019-08-09 16:07:37 +00:00
Timo Kaufmann
9ef44b3431 sage: move sympow cache to .sage 2019-08-09 17:45:14 +02:00
Timo Kaufmann
5e58c5f900 sympow: 1.018.1 -> 2.023.4
Maintenance taken over by debian package maintainer jgmbenoit:
https://trac.sagemath.org/ticket/3360#comment:17

This moves sympow to his fork, since there is no offical
version-controlled source repository from the original author and they
do not seem to maintain sympow anymore. We had already accumulated quite
some patches from debian, who have effectively maintained sympow for a
while now.
2019-08-09 17:45:08 +02:00
David McKay
43380f49b4 nheko: use qt5's mkDerivation
See #65399
2019-08-09 10:31:49 -04:00
worldofpeace
248791870f
Merge pull request #65785 from rawkode/feature/qtwrap-shotcut
shotcut: use qt5's mkDerivation
2019-08-09 10:31:01 -04:00
David McKay
cc1f808891 shotcut: use qt5's mkDerivation 2019-08-09 10:27:39 -04:00
Dominik Xaver Hörl
6b1d73f5e6 notepadqq: use qt5's mkDerivation
See #65399
2019-08-09 16:27:08 +02:00
worldofpeace
67b4758502
Merge pull request #66283 from worldofpeace/ideogram
ideogram: init at 1.2.2
2019-08-09 10:05:29 -04:00
worldofpeace
d8d934bfa0
Merge pull request #66282 from worldofpeace/tilix-meson
tilix: 1.9.3 -> 2019-08-03
2019-08-09 10:04:46 -04:00
worldofpeace
f3b18b98af
Merge pull request #66374 from angristan/vscode/update/1.37.0
vscode: 1.36.1 -> 1.37.0
2019-08-09 10:03:33 -04:00
markuskowa
acbee3c116
Merge pull request #66337 from sikmir/qlandkartegt
qlandkartegt: init at 1.8.1
2019-08-09 15:54:03 +02:00
markuskowa
7c1393c5bc
Merge pull request #66355 from bdesham/slrn-1.0.3a
slrn: 1.0.2 -> 1.0.3a
2019-08-09 15:52:01 +02:00
Gabriel Ebner
6be96fbd4a
Merge pull request #66379 from gebner/freecadwrapqt
freecad: use qt wrapper
2019-08-09 15:29:52 +02:00
angristan
e4c6e7eece vscode: 1.36.1 -> 1.37.0 2019-08-09 15:23:54 +02:00
Marek Mahut
38e77b1f6c
Merge pull request #65898 from r-ryantm/auto-update/denemo
denemo: 2.2.0 -> 2.3.0
2019-08-09 14:42:37 +02:00
Peter Simons
caf200a968 picard: explicitly wrap the program with 'wrapQtApp'
Fixes https://github.com/NixOS/nixpkgs/issues/65776.
2019-08-09 14:41:19 +02:00
Gabriel Ebner
5aac39d8c6
Merge pull request #66378 from gebner/curawrapqt
cura: use wrapQtApp
2019-08-09 14:37:52 +02:00
Marek Mahut
acb4fca7eb
Merge pull request #64333 from matthiasbeyer/update-hstr
hstr: 1.25 -> 2.0
2019-08-09 14:20:25 +02:00
Frederik Rietdijk
9bd78cb048 Merge master into staging-next 2019-08-09 14:00:27 +02:00
Gabriel Ebner
439ce61c51 freecad: use qt wrapper 2019-08-09 13:39:23 +02:00
Nikolay Korotkiy
4f427ef1e1
qlandkartegt: init at 1.8.1 2019-08-09 14:14:19 +03:00
Marek Mahut
f964c1468e
Merge pull request #64305 from rnhmjoj/monero
monero-gui: only exclude darwin in meta.platforms
2019-08-09 13:12:28 +02:00
adisbladis
c0e56afddb
pulseaudio-modules-bt: 1.2 -> 1.3 2019-08-09 11:25:09 +01:00
Aaron Andersen
3f441e1f65
Merge pull request #66119 from toon23/profanity-0.7.0
profanity: 0.6.0 -> 0.7.0
profanity: Add optional omemo support (enabled by default)
2019-08-09 06:13:34 -04:00
Gabriel Ebner
919e5eda2e cura: use wrapQtApp 2019-08-09 12:11:58 +02:00
adisbladis
fe9fe5ef57
Merge pull request #66362 from mdorman/melpa-stable-fixes
emacsPackages: melpa-stable fixes for new infrastructure
2019-08-09 08:57:11 +01:00
toon
4640287f31 profanity: Add optional omemo support (enabled by default) 2019-08-09 09:49:25 +02:00
toon
28d6900731 profanity: 0.6.0 -> 0.7.0 2019-08-09 09:45:53 +02:00
Michael Alan Dorman
02e13a0478 emacsPackages: include shared overrides in the stable package set 2019-08-09 07:54:58 +03:00
Michael Alan Dorman
f311b89ca7 emacsPackages: make magit-svn a shared override 2019-08-09 07:54:55 +03:00
Michael Alan Dorman
fb1ee7dbfc emacsPackages: make magithub a shared override 2019-08-09 07:54:51 +03:00
Michael Alan Dorman
d8a91b568f emacsPackages: make magit-gitflow a shared override 2019-08-09 07:54:47 +03:00
Michael Alan Dorman
18b2a7d8ca emacsPackages: make magit-annex a shared override 2019-08-09 07:54:41 +03:00
Benjamin Esham
62b59bdf2d slrn: 1.0.2 -> 1.0.3a 2019-08-08 21:42:10 -04:00
Alexey Shmalko
7204028783
elpa-packages: 2019-08-09 2019-08-09 02:43:44 +03:00
Mario Rodas
e4032cae0a
dsvpn: 0.1.2 -> 0.1.3 2019-08-08 18:36:09 -05:00
worldofpeace
d94667d50d
Merge pull request #66340 from sam-willis/qbittorrent
qbittorrent: use qt5's mkDerivation
2019-08-08 16:27:55 -04:00
Sam Willis
d81a46364f qbittorrent: use qt5's mkDerivation
Fixes #66339

See: #65399
2019-08-08 16:26:10 -04:00
Markus Kowalewski
1d428e869a
gnss-sdr: 0.0.9 -> 0.0.11 2019-08-08 22:14:06 +02:00