Commit graph

206961 commits

Author SHA1 Message Date
isgy 96f5b6315d python3Packages.certipy: init at 0.1.3 2019-12-26 14:31:15 +00:00
Maximilian Bosch 9842c4b107
treewide: update which packages I'm currently maintaining
Idea shamelessly stolen from 4e60b0efae.

I realized that I don't really know anymore where I'm listed as maintainer and what
I'm actually (co)-maintaining which means that I can't proactively take
care of packages I officially maintain.

As I don't have the time, energy and motivation to take care of stuff I
was interested in 1 or 2 years ago (or packaged for someone else in the
past), I decided that I make this explicit by removing myself from several
packages and adding myself in some other stuff I'm now interested in.

I've seen it several times now that people remove themselves from a
package without removing the package if it's unmaintained after that
which is why I figured that it's fine in my case as the affected pkgs
are rather low-prio and were pretty easy to maintain.
2019-12-26 15:27:47 +01:00
R. RyanTM 1635c6916e xsecurelock: 1.5.1 -> 1.6.0 (#76478) 2019-12-26 14:03:03 +00:00
Franz Pletz 9f139fe7fe
Merge pull request #76394 from Enzime/update-nonfree-firmware
firmware-linux-nonfree: 2019-10-22 -> 2019-12-15
2019-12-26 13:53:53 +00:00
Aaron Andersen 4d2dd15546
Merge pull request #73113 from aanderse/httpd-vhost
nixos/httpd: support overridable virtual hosts
2019-12-26 08:09:08 -05:00
Florian Klink c9a80e782d
Merge pull request #76533 from danbst/nginx-correct-dir-mode
nixos/nginx: fixup permissions for Nginx state dir
2019-12-26 13:53:39 +01:00
danbst 50d6e93dc8 nixos/nginx: fixup permissions for Nginx state dir
The commit b0bbacb521 was a bit too fast
It did set executable bit for log files.

Also, it didn't account for other directories in state dir:
```
 # ls -la /var/spool/nginx/
total 32
drwxr-x--- 8 nginx nginx 4096 Dec 26 12:00 .
drwxr-xr-x 4 root  root  4096 Oct 10 20:24 ..
drwx------ 2 root  root  4096 Oct 10 20:24 client_body_temp
drwx------ 2 root  root  4096 Oct 10 20:24 fastcgi_temp
drwxr-x--- 2 nginx nginx 4096 Dec 26 12:00 logs
drwx------ 2 root  root  4096 Oct 10 20:24 proxy_temp
drwx------ 2 root  root  4096 Oct 10 20:24 scgi_temp
drwx------ 2 root  root  4096 Oct 10 20:24 uwsgi_temp
```

With proposed change, only ownership is changed for state files, and mode is left as is
except that statedir/logs is now group accessible.
2019-12-26 14:16:29 +02:00
Timo Kaufmann 98e6a8b579
Merge pull request #76531 from timokau/sympy-1.5
python.pkgs.sympy: 1.4 -> 1.5
2019-12-26 13:12:21 +01:00
Yurii Izorkin b0bbacb521 nixos/nginx: recursively change logs directory owner/group (#76174)
This change brings pre-existing installations (where the logfiles
are owned by root) in line with the new permssions (where logfiles
are owned by the nginx user)
2019-12-26 13:51:10 +02:00
Vonfry 8b6bb39d39 offlineimap: add proxy dependency (#76347) 2019-12-26 12:30:57 +01:00
José Romildo Malaquias 6756cc69c5
Merge pull request #76348 from romildo/upd.mate
mate.caja: 1.22.2 -> 1.22.3
2019-12-26 08:07:11 -03:00
José Romildo Malaquias 6f42bf8aa0 mate.mate-control-center: look for system themes in system data dirs 2019-12-26 07:55:57 -03:00
Timo Kaufmann 8ac53ed0b1 python.pkgs.sympy: 1.4 -> 1.5
Sage needs some doctest changes. The patch was included upstream.
Modelled after https://trac.sagemath.org/ticket/28911.
2019-12-26 11:46:42 +01:00
Maximilian Bosch b574b94e20
Merge pull request #76409 from r-ryantm/auto-update/rng-tools
rng-tools: 6.8 -> 6.9
2019-12-26 11:31:05 +01:00
Emery Hemingway 54184dfc7e glow: init at 0.1.3 2019-12-26 15:19:40 +05:30
Mario Rodas 21956ab8b1
pythonPackages.klaus: do not use python.pkgs 2019-12-26 04:20:00 -05:00
Mario Rodas fdf2020620
python37Packages.aiohttp-socks: 0.3.2 -> 0.3.3 2019-12-26 04:20:00 -05:00
Hamish Mackenzie db60032141
darktable: Add openmp when cc.isClang to fix macos 2019-12-26 00:02:35 -07:00
Jörg Thalheim c5aacb2350
Merge pull request #76514 from Thra11/fix-udev-hwdb-description
udev: fix option description
2019-12-26 06:43:02 +00:00
Jörg Thalheim e7ece2f6de
Merge pull request #76523 from alyssais/kontact
kontact: fix build
2019-12-26 06:42:21 +00:00
Jörg Thalheim b551230b9b
Merge pull request #76522 from alyssais/swift-im
swift-im: fix build
2019-12-26 06:41:48 +00:00
Jörg Thalheim 38c3a43c0c
Merge pull request #76492 from tbenst/remote-ssh-fix
vscode-extensions.ms-vscode-remote.remote-ssh: fix patch for 0.48.0
2019-12-26 06:33:50 +00:00
Yorick van Pelt 470c8a2a36 nixos/borgbackup: install job wrappers to systemPackages for easy borg access
Currently to run borg job manually, you have to use systemctl:
```
$ systemctl start borgbackup-job-jobname.service
```

This commit makes wrappers around borg jobs available in $PATH, which have
BORG_REPO and connection args set correctly:
```
$ borg-job-jobname list
$ borg-job-jobname mount ::jobname-archive-2019-12-25T00:01:29 /mnt/some-path
$ borg-job-jobname create ::test /some/path
```

Closes: https://github.com/NixOS/nixpkgs/pull/64888
Co-authored-by: Danylo Hlynskyi <abcz2.uprola@gmail.com>
2019-12-26 07:50:03 +02:00
Alyssa Ross ebc8dd0652
kontact: fix build 2019-12-26 04:33:41 +00:00
Alyssa Ross 2a9ea05cc8
swift-im: fix build 2019-12-26 03:14:23 +00:00
Eelco Dolstra aa1a41b60b
maintainer-list: Update edolstra email address 2019-12-26 02:49:24 +01:00
Mario Rodas dce6d4173e
Merge pull request #75124 from ericdallo/add-clojure-lsp
clojure-lsp: init at release-20191223T204324
2019-12-25 20:37:20 -05:00
Maximilian Bosch ec253e16cd
Merge pull request #76410 from nh2/mumble-test-python
nixosTests.mumble: port to python
2019-12-26 02:33:43 +01:00
Daniel Schaefer 95710aa67e
multipath-tools: Fix prefix (#72917)
multipath-tools: Fix prefix
2019-12-26 02:31:37 +01:00
Daniel Schaefer 25ce30d6a2
Merge pull request #76172 from JohnAZoidberg/golden-cheetah-libusb
golden-cheetah: Add libusb (ANT+ sensors), 3.5-DEV1903 -> 3.5-RC2X
2019-12-26 02:30:38 +01:00
Maximilian Bosch 622c199eac
Merge pull request #76302 from MetaDark/rofi
rofi: fix displaying hicolor icons
2019-12-26 02:22:07 +01:00
Maximilian Bosch 8daee5f6ce
Merge pull request #76467 from alyssais/spamassassin-ipv6
spamassassin: fix IPv6
2019-12-26 02:13:07 +01:00
Eric Dallo c7d9ec5ce8
clojure-lsp: init at release-20191223T204324 2019-12-25 20:12:09 -05:00
Maximilian Bosch 9ba6cc9ca5
Merge pull request #76452 from zowoq/youtube-dl
youtube-dl: 2019.11.28 -> 2019.12.25
2019-12-26 02:08:30 +01:00
Maximilian Bosch 0201822cc7
Merge pull request #76511 from alyssais/pipelight
pipelight: fix build
2019-12-26 01:48:46 +01:00
Silvan Mosberger 5dc7050bd6
Merge pull request #75400 from nand0p/ethminer-v18
ethminer: 0.18.0-rc.0 -> 0.18.0
2019-12-25 23:56:24 +01:00
Manuel Mendez b840977407 neovim: Drop jemalloc
See https://github.com/neovim/neovim/pull/9526.
2019-12-25 23:49:21 +01:00
Jan Tojnar 5f6635144a
rictydiminished-with-firacode: 0.0.1 → 1.2.0
Update, clean up and also fix build.

Part of the build system still does not support Python 2:

https://github.com/hakatashi/RictyDiminished-with-FiraCode/pull/3
2019-12-25 23:13:05 +01:00
markuskowa 42b5c7e994
Merge pull request #76413 from r-ryantm/auto-update/rdma-core
rdma-core: 26.1 -> 27.0
2019-12-25 22:46:52 +01:00
Tom Hall 08d31b74ec udev: fix option description
The two file paths were changed from 10-local to 99-local, but only one
of the descriptions was changed.
2019-12-25 20:51:01 +00:00
Mario Rodas ffd4ad4d0b
Merge pull request #76206 from r-ryantm/auto-update/actor-framework
caf: 0.17.1 -> 0.17.3
2019-12-25 15:50:43 -05:00
Vladyslav M 1e8fa43122
newsboat: fetch from vcs (#76175)
newsboat: fetch from vcs
2019-12-25 22:03:49 +02:00
Lancelot SIX 241e1fd9d0 nano: 4.6 -> 4.7
See https://lists.gnu.org/archive/html/info-gnu/2019-12/msg00005.html
for release information.
2019-12-25 19:50:28 +00:00
Mikhail Klementev f8dec92f04 out-of-tree: 1.1.1 -> 1.2.1 2019-12-25 19:45:59 +00:00
Jan Tojnar ee4cc7c390
monoid: fix build
We recently defaulted fontforge to python3 which made the python2 used by the build system unable to find fontforge.
2019-12-25 20:32:13 +01:00
Ryan Orendorff 2d2146b1fe agda-stdlib: list as not broken on Darwin (#76485) 2019-12-25 21:22:29 +02:00
Dima 2467edf80c nixos/manual: fixing links for awstats release note (#76500)
`linkend` attribute needs to point to an option.
2019-12-25 21:06:18 +02:00
Jan Tojnar d059e1a720
Merge pull request #76358 from r-ryantm/auto-update/openimageio
openimageio2: 2.0.12 -> 2.1.9.0
2019-12-25 20:00:41 +01:00
Pascal Wittmann 731bfbc432
Merge pull request #76474 from r-ryantm/auto-update/xlockmore
xlockmore: 5.60 -> 5.61
2019-12-25 19:51:47 +01:00
worldofpeace f9eb2b132e
Merge pull request #76497 from prusnak/console-font
nixos-generate-config: i18n.consoleFont has been renamed to console.font
2019-12-25 13:45:44 -05:00