Commit Graph

2089 Commits

Author SHA1 Message Date
Justin Lovinger
1d85b14651 maintainers: add JustinLovinger 2020-09-27 18:35:42 -04:00
Michael Raskin
31a4e2e28b
Merge pull request #93457 from ju1m/apparmor
apparmor: fix and improve the service
2020-09-27 13:07:38 +00:00
Hugo Lageneste
40efae06a7 maintainers: add hugolgst 2020-09-26 18:17:40 -07:00
Austin Butler
2bdce0e50c maintainers: add austinbutler 2020-09-26 15:46:48 -07:00
André Silva
899a563bbe
maintainers: add andresilva 2020-09-26 00:40:31 +01:00
Hongchang Wu
91c74eeae3 ocamlPackages.dot-merlin-reader: init at 3.4.0 2020-09-25 15:11:46 +02:00
Martin Weinelt
546d7d6a03
Merge pull request #98478 from JamieMagee/maintainer-jamiemagee
maintainers: add jamiemagee
2020-09-23 14:46:25 +02:00
Geoffrey Huntley
d1e6dc3574 maintainers: add ghuntley 2020-09-23 14:25:17 +02:00
Jamie Magee
9dd167c9bc
maintainers: add jamiemagee 2020-09-22 18:48:12 +02:00
Doron Behar
20bd6dd45d
Merge pull request #98204 from charvp/pr/init-bluej 2020-09-21 11:10:55 +03:00
Charlotte Van Petegem
9ff87334e6 maintainers: add charvp 2020-09-21 09:04:54 +02:00
Bryan A. S
dbdd5d4116 maintainer: Add bryanasdev000
Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
2020-09-21 01:30:44 -03:00
Jan Tojnar
74a5bb4041
maintainers/scripts/update.nix: Clean up
- Make some arguments more fitting (the path is actually full, not just relative to prefix…).
- Increase the purity of packages* functions (they now take pkgs from argument, not from scope).
- Add some documentation comments.
2020-09-20 21:22:04 +02:00
Jan Tojnar
71c246c785
maintainers/scripts/update.nix: Run update scripts from the worktree
`update.nix` extracts `passthru.updateScript` attributes in the main repo
and when they are relative paths (e.g. `./update.sh`), Nix will resolve them
to absolute paths in the main repo.

Update scripts can use $(dirname $0) to get the location of files they
should update but that would point to the main repo.
We want them to modify the appropriate git worktree instead
so we replace the prefix accordingly.

`git rev-parse --show-toplevel` will resolve symlinks but, fortunately,
Nix will do that as well, so the path will match:

https://github.com/NixOS/nixpkgs/pull/98304#issuecomment-695761754
2020-09-20 20:12:34 +02:00
Jan Tojnar
0c5ddf3358
maintainers/scripts/update.nix: run update script with UPDATE_NIX_ATTR_PATH
The environment variable will contain the attribute path the script is supposed to update.
2020-09-20 20:12:33 +02:00
Jan Tojnar
c21a85c6a0
maintainers/scripts/update.nix: auto-detect attrPath 2020-09-20 20:11:46 +02:00
Jan Tojnar
b351de0971
maintainers/scripts/update.nix: mention when there were no changes committed 2020-09-20 20:11:46 +02:00
Jan Tojnar
b828285933
maintainers/scripts/update.nix: support filling in auto-commit attributes
We can determine all of them when attrPath is present so we might jsut as well do it.
2020-09-20 20:11:46 +02:00
Jan Tojnar
4a161ddb3b
maintainers/scripts/update.nix: support auto-committing by passing attrPath
Instead of having the updateScript support returning JSON object,
it should be sufficient to specify attrPath in passthru.updateScript.
It is much easier to use.

The former is now considered experimental.
2020-09-20 20:11:46 +02:00
Jan Tojnar
01b9d5371c
maintainers/scripts/update.nix: switch to asyncio
This will make it cleaner and also better respect SIGTERM.
2020-09-20 20:11:45 +02:00
Jan Tojnar
17f89667b3
maintainers/scripts/update.nix: refactoring
Get rid of some globals, split main into smaller functions, rename some variables, add typehints.
2020-09-20 20:11:45 +02:00
Jan Tojnar
1efc042d92
maintainers/scripts/update.nix: Add support for auto-commiting changes
Update scripts can now declare features using

	passthru.updateScript = {
	  command = [ ../../update.sh pname ];
	  supportedFeatures = [ "commit" ];
	};

A `commit` feature means that when the update script finishes successfully,
it will print a JSON list like the following:

	[
	  {
	    "attrPath": "volume_key",
	    "oldVersion": "0.3.11",
	    "newVersion": "0.3.12",
	    "files": [
	      "/path/to/nixpkgs/pkgs/development/libraries/volume-key/default.nix"
	    ]
	  }
	]

and data from that will be used when update.nix is run with --argstr commit true
to create commits.

We will create a new git worktree for each thread in the pool and run the update
script there. Then we will commit the change and cherry pick it in the main repo,
releasing the worktree for a next change.
2020-09-20 20:11:22 +02:00
Daniël de Kok
770ecb1d31
Merge pull request #98266 from joncojonathan/removeAsMaintainer
Remove joncojonathan as maintainer
2020-09-20 11:38:30 +02:00
joncojonathan
eb61d33a3d maintainers: remove joncojonathan 2020-09-20 11:16:39 +02:00
Matthias Meschede
e192fe6527 maintainer: add mmesch 2020-09-19 14:26:23 +02:00
Jakub Kądziołka
f65d6237ca maintainers: add NieDzejkob 2020-09-19 09:06:37 +02:00
Jan Tojnar
5adbeb13c5
update.nix: use ThreadPoolExecutor
Not sure why I chose ProcessPoolExecutor in the first place.
2020-09-18 20:52:07 +02:00
Norbert Melzer
6dccacd319 maintainers: Add NobbZ as a maintainer 2020-09-18 11:53:11 +02:00
midchildan
a2f450984a
maintainers.midchildan: update info 2020-09-17 10:48:11 +09:00
Felix Tenley
70399cc1ce
maintainers: add felschr 2020-09-16 17:17:14 +02:00
Ryan Mulligan
40ab795911
Merge pull request #98058 from mlvzk/init-manix
manix: init at 0.6.2
2020-09-16 07:55:57 -07:00
Daniël de Kok
917a183d97
Merge pull request #97868 from dpercy/fac-build
fac-build: init at 0.5.3
2020-09-16 07:49:28 +02:00
David Percy
deb412f54f maintainers: add dpercy 2020-09-15 21:19:11 -04:00
mlvzk
dd9c0cf692 maintainers: add mlvzk 2020-09-15 20:24:34 +02:00
Ryan Mulligan
0dc4edcd60
Merge pull request #98015 from StephenWithPH/swag
go-swag: init at 1.6.7
2020-09-15 07:03:39 -07:00
Erik Arvstedt
be33b54672 maintainers/build: skip packages that don't evaluate 2020-09-14 21:17:13 -07:00
StephenWithPH
083041a6f8
maintainers: add StephenWithPH 2020-09-14 16:19:21 -07:00
Nick Hu
5d92cf5f23
Merge pull request #78143 from mtreca/master
pam_gnupg: init at 0.1
2020-09-13 11:44:01 +01:00
Maxime Tréca
d9d3013117 pam_gnupg: init at 0.1
Add the pam_gnupg module that unlocks gnupg keys on login.
2020-09-13 10:46:14 +02:00
Damien Cassou
607f5a6755
Merge pull request #84246 from lostnet/couchdbpr
couchdb: add support for version 3.0.0
2020-09-11 17:47:47 +02:00
Will Young
0ef1be0aa1 couchdb: add support for version 3.1.0 2020-09-11 14:03:16 +02:00
ajs124
d5d6bd7f08
Merge pull request #97541 from Sohalt/mpdscribble-0.23
mpdscribble: 0.22 -> 0.23
2020-09-10 20:40:17 +02:00
Ismaël Bouya
213623e291
nagios: fix build
The compiler complains about dl* function missing, this commit adds the
necessary flag to pass to gcc to make it build correctly
2020-09-10 15:37:13 +02:00
sohalt
80f10fd1c3 maintainers: add sohalt 2020-09-10 14:52:36 +02:00
TANIGUCHI Kohei
8a6f8043d2 maintainers: add cohei 2020-09-10 14:56:32 +09:00
Maximilian Bosch
56708c3bf3
Merge pull request #97555 from badmutex/badi/maintainers-update
maintainers: updates for badi/badmutex
2020-09-09 23:03:52 +02:00
Badi Abdul-Wahid
a25396b58c
maintainers: badi -> badmutex 2020-09-09 10:45:08 -05:00
Domen Kožar
309d47a21b
Merge pull request #97514 from fgaz/maintainers-build-fix
maintainers/build: skip packages without meta
2020-09-09 11:47:43 +02:00
Francesco Gazzetta
b4496d4095 maintainers/build: skip packages without meta
Some packages do not have a meta attribute, and made the script crash.
2020-09-09 09:54:03 +02:00
Tiago Castro
d83080f370 maintainers: add tiagolobocastro 2020-09-08 17:22:06 -07:00
Mario Rodas
ee222ce046
Merge pull request #88915 from bsima/shen
shen-sbcl: init at 3.0.3
2020-09-07 21:34:07 -05:00
Super Bo
2f5479d747 maintainers: add superbo 2020-09-08 08:22:50 +07:00
Maciej Krüger
4689b34d4f
teams: add cinnamon team 2020-09-07 23:46:59 +02:00
Mario Rodas
18bfc49f53
Merge pull request #97054 from dali99/add_vcsi
vsci: init at 7.0.12
2020-09-06 07:49:04 -05:00
Gabriel Ebner
955fe4d67b
Merge pull request #96688 from j0hax/octoprint-dashboard 2020-09-06 13:35:38 +02:00
Julien Moutinho
fb6d63f3fd apparmor: fix and improve the service 2020-09-06 07:43:03 +02:00
Johannes Arnold
e6f4f3a388 maintainers: add j0hax 2020-09-05 11:39:31 +02:00
Daniel Olsen
5d255c0660 maintainers: add dandellion 2020-09-04 00:55:05 +02:00
Joël Perras
80f1cc1e83 maintainers: add jperras 2020-09-03 12:32:43 -07:00
Daniël de Kok
f20daaa85c
Merge pull request #96282 from rople380/master
godu: init at 1.3.0
2020-09-02 10:36:25 +02:00
rople380
8511890fe0 maintainers: add rople380 2020-09-02 08:11:18 +02:00
kfollesdal
ca9a8ff6c2 maintainers: add kfollesdal 2020-08-31 13:05:09 -07:00
Bruno Bigras
215ff41134 luaPackages.lua-resty-openidc: init at 1.7.2-1 2020-08-30 03:11:31 -04:00
Daniël de Kok
d6d64dee97
Merge pull request #96576 from SuperSandro2000/rustscan
rustscan: init at 1.8.0
2020-08-29 19:03:42 +02:00
Lassulus
e021b8eea9
Merge pull request #96164 from fooker/master
Init cargo-embed and cargo-flash at 0.8.0
2020-08-29 13:51:07 +02:00
Sandro Jäckel
0fcebc338d
maintainers: add SuperSandro2000 2020-08-29 13:35:30 +02:00
Samuel Dionne-Riel
000bb5ee45
Merge pull request #94416 from sarcasticadmin/sa/adding-sd-mux-ctrl
sd-mux-ctrl: init at 2020-02-17
2020-08-28 21:06:37 -04:00
Simonas Kazlauskas
a8bd5c1dc4
odafileconverter: init at 21.7.0.0 (#95392) 2020-08-28 22:13:51 +02:00
Hugo Reeves
2aa20776bc
Update maintainer details for hugoreeves 2020-08-28 11:00:41 +12:00
Vincent Bernat
019c72c12e maintainers: add vincentbernat 2020-08-27 20:02:30 +02:00
Lassulus
12baef56e4
Merge pull request #96127 from hmenke/shadowsocks
shadowsocks service: support plugins
2020-08-26 16:49:55 +02:00
Lassulus
bd37bc58f9
Merge pull request #96253 from ImExtends/electronplayer
Electron player: init at 2.0.8
2020-08-26 12:08:55 +02:00
ImExtends
62f394c31c adding extends to maintainer list 2020-08-26 11:26:53 +02:00
Steve Purcell
61f639c1ff
maintainers: add purcell (#96329) 2020-08-25 23:35:47 -04:00
Henri Menke
ef6c9fbd6b
maintainers: add hmenke 2020-08-26 14:02:15 +12:00
Dustin Frisch
61600ea577
maintainers: add fooker 2020-08-24 13:01:48 +02:00
Lassulus
e23ed2f21c
Merge pull request #87256 from jdbaldry/master
vpn-slice: init at 0.14
2020-08-24 12:12:50 +02:00
Jack Baldry
d2e6750cff
maintainers: add jdbaldry
Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
2020-08-24 10:07:36 +01:00
Lassulus
76b7192972
Merge pull request #88837 from tviti/gmt
gmt: init at 6.1.0
2020-08-24 09:56:16 +02:00
Yevhen Shymotyuk
09fe5ddad5 maintainers: add yevhenshymotiuk 2020-08-23 23:47:21 -07:00
Daniël de Kok
f29f07de67
Merge pull request #91552 from m-labs/itmdump-0.3.1
itm-tools: init at 2019-11-15
2020-08-24 08:43:16 +02:00
Silvan Mosberger
03964e52b4
Merge pull request #89546 from andehen/init/snowsql-1.2.5
snowsql: init 1.2.5
2020-08-24 03:42:23 +02:00
Taylor Viti
d1c0f742f3 maintainers: add tviti 2020-08-22 15:12:31 -10:00
Amirhossein Rouzbahani
026b4765ba maintainers: add ahrzb 2020-08-23 09:20:56 +10:00
Lassulus
dd2ecd0712
Merge pull request #89729 from JJJollyjim/bitwarden-rs-test
nixos/bitwarden_rs: add test
2020-08-22 23:23:55 +02:00
Anders Asheim Hennum
146e71185f Add andehen to maintainers list 2020-08-22 21:59:41 +02:00
Lassulus
afde337f4a
Merge pull request #87969 from QuentinI/summon
summon: init at 0.8.2
2020-08-22 18:52:16 +02:00
Yusuf Bera Ertan
1566bd7520
maintainers: add yusdacra 2020-08-22 18:13:45 +03:00
tcbravo
f1d60c64a5 maintainers: add tcbravo 2020-08-22 12:48:58 +02:00
Jamie McClymont
a359d95c73 maintainers: add JJJollyjim 2020-08-22 15:41:50 +12:00
pblkt
3ff786a091 maintainers: add pblkt 2020-08-21 12:06:25 -07:00
Maxim Krivchikov
798672d6fa maintainers: add maxxk 2020-08-21 10:36:53 -07:00
Konstantin Alekseev
76db685f59 maintainers: add kalekseev 2020-08-20 10:19:08 +10:00
Konstantinos Lambrou-Latreille
f05df9c4cd maintainers: add koslambrou 2020-08-19 13:48:30 -07:00
Nils
12a9e5f6e9 maintainers: add nilsirl 2020-08-19 22:39:15 +10:00
Martin Weinelt
dd03272130
Merge pull request #94810 from elkowar/new_package_pipr
pipr: init at 0.0.12
2020-08-18 22:37:02 +02:00
Frederik Rietdijk
fe7bab33d7
Merge pull request #95553 from zowoq/rename-maintainers
maintainers: prefix number with underscore
2020-08-18 11:30:24 +02:00
zowoq
83a1f0ac0a maintainers: remove unneeded quotes from handles 2020-08-18 15:13:23 +10:00
zowoq
17f765b67b maintainers: add note about underscore prefix for handles 2020-08-18 07:59:48 +10:00
zowoq
0052523a18 maintainers: 1000101 -> _1000101 2020-08-18 07:59:48 +10:00
zowoq
7d9c49f8e6 maintainers: 0x4A6F -> _0x4A6F 2020-08-18 07:59:44 +10:00
Tom Repetti
41edd65945 maintainers: add trepetti 2020-08-17 00:10:58 -07:00
syberant
e523c0c232 maintainers: add syberant 2020-08-16 19:49:18 +00:00
voidIess
3cc44ba04e
geogebra 6 : init at 6-0-598-0 (#95422)
* geogebra 6 : init at 6-0-598-0

since geogebra was ported from java to electron, this is a repacke;
wont want to delete geogebra 5, no darwin package for 6

ran nixpkgs-fmt over the file to cleanly reformat the spacings

Update pkgs/top-level/all-packages.nix

remove a trailing space

Co-authored-by: Tom Smeets <Tom.TSmeets@Gmail.com>

Update pkgs/applications/science/math/geogebra/geogebra_6.nix

Co-authored-by: Tom Smeets <Tom.TSmeets@Gmail.com>

Applied a sugestion for the formating of the lines

fixed a mistake, where the wrong name attribute was used

removed an unnecassary chmod statement

added a downlod link to archive.org

moved geogebra_6.nix to geogebra6.nix

removed unnecesary build inputs statement

* renamed to geogebra6
2020-08-16 20:02:54 +02:00
Rohit Goswami
06ffe1d00f
maintainers: Update 4336207 with keys 2020-08-15 19:36:04 +00:00
Alvar Penning
0a53c6b565 maintainers: rename geistesk to oxzi
For reasons I have renamed my GitHub account and would like to include
this name change here.
2020-08-15 16:03:46 +02:00
Mario Rodas
e306bcdd0e
Merge pull request #95458 from JohnTitor/nushell-0.18.1
nushell: 0.17.0 -> 0.18.1
2020-08-14 19:36:33 -05:00
Maximilian Bosch
d22cd376e5
Merge pull request #95161 from lf-/patch-1
nix-doc: init at 0.3.3
2020-08-15 00:29:08 +02:00
Yuki Okushi
d6fa00fe5f maintainers: add johntitor 2020-08-15 07:25:05 +09:00
lf-
c73d0fdac0 maintainers: add lf- 2020-08-11 18:18:45 -07:00
ZerataX
25c5de7a31 maintainers: add zeratax 2020-08-11 12:51:15 -07:00
Samuel Gräfenstein
4e89f3fd56
maintainers: add samuelgrf 2020-08-11 15:52:55 +02:00
Dennis Gosnell
1ae9ecf3b4
Merge pull request #94891 from gvolpe/development/tools/dconf2nix
dconf2nix: init at 0.5.0
2020-08-10 09:40:27 +09:00
Gabriel Volpe
04989d7f8b maintainers: add gvolpe 2020-08-09 17:58:27 +02:00
Elliott Villars
d92cc4cec9 maintainers: add elliottvillars
Signed-off-by: Elliott Villars <elliottvillars@gmail.com>
2020-08-08 18:34:41 -07:00
Doron Behar
039056386d
luaPackages.pulseaudio: remove (#94939)
It's not maintained any more by upstream (by @doronbehar) and it doesn't
build correctly with `buildLuarocksPackage` (see #89767).
2020-08-08 15:43:13 +02:00
0x4A6F
fa2b8b01bc
maintainers.0x4A6F: update email 2020-08-08 08:08:10 +00:00
Barry Moore
b794182cb2 pythonPackages.jupyter-telemetry: init at 0.1.0 2020-08-07 19:59:39 -07:00
elkowar
d1a1a7f559 maintainer: add elkowar 2020-08-07 18:51:55 +02:00
Christian Kauhaus
3d20d83dbf
Merge pull request #89271 from dpausp/eliot-tree
eliot-tree: init at 19.0.1
2020-08-05 15:09:48 +02:00
Farid Zakaria
d764809c4d maintainers: add fzakaria 2020-08-04 14:50:17 -07:00
Ryan Mulligan
c4814c03b7 treewide: add Jitsi maintainers
* makes jitsi maintainer team
2020-08-04 13:07:36 -07:00
Daniël de Kok
b56eb10f89
Merge pull request #94469 from cust0dian/navi-2.7.1
navi: init at 2.7.1
2020-08-04 12:07:45 +02:00
dpausp
37ee089855 eliot-tree: init at 19.0.1
dependencies:

* eliot: init at 1.12.0
2020-08-03 15:32:36 +00:00
Benjamin Hipple
f22881290a nixpkgs-lint: ignore user's overlays
Otherwise, it can get tripped up importing things like the NUR packages. Since
this is for linting Nixpkgs itself, ignoring overlays seems the way to go.
2020-08-02 10:56:22 -04:00
Matt Wittmann
b33e3ac8cd maintainers: add mcwitt 2020-08-01 21:05:55 -07:00
Serg Nesterov
958ea3d5ca
maintainers: add cust0dian 2020-08-01 22:16:30 +03:00
Jörg Thalheim
0739f4b84f
Merge pull request #94105 from ddelabru/add-inform6
inform6: init at 6.34-6.12.2
2020-08-01 09:07:45 +01:00
Robert James Hernandez
718a82352d maintainers: add sarcasticadmin 2020-07-31 23:06:07 -07:00
Ryan Mulligan
6a84389afe
Merge pull request #94203 from Artturin/add-autotiling
autotiling: init at 1.1
2020-07-31 20:41:42 -07:00
Silvan Mosberger
64a9b4b7a3
Merge pull request #94165 from siraben/scas
scas: init at 0.4.6
2020-08-01 03:44:21 +02:00
Ben Siraphob
c7a8ec9898 Add siraben to maintainer-list 2020-08-01 08:13:12 +07:00
Karl Hallsby
dde584b3c7 maintainers: add KarlJoad 2020-07-31 10:12:07 -07:00
Jörg Thalheim
b75f2114ea
Merge pull request #92581 from TethysSvensson/busybox-udhcpc-script 2020-07-31 07:09:45 +01:00
zowoq
eca0b09849 maintainers/*: editorconfig fixes 2020-07-31 15:07:53 +10:00
Dominic Delabruere
406509dcae inform6: init at 6.34-6.12.2
nixpkgs already has Inform 7, which is a lovely design system for creating interactive fiction (text adventures) using a natural language compiler and a rich IDE. However, underlying Inform 7 is a C-like language, Inform 6, which has a much simpler toolchain and its own compiler and standard libraries, which I have packaged for nix here.
2020-07-30 10:27:25 -04:00
yoctocell
8635793fce maintainers: add yoctocell 2020-07-30 09:58:27 +02:00
Wael Nasreddine
eaca8a71ec
Merge pull request #93839 from lucperkins/humioctl
humioctl: init at 0.25.0
2020-07-29 19:12:47 -07:00
Luc Perkins
ea15ee2d4b maintainers: add lucperkins 2020-07-29 18:48:00 -07:00
Artturin
b9f742f541 maintainer: add artturin 2020-07-30 03:02:58 +03:00
Louis Tim Larsen
f609fa60c4
hunspell-dicts: add support for Danish dictionary
PR #93651
2020-07-30 00:51:58 +02:00
Doron Behar
7e7bf5a4a1
sile: 0.10.4 -> 0.10.9 (#94168)
* sile: reformatting, not changing drv at all

Put all inputs on separate lines and don't use `with stdenv.lib` for
large scopes.

* sile: 0.10.4 -> 0.10.9

Add poppler_utils as check dependency. Clean up some outdated comments
and hooks. Add more outputs for better closure size.

* maintainers: add alerque

* sile: add alerque as maintainer
2020-07-29 15:41:23 -05:00
Dmitry Kudriavtsev
345949594f maintainers: update name to anna 2020-07-28 19:48:16 -07:00
Tethys Svensson
179b74c216 maintainers: add TethysSvensson 2020-07-28 22:59:51 +02:00
Ryan Mulligan
fb140c7d36
Merge pull request #93709 from arcz/update-nsjail
nsjail: 2.9 -> 3.0
2020-07-28 11:28:25 -07:00
Andika Demas Riyandi
f4997efd5c
rnix-hashes: init at 0.2.0 (#93778) 2020-07-28 14:38:00 +00:00
zimbatm
93013cd8b3
Merge pull request #93871 from Chili-Man/terraform-0.12.29-update
terraform: 0.12.28 -> 0.12.29
2020-07-26 09:03:23 +00:00
Bouke van der Bijl
3889822008 maintainers: add bouk 2020-07-26 14:22:57 +10:00
Diego Rodriguez
cc6c6eac32
maintainers: add Chili-Man 2020-07-25 17:20:05 -06:00
Daniël de Kok
370a71c74f
Merge pull request #93619 from Parasrah/go-task
go-task: init at 2.8.1
2020-07-25 20:41:26 +02:00
Jaka Hudoklin
fea9351d81
Merge pull request #92719 from pjjw/update/mongodb-42
mongodb: 4.0.12 -> 4.2.8
2020-07-24 20:15:29 +02:00
Peter Woodman
dbd0f3e957
mongodb: 4.0.12 -> 4.2.8
Not strictly an upgrade, but adds a new mongodb-4_2 target with the
current mongodb from that branch.

Use matching client and server versions in mongodb tests- tests were
using the mongo 3.4 client to connect, and this finally doesn't work
with server 4.2.

Per reviewer suggestion, adding myself as cheetah3 maintainer.

Additionally, reestore comments describing the purpose of the
build-dependencies patch
2020-07-24 11:44:16 -04:00
Artur Cygan
4c17f321b3 maintainers: add arturcygan 2020-07-23 17:51:36 +02:00
Parasrah
60bca58f6f
maintainers: add parasrah 2020-07-22 18:44:39 -06:00
adisbladis
1be9aa3a83
Merge pull request #79235 from goertzenator/add_vispy
vispy: init at 0.6.4
2020-07-21 21:37:29 +02:00
Michael Weiss
9a47c3b504
Merge pull request #93558 from galagora/update-android-studio
androidStudioPackages.beta: 4.0.0.16 -> 4.1.0.14
2020-07-21 20:08:44 +02:00
galagora
fb7752a597 maintainers: add meutraa 2020-07-21 19:57:17 +03:00
galagora
167d5d8c3b maintainers: add galagora 2020-07-21 19:50:24 +03:00
worldofpeace
8316e0c16a
Merge pull request #93343 from Profpatsch/maintainers-pronoun-field
maintainers-list: add a GDPR note, avoid unnecessary data collection
2020-07-20 21:08:53 -04:00
Peter Sanford
421b10ea70 maintainers: add psanford 2020-07-20 10:11:51 +10:00
zowoq
0f19b9ba72
Revert "Group packages by language/builder via dummy maintainer" 2020-07-18 17:45:08 +10:00
Jan Tojnar
43259950eb
Merge pull request #92628 from jtojnar/update-overlays
update.nix: Allow passing overlays
2020-07-18 06:50:50 +02:00
Luke Granger-Brown
5ecf942c11 oven-media-engine: init at 0.10.4 2020-07-17 20:07:11 +02:00
Profpatsch
f13283c3f5 maintainers-list: add a GDPR note, avoid unnecessary data collection
This change was preceded by the idea of adding a pronoun field to the
file, which we determined to be a bad idea:

* maintainers-list: add pronoun to the optional fields

I often do not know how to address maintainers, so giving them the
ability to specify their pronouns is helpful for communication
purposes.

* maintainers-list: add pronoun for Profpatsch

maintainers-list: make the pronoun field into a list

Some people have a set of pronouns they are fine with, so let’s make
that possible.

Based on feedback by somebody With An Idea™ of the topic.

* maintainers-list: remove the pronouns field

The discussion around the field raised a good point, quoting:

> What you are proposing here is keeping an irrevocable permanent
> history of people’s pronouns. It makes anybody would want to do bad
> things with it one small script away from a list of which Nixpkgs
> contributors are trans. Even looking at the history of name
> changes (which we probably also shouldn’t store) wouldn’t be nearly
> as reliable a source. While it might be tempting to say that
> participating in this would be optional, it would be establishing a
> de facto standard location for this information, that might make
> people feel compelled to participate or accept having the wrong
> pronoun used. Compounding this is the fact that the people who will
> be most comfortable using this field are the people who have never
> changed their pronouns. If they decide to in future, they now have
> to choose between permanently marking themselves as somebody who
> changed or deleted their pronouns (which is dangerous) or leaving
> the wrong pronouns up. Because of this, I think that over time this
> list would probably result in even more people being referred to by
> the wrong pronouns, because of outdated entries that are dangerous
> to correct.
>
> **This idea is extremely dangerous**. If somebody wants to publish
> their pronouns, they can already do that on their website or GitHub
> profile, without having to include that information in a large
> public dataset with history tracking.

So let’s remove it again.
2020-07-17 18:18:31 +02:00
zowoq
5650202eda maintainers: add nixpkgs-{go,rust} 2020-07-17 11:16:54 +10:00
Ash
e818368be6 amfora: init at 1.3.0 2020-07-16 17:03:08 +05:30
Jeffrey McBeth
79ed95b348 maintainers: add mcbeth 2020-07-15 09:15:55 -04:00
Matej Urbas
2f355e776b
pkgs.terraform: add terraform-provider-shell 1.6.0 (#93069) 2020-07-14 14:05:39 +00:00
Ryan Mulligan
6faba433b2
Merge pull request #84973 from glittershark/init-aadict
pythonPackages.{aadict,,globre,pxml}: init at 0.2.3, 0.1.5, 0.2.13 respectively
2020-07-13 20:35:48 -07:00
Jonas Schievink
e1a1b974ed pc-ble-driver: init at 4.1.1
It's a dependency of pc-ble-driver-py, but it's no longer built
alongside it.
2020-07-13 23:25:26 +02:00
Daniel Șerbănescu
c57c936281 evolution-ews: init at 3.36.4 2020-07-09 00:32:51 +02:00
Jakob Klepp
bf278a4cee maintainers: add truh 2020-07-08 17:55:16 +02:00
Daniël de Kok
d915b7223a
Merge pull request #92657 from CRTified/pkg/cc-tool
cc-tool: Init at unstable-2020-05-19
2020-07-08 14:16:30 +02:00
Jan Tojnar
143398d7da
Merge pull request #92390 from fionera/add-fuzzel
Add fuzzel
2020-07-08 13:42:13 +02:00
CRTified
099fcb426d maintainers: add CRTified 2020-07-08 09:53:44 +02:00
Thiago Franco de Moraes
712a46ced6 maintainers: add tfmoraes 2020-07-07 22:12:25 -07:00
Daniel McCarney
9da69bcf22 honggfuzz: init at 2.2
Honggfuzz is a security oriented, feedback-driven, evolutionary,
easy-to-use fuzzer with interesting analysis options. It is
multi-process and multi-threaded, blazingly fast when the persistent
fuzzing mode is used and has a solid track record of uncovered security
bugs.

See https://honggfuzz.dev for more information.
2020-07-07 23:01:08 -05:00
Timo Kaufmann
c6e47d5763
Merge pull request #78451 from arnarg/adding-operator-sdk
operator-sdk: init at 0.18.2
2020-07-07 23:41:30 +02:00
Jan Tojnar
5b3fe9f776
update.nix: Allow passing overlays
Previously, we relied on NIX_PATH for passing overlays but with flakes, we should pass them explicitly.
2020-07-07 21:29:32 +02:00
Daniël de Kok
e01b23fb9a
Merge pull request #85492 from toschmidt/mailspring
mailspring: init at 1.7.8
2020-07-07 14:45:59 +02:00
Harry Ho
ff12fe96d1 maintainers: add hh 2020-07-07 13:29:22 +08:00
Daniël de Kok
f4dce8e967
Merge pull request #91634 from bmilanov/submit/add-nxp-mfgtools
nxpmicro-mfgtools: init at 1.3.191
2020-07-06 20:59:50 +02:00
Biser Milanov
859e2040bc maintainers: add bmilanov 2020-07-06 20:43:00 +02:00
David Arnold
2f8206ea97 maintainers: init blaggacao 2020-07-05 21:39:22 -07:00
Jaka Hudoklin
9698c7302f
Merge pull request #92308 from RaghavSood/rippled/1.5.0
rippled: 1.4.0 -> 1.5.0
2020-07-06 03:47:32 +00:00
Fionera
fde6f9a95a maintainers: add fionera 2020-07-06 04:41:17 +02:00
raghavsood
8eee3478ae
rippled: update maintainers 2020-07-06 10:00:09 +08:00
Ryan Mulligan
c74e1517aa
Merge pull request #91270 from ShamrockLee/chewing-editor
chewing-editor: init at 0.1.1 Add package `chewing-editor`
2020-07-05 16:34:27 -07:00
Shamrock Lee
66020b7b52 maintainer-list: Add ShamrockLee (myself) to maintainer-list 2020-07-05 16:21:00 -07:00
Saúl Cabrera
9988f8d939 maintainers: add saulecabrera 2020-07-03 18:18:58 -04:00
Benjamin Hipple
f7c7509ecd
Merge pull request #91655 from davegallant/master
awscli2: init at 2.0.26
2020-07-03 14:39:27 -04:00
Mitsuhiro Nakamura
a1bea5278d
luaPackages.readline: init at 2.6-0 (#91854) 2020-07-01 17:58:50 +02:00
ehmry
f9f86e116e
Merge pull request #90451 from joachimschmidt557/nimmm-init
nimmm: init at 0.1.2
2020-07-01 13:46:51 +05:30
Dave Gallant
a142770da5
awscli2: init at 2.0.26
Amazon released v2 of their CLI, but is still actively maintaining v1.

- https://github.com/aws/aws-cli/blob/2.0.26/CHANGELOG.rst
- https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html
- https://docs.aws.amazon.com/cli/latest/userguide/cliv2-migration.html
2020-06-30 23:11:31 -04:00
Jörg Thalheim
74cb17f3ba
Merge pull request #52939 from akamaus/tensorboardX 2020-06-30 09:15:56 +01:00
Quentin
1811fea9eb maintainers: add quentini 2020-06-29 16:58:18 +03:00
Philipp Riegger
7b79d72aad maintainers: add priegger 2020-06-29 15:51:40 +02:00
Daniël de Kok
96ccfbaf44
Merge pull request #91671 from david-sawatzke/easypdkprog
easypdkprog: init at 1.2
2020-06-28 18:27:26 +02:00
David Sawatzke
7706c657b0 maintainers: add david-sawatzke 2020-06-28 15:29:55 +02:00
Dmitry Vyal
2633167c2b added akamaus to maintainers-list 2020-06-28 15:11:56 +03:00
Maximilian Bosch
c0c786c3bd
Merge pull request #91454 from ConradMearns/obsidian
obsidian: init at 0.7.3
2020-06-28 01:21:21 +02:00
Break Yang
bc726a9f28 maintainers: add breakds 2020-06-26 11:19:42 -07:00
Mario Rodas
3f338bb94c
Merge pull request #88012 from TheBrainScrambler/master
webbrowser: init at 29.0.0rc1
2020-06-25 22:16:29 -05:00
Matt Layher
8a3547afe9 maintainers/teams: add mdlayher to golang team
Signed-off-by: Matt Layher <mdlayher@gmail.com>
2020-06-26 01:14:07 +10:00
Mario Rodas
71ef943f63
Merge pull request #91423 from danieldk/remove-xara
xara: remove
2020-06-25 06:01:30 -05:00
Daniël de Kok
842acd9000 xara: remove
Not updated since 2006:

https://en.wikipedia.org/wiki/Xara_Xtreme_LX

Marked broken in nixpkgs since 2016-02-27.
2020-06-25 07:55:01 +02:00
Conrad Mearns
14ddd784d3 maintainers: add conradmearns 2020-06-25 02:36:17 +02:00
Sirio Balmelli
8bdbb204d4 maintainers: add siriobalmelli
Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2020-06-24 13:57:58 -07:00
Daniël de Kok
734f1dea8b
Merge pull request #91196 from jduan/jduan--add-fastmod
fastmod: init at 0.4.0
2020-06-22 06:47:51 +02:00
Jingjing Duan
d9c5a0a13e maintainers: add jduan 2020-06-21 11:34:43 -07:00
Daniël de Kok
30adb1fb9e
Merge pull request #89276 from jobojeha/master
utf8cpp: init at 3.1.1
2020-06-21 14:29:01 +02:00
Jonathan Jeppener-Haltenhoff
51273a0f73 maintainers: Add jobojeha 2020-06-21 14:14:40 +02:00
Michele Guerini Rocco
bc5843f8d1
Merge pull request #88928 from aciceri/navidrome
navidrome: init at 0.23.1
2020-06-20 16:04:04 +02:00
aciceri
a04315f38b
maintainers: added aciceri 2020-06-20 14:56:55 +02:00
Shea Levy
2590885605
Merge pull request #89099 from alexbiehl/alex/py-skein
python3Packages.skein: init at 0.8.0
2020-06-19 12:35:26 -04:00
Matt Layher
be2947a87a maintainers: add mdlayher GPG key
Signed-off-by: Matt Layher <mdlayher@gmail.com>
2020-06-19 16:26:53 +00:00
Yannick Markus
e4fd4b2a71 devdocs-desktop: init at 0.7.1
Also added ymarkus to maintainers list.
2020-06-18 12:46:22 +02:00
WilliButz
57a3249994
Merge pull request #90662 from srhb/redis-exporter
prometheus-redis-exporter: init at 1.7.0
2020-06-18 11:25:23 +02:00
Erik Skytthe
9740f61b31 maintainers: add eskytthe 2020-06-18 11:13:25 +02:00
Jesse Wattenbarger
6457a26021 maintainers: add jwatt 2020-06-18 04:31:07 +02:00
Maximilian Bosch
0510cbe849
Merge pull request #90646 from Ma27/matrix-maintainer-team
maintainers/teams: add matrix team
2020-06-18 00:23:55 +02:00
Maximilian Bosch
650617253e
maintainers/teams: add matrix team 2020-06-17 21:55:29 +02:00
pablo1107
52c906147c luaPackages.ldbus: init at scm-0 2020-06-17 12:12:08 +02:00
Antonio Yang
9d71f4f2e2 maintainers: add yanganto 2020-10-03 22:27:20 +08:00
Maximilian Bosch
0a63b5ae34
Merge pull request #89262 from cript0nauta/simple-mpv-ui
mpvScripts.simple-mpv-webui: init at 1.0.0
2020-06-17 03:13:48 +02:00
Jan Tojnar
75e756b8e1
Merge pull request #90051 from fabianhauser/hamster-time-tracker 2020-06-16 23:08:45 +02:00
Léo Gaspard
b0a2d1cef7
Merge pull request #78780 from ju1m/dovecot_fts_xapian
Dovecot plugin for Full Text Search (FTS) with Xapian
2020-06-16 22:00:26 +02:00
zowoq
3050bbe9d4 maintainers/teams: add golang 2020-06-16 08:05:11 +10:00
Colin L Rice
b586b07cfa Add c00w as a maintainer 2020-06-16 08:05:11 +10:00
joachimschmidt557
ed3f7ab3a4 nimmm: init at 0.1.2
nimmm is a terminal file manager written in nim.
2020-06-15 10:33:59 +02:00
Pasquale
73dd8a73a4 mantainers: add pasqui23 2020-06-14 13:27:30 +02:00
Jeremy Schlatter
261912e071 maintainers: add jeremyschlatter 2020-06-12 11:58:19 -07:00
Michael Maclean
5b8a78a972 rtl-ais: init at 0.8.1 2020-06-10 22:46:34 +01:00
Fabian Hauser
8c22f78354 maintainers: add fabianhauser 2020-06-10 17:16:35 +02:00
Timo Kaufmann
fd8892961f
Merge pull request #79842 from mir06/add-liberfa
liberfa: init at 1.7.0
2020-06-10 15:01:23 +02:00
Armin Leuprecht
b621677c88 maintains: add mir06 2020-06-10 07:32:33 +00:00
Vladimír Čunát
a44f91af27
lua packages: remove myself from some meta.maintainers
It will really happen after regeneration (no need to hurry, I guess).
Commit b7e6161b4 added me to cyrussasl by a mistake apparently.
In knot-resolver upstream we dropped luaossl and luafilesystem from
closure to ease up maintenance, so I no longer have motivation for them.
2020-06-10 07:30:59 +02:00
Matías Lang
5930a0ea44 mpvScripts.simple-mpv-webui: init at 1.0.0 2020-06-06 14:46:15 -03:00
Luka Blaskovic
bd400bd006 lyaml: init at 6.2.5-1, update all generated packages 2020-06-06 18:45:57 +02:00
SCOTT-HAMILTON
397a90a699 maintainers: add shamilton 2020-06-04 12:19:24 -07:00
Elis Hirwing
88f61c3a36
Merge pull request #87952 from lunik1/add-fdkaac
fdkaac: init at 1.0.0
2020-06-04 13:00:18 +02:00
Lassulus
a15262665a
Merge pull request #88466 from puzzlewolf/gazebo_remove
gazebo: remove
2020-06-04 12:47:42 +02:00
Alex Biehl
6200d2f8b2 Add alexbiehl as maintainer 2020-06-04 09:16:16 +02:00
Jan Tojnar
384cf8788b
Merge pull request #87914 from seb314/submit/jamulus 2020-06-04 07:55:11 +02:00
Eduard Bopp
84b5d5dfef Update my GitHub username
I recently changed the username, so this reflects that change to make
sure people find me.

For confirmation, check that the GitHub ID is still 3098430 for my new
username using the GitHub API:

https://api.github.com/users/edibopp
2020-06-03 15:42:55 +02:00
seb314
6031391c99 maintainers: add seb314 2020-06-02 23:42:19 +02:00
Elis Hirwing
a823f46be0
Merge pull request #84812 from f4814/init-razergenie
razergenie: init at 0.8.1
2020-06-02 17:20:57 +02:00
TheBrainScrambler
aeaa93c7e7 webbrowser: init at 29.0.0rc1 2020-06-02 14:45:59 +02:00
Mario Rodas
a69f9e5a69
Merge pull request #83385 from wohanley/master
goimapnotify: init at 2.0
2020-06-01 23:42:36 -05:00
Maximilian Bosch
b447269f08
Merge pull request #89183 from timstott/go-jira
go-jira: 1.0.17 -> 1.0.23
2020-06-01 17:43:25 +02:00
1000101
82ee41b1e1 maintainers: update 1000101 (mail) 2020-06-01 14:06:45 +02:00
Shardul Baral
b320474779
Add shardy to maintainers 2020-05-31 10:29:25 -04:00
Timothy Stott
e536b9e208
maintainers: add timstott 2020-05-31 11:22:50 +01:00
TheBrainScrambler
2995b47fa0 maintainers: add TheBrainScrambler 2020-05-31 11:26:10 +02:00
puzzlewolf
3b26ba8b91 maintainers: remove pxc 2020-05-30 18:38:37 +02:00
Timo Kaufmann
69ea180bc9
Merge pull request #87383 from stianlagstad/sl/dstask-0.17
dstask: init at 0.18
2020-05-30 11:48:07 +00:00
Mario Rodas
1f2e949572
Merge pull request #88872 from gnidorah/openmpt123
openmpt123: 0.4.12 -> 0.5.0
2020-05-29 04:34:57 -05:00
Stian Lågstad
d1a6f2ed02 maintainers: add stianlagstad 2020-05-29 08:03:08 +02:00
gnidorah
b7e89a5820 maintainers: change my data 2020-05-29 08:29:59 +03:00
Vincent Haupert
4a4f5cd615 maintainers: add veehaitch 2020-05-28 15:29:30 -07:00
Wael Nasreddine
7d416ce364
Merge pull request #87854 from maralorn/go-neb
go-neb: Init at unstable-2020-04-09
2020-05-28 15:08:59 -07:00
Pacman99
9e4ff2a901 maintainers: add pacman99 2020-05-28 14:03:31 -07:00
Rick van Schijndel
0cf8e1d645 maintainers: remove @ahmedtd 2020-05-26 19:56:24 +02:00
Ben Sima
d6d6d6030d maintainers: add bsima 2020-05-25 21:07:23 -07:00
Arnar Gauti Ingason
22dbb8ce47 maintainers: add arnarg 2020-05-25 09:54:46 +02:00
Malte Brandy
cfa07c9bf7
maintainers: Add maralorn 2020-05-24 21:40:11 +02:00
Kim Lindberger
825e20ff46
Merge pull request #82753 from Kloenk/feature/engelsystem
engelsystem: init at 3.1.0
2020-05-24 16:31:23 +02:00
Kim Lindberger
985d726b80
Merge pull request #86070 from kimat/kimat-gitin
gitAndTools.gitin: init at 0.27.8
2020-05-24 15:32:16 +02:00
markuskowa
cc33cfedfe
Merge pull request #82242 from caadar/disk-filltest
disk-filltest: init at 0.8.1
2020-05-24 15:18:06 +02:00
Michele Guerini Rocco
21537c43ab
Merge pull request #87842 from wishfort36/tamzen-1.11.4
tamzen: init at 1.11.4
2020-05-24 14:54:32 +02:00
Mario Rodas
0958a7bba8
Merge pull request #87653 from 06kellyjac/deno_release
Deno: init at 1.0.0
2020-05-23 06:52:06 -05:00
Aaron Andersen
dacd1e48be
Merge pull request #86261 from robaca/webcamoid
webcamoid: init at 8.7.1
2020-05-23 06:56:46 -04:00
Lassulus
7de2524f53
Merge pull request #81363 from fatpat/scaleft-1.41.0
scaleft: Init at 1.41.0
2020-05-23 11:13:53 +02:00
Kimat Boven
0b9117cc34 maintainers: add kimat 2020-05-22 10:39:24 +02:00
Carsten Rohrbach
06ac702738 New maintainer list entry 'robaca' 2020-05-22 10:19:00 +02:00
Finn Behrens
a31de7bf86
maintainers: add kloenk 2020-05-21 15:56:54 +02:00
Roberto Abdelkader Martínez Pérez
05ff09956c
kapow: init at 0.5.3 2020-05-20 23:25:07 +02:00
Lassulus
f26e514cfe
Merge pull request #87408 from rpearce/bashcards
bashcards v0.1.2
2020-05-20 09:49:21 +02:00
Benjamin Hipple
4f3017799f
Merge pull request #88205 from kthielen/hobbes/upgrade
hobbes: 2020-03-10 -> 2020-05-19
2020-05-19 23:21:48 -04:00
Kalani Thielen
aef6544c13 hobbes: 2020-03-10 -> 2020-05-19 2020-05-19 23:15:07 -04:00
Robert Pearce
88c8f0d540
maintainers: add rpearce 2020-05-19 20:29:36 -04:00
Ryan Orendorff
f7ad47a8f6
agdaPackages.cubical: init at 0.2 (#76994)
Co-authored-by: Alex Rice <alexrice999@hotmail.co.uk>
2020-05-19 13:20:35 -04:00
06kellyjac
d2003509af maintainers: add jk 2020-05-19 10:07:38 +01:00
wishfort36
597e2dfb8d maintainers: add wishfort36 2020-05-18 21:01:17 +02:00
Ed Cragg
a5d98b2125 maintainers: add edcragg 2020-05-17 14:10:25 +01:00
Jan Tojnar
c19fa9be5e
Merge pull request #87953 from ccellado/glpaper-unstable 2020-05-17 14:05:17 +02:00
ccellado
1241af5dd3 maintainers: add ccellado 2020-05-17 00:22:52 +03:00
lunik1
f3352f3240
maintainers: add lunik1 2020-05-16 20:14:42 +01:00
Dennis Gosnell
82263944a7
Merge pull request #87875 from wnklmnn/jugglinglab
jugglinglab: init at 1.2
2020-05-16 09:40:37 +09:00
Jan Tojnar
a762c0e304
Merge pull request #87731 from jtojnar/update-no-build-src 2020-05-15 15:40:43 +02:00
Pascal Winkelmann
8f475b0470 jugglinglab: init at 1.2 2020-05-15 12:17:13 +02:00
Jan Tojnar
3f3aeb7c85
maintainers/scripts/update.nix: refactor package collector
The `packagesWith` function expected an attrSet but `packagesWithUpdateScript`
could be passing it a derivation or a list when the attribute path
supplied by user through the `--argstr path` argument pointed to one.
It only worked because derivations are also attrSets and contain their
outputs as attributes, and did not work for lists at all.

Additionally, the improper handling would cause the `src` attribute
to be built in some rare cases (`mkYarnPackage` seems to trigger this).

Rewriting the `packagesWith` function to be inductive with a derivation
as a base case and attrSets and lists as inductive steps is much cleaner
and also fixes the unnecessary build.
2020-05-13 12:12:18 +02:00
Jan Tojnar
fab2ee8c10
maintainers/scripts/update.nix: derivation is the final station
It does not make sense to look for derivations within derivations,
not even when `recurseForDerivations` is true. Nix does not do that either:

ebc024df22/src/libexpr/get-drvs.cc (L346-L355)
2020-05-13 11:06:33 +02:00
Jan Tojnar
8f50956ee0
maintainers/scripts/update.nix: Import lib into scope
This will make it easier to change it if we want to decouple from pkgs.
2020-05-13 11:06:33 +02:00
Lynn Dong
c85f0a12bb maintainers: add lynty 2020-05-12 18:07:36 -07:00
Silvan Mosberger
6440000547
Merge pull request #87599 from helsinki-systems/znapzend-oracle-mode 2020-05-12 15:39:25 +02:00
Evils
76c7c2cfbf maintainers: evils-devils -> evils 2020-05-12 12:05:53 +02:00
Anderson Torres
1233db808d
Merge pull request #86927 from dramaturg/exoscale-cli
exoscale-cli: init at 1.12.0
2020-05-11 21:22:00 -03:00
Michel Weitbrecht
e719550694
maintainers: Add SlothOfAnarchy 2020-05-11 14:34:33 +02:00
pablo1107
fc3d6386db maintainers: add pablovsky 2020-05-10 20:18:50 +02:00