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

The maintainer name now matches the Github username, which simplifies
maintainer notifications.
main
Erik Arvstedt 2 years ago
parent ea532fe833
commit 1a32663efc
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
  1. 2
      maintainers/maintainer-list.nix
  2. 2
      nixos/modules/services/misc/paperless.nix
  3. 2
      nixos/tests/containers-custom-pkgs.nix
  4. 2
      nixos/tests/paperless.nix
  5. 2
      pkgs/applications/blockchains/btcpayserver/default.nix
  6. 2
      pkgs/applications/blockchains/nbxplorer/default.nix
  7. 2
      pkgs/applications/graphics/tesseract/tesseract3.nix
  8. 2
      pkgs/applications/graphics/tesseract/tesseract4.nix
  9. 2
      pkgs/applications/office/paperless-ngx/default.nix
  10. 2
      pkgs/development/python-modules/djangoql/default.nix
  11. 2
      pkgs/development/python-modules/filemagic/default.nix
  12. 2
      pkgs/development/python-modules/fuzzywuzzy/default.nix
  13. 2
      pkgs/development/python-modules/inotify-simple/default.nix
  14. 2
      pkgs/development/python-modules/langdetect/default.nix
  15. 2
      pkgs/development/python-modules/pdftotext/default.nix
  16. 2
      pkgs/development/python-modules/pytest-env/default.nix
  17. 2
      pkgs/development/python-modules/python-dotenv/default.nix
  18. 2
      pkgs/tools/backup/rsbep/default.nix
  19. 2
      pkgs/tools/virtualization/extra-container/default.nix

@ -3518,7 +3518,7 @@
githubId = 424946;
name = "James Earl Douglas";
};
earvstedt = {
erikarvstedt = {
email = "erik.arvstedt@gmail.com";
matrix = "@erikarvstedt:matrix.org";
github = "erikarvstedt";

@ -83,7 +83,7 @@ let
};
in
{
meta.maintainers = with maintainers; [ earvstedt Flakebi ];
meta.maintainers = with maintainers; [ erikarvstedt Flakebi ];
imports = [
(mkRenamedOptionModule [ "services" "paperless-ng" ] [ "services" "paperless" ])

@ -9,7 +9,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: let
in {
name = "containers-custom-pkgs";
meta = {
maintainers = with lib.maintainers; [ adisbladis earvstedt ];
maintainers = with lib.maintainers; [ adisbladis erikarvstedt ];
};
nodes.machine = { config, ... }: {

@ -1,6 +1,6 @@
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 ];

@ -26,7 +26,7 @@ buildDotnetModule rec {
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;
};

@ -22,7 +22,7 @@ buildDotnetModule rec {
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;
};

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
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;
};
}

@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
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;
};
}

@ -196,6 +196,6 @@ py.pkgs.pythonPackages.buildPythonApplication rec {
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 ];
};
}

@ -23,6 +23,6 @@ buildPythonPackage rec {
description = "Advanced search language for Django";
homepage = "https://github.com/ivelum/djangoql";
license = licenses.mit;
maintainers = with maintainers; [ earvstedt ];
maintainers = with maintainers; [ erikarvstedt ];
};
}

@ -25,6 +25,6 @@ buildPythonPackage {
description = "File type identification using libmagic";
homepage = "https://github.com/aliles/filemagic";
license = licenses.asl20;
maintainers = with maintainers; [ earvstedt ];
maintainers = with maintainers; [ erikarvstedt ];
};
}

@ -16,6 +16,6 @@ buildPythonPackage rec {
description = "Fuzzy string matching for Python";
homepage = "https://github.com/seatgeek/fuzzywuzzy";
license = licenses.gpl2;
maintainers = with maintainers; [ earvstedt ];
maintainers = with maintainers; [ erikarvstedt ];
};
}

@ -19,6 +19,6 @@ buildPythonPackage rec {
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 ];
};
}

@ -28,6 +28,6 @@ buildPythonPackage rec {
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 ];
};
}

@ -15,6 +15,6 @@ buildPythonPackage rec {
description = "Simple PDF text extraction";
homepage = "https://github.com/jalan/pdftotext";
license = licenses.mit;
maintainers = with maintainers; [ earvstedt ];
maintainers = with maintainers; [ erikarvstedt ];
};
}

@ -15,6 +15,6 @@ buildPythonPackage rec {
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 ];
};
}

@ -38,6 +38,6 @@ buildPythonPackage rec {
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 ];
};
}

@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
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 ];
};
}

@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/erikarvstedt/extra-container";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.earvstedt ];
maintainers = [ maintainers.erikarvstedt ];
};
}

Loading…
Cancel
Save