treewide: rename maintainer `earvstedt` -> `erikarvstedt`

The maintainer name now matches the Github username, which simplifies
maintainer notifications.

Changed files
+19 -19
maintainers
nixos
pkgs
applications
blockchains
btcpayserver
nbxplorer
graphics
office
paperless-ngx
development
python-modules
djangoql
filemagic
fuzzywuzzy
inotify-simple
langdetect
pdftotext
pytest-env
python-dotenv
tools
backup
rsbep
virtualization
extra-container
+1 -1
maintainers/maintainer-list.nix
···
githubId = 424946;
name = "James Earl Douglas";
};
-
earvstedt = {
+
erikarvstedt = {
email = "erik.arvstedt@gmail.com";
matrix = "@erikarvstedt:matrix.org";
github = "erikarvstedt";
+1 -1
nixos/modules/services/misc/paperless.nix
···
};
in
{
-
meta.maintainers = with maintainers; [ earvstedt Flakebi ];
+
meta.maintainers = with maintainers; [ erikarvstedt Flakebi ];
imports = [
(mkRenamedOptionModule [ "services" "paperless-ng" ] [ "services" "paperless" ])
+1 -1
nixos/tests/containers-custom-pkgs.nix
···
in {
name = "containers-custom-pkgs";
meta = {
-
maintainers = with lib.maintainers; [ adisbladis earvstedt ];
+
maintainers = with lib.maintainers; [ adisbladis erikarvstedt ];
};
nodes.machine = { config, ... }: {
+1 -1
nixos/tests/paperless.nix
···
import ./make-test-python.nix ({ lib, ... }: {
name = "paperless";
-
meta.maintainers = with lib.maintainers; [ earvstedt Flakebi ];
+
meta.maintainers = with lib.maintainers; [ erikarvstedt Flakebi ];
nodes.machine = { pkgs, ... }: {
environment.systemPackages = with pkgs; [ imagemagick jq ];
+1 -1
pkgs/applications/blockchains/btcpayserver/default.nix
···
meta = with lib; {
description = "Self-hosted, open-source cryptocurrency payment processor";
homepage = "https://btcpayserver.org";
-
maintainers = with maintainers; [ kcalvinalvin earvstedt ];
+
maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
license = licenses.mit;
platforms = platforms.linux;
};
+1 -1
pkgs/applications/blockchains/nbxplorer/default.nix
···
meta = with lib; {
description = "Minimalist UTXO tracker for HD Cryptocurrency Wallets";
-
maintainers = with maintainers; [ kcalvinalvin earvstedt ];
+
maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
license = licenses.mit;
platforms = platforms.linux;
};
+1 -1
pkgs/applications/graphics/tesseract/tesseract3.nix
···
description = "OCR engine";
homepage = "https://github.com/tesseract-ocr/tesseract";
license = lib.licenses.asl20;
-
maintainers = with lib.maintainers; [ viric earvstedt ];
+
maintainers = with lib.maintainers; [ viric erikarvstedt ];
platforms = with lib.platforms; linux ++ darwin;
};
}
+1 -1
pkgs/applications/graphics/tesseract/tesseract4.nix
···
description = "OCR engine";
homepage = "https://github.com/tesseract-ocr/tesseract";
license = lib.licenses.asl20;
-
maintainers = with lib.maintainers; [ viric earvstedt ];
+
maintainers = with lib.maintainers; [ viric erikarvstedt ];
platforms = with lib.platforms; linux ++ darwin;
};
}
+1 -1
pkgs/applications/office/paperless-ngx/default.nix
···
description = "A supercharged version of paperless: scan, index, and archive all of your physical documents";
homepage = "https://paperless-ngx.readthedocs.io/en/latest/";
license = licenses.gpl3Only;
-
maintainers = with maintainers; [ lukegb gador earvstedt ];
+
maintainers = with maintainers; [ lukegb gador erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/djangoql/default.nix
···
description = "Advanced search language for Django";
homepage = "https://github.com/ivelum/djangoql";
license = licenses.mit;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/filemagic/default.nix
···
description = "File type identification using libmagic";
homepage = "https://github.com/aliles/filemagic";
license = licenses.asl20;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/fuzzywuzzy/default.nix
···
description = "Fuzzy string matching for Python";
homepage = "https://github.com/seatgeek/fuzzywuzzy";
license = licenses.gpl2;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/inotify-simple/default.nix
···
description = "A simple Python wrapper around inotify";
homepage = "https://github.com/chrisjbillington/inotify_simple";
license = licenses.bsd2;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/langdetect/default.nix
···
description = "Python port of Google's language-detection library";
homepage = "https://github.com/Mimino666/langdetect";
license = licenses.asl20;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/pdftotext/default.nix
···
description = "Simple PDF text extraction";
homepage = "https://github.com/jalan/pdftotext";
license = licenses.mit;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/pytest-env/default.nix
···
description = "Pytest plugin used to set environment variables";
homepage = "https://github.com/MobileDynasty/pytest-env";
license = licenses.mit;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/development/python-modules/python-dotenv/default.nix
···
description = "Add .env support to your django/flask apps in development and deployments";
homepage = "https://github.com/theskumar/python-dotenv";
license = licenses.bsdOriginal;
-
maintainers = with maintainers; [ earvstedt ];
+
maintainers = with maintainers; [ erikarvstedt ];
};
}
+1 -1
pkgs/tools/backup/rsbep/default.nix
···
description = "Create resilient backups with Reed-Solomon error correction and byte-spreading";
homepage = "https://www.thanassis.space/rsbep.html";
license = licenses.gpl3Plus;
-
maintainers = [ maintainers.earvstedt ];
+
maintainers = [ maintainers.erikarvstedt ];
};
}
+1 -1
pkgs/tools/virtualization/extra-container/default.nix
···
homepage = "https://github.com/erikarvstedt/extra-container";
license = licenses.mit;
platforms = platforms.linux;
-
maintainers = [ maintainers.earvstedt ];
+
maintainers = [ maintainers.erikarvstedt ];
};
}