summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/chromium/browser.nix
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-10-20 12:59:55 +0200
committerMichael Weiss <dev.primeos@gmail.com>2020-10-23 11:39:05 +0200
commitb36db49ae73db879fe00f73f2777077f33a68745 (patch)
tree347861fa01e282acaa0244d3b0873c21b5bd907c /pkgs/applications/networking/browsers/chromium/browser.nix
parent4b8f3aee6f7d278eee3d0c293a92b45e6c592003 (diff)
downloadnixpkgs-b36db49ae73db879fe00f73f2777077f33a68745.tar
nixpkgs-b36db49ae73db879fe00f73f2777077f33a68745.tar.gz
nixpkgs-b36db49ae73db879fe00f73f2777077f33a68745.tar.bz2
nixpkgs-b36db49ae73db879fe00f73f2777077f33a68745.tar.lz
nixpkgs-b36db49ae73db879fe00f73f2777077f33a68745.tar.xz
nixpkgs-b36db49ae73db879fe00f73f2777077f33a68745.tar.zst
nixpkgs-b36db49ae73db879fe00f73f2777077f33a68745.zip
chromium: Add some brief documentation
Wanted to do this for a long time to collect important knowledge and
make it easier to pass maintainership.
Only time will tell if this'll be useful or become outdated instead.
Diffstat (limited to 'pkgs/applications/networking/browsers/chromium/browser.nix')
-rw-r--r--pkgs/applications/networking/browsers/chromium/browser.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/applications/networking/browsers/chromium/browser.nix b/pkgs/applications/networking/browsers/chromium/browser.nix
index 3d87325984b..d3953da71d2 100644
--- a/pkgs/applications/networking/browsers/chromium/browser.nix
+++ b/pkgs/applications/networking/browsers/chromium/browser.nix
@@ -77,18 +77,10 @@ mkChromiumDerivation (base: rec {
       of source code for Google Chrome (which has some additional features).
     '';
     homepage = "https://www.chromium.org/";
-    maintainers = with maintainers; [ bendlas thefloweringash primeos ];
-    # Overview of the maintainer roles:
-    # nixos-unstable:
-    # - TODO: Need a new maintainer for x86_64 [0]
-    # - @thefloweringash: aarch64
-    # - @primeos: Provisional maintainer (x86_64)
-    # Stable channel:
-    # - TODO (need someone to test backports [0])
-    # [0]: https://github.com/NixOS/nixpkgs/issues/78450
+    maintainers = with maintainers; [ primeos thefloweringash bendlas ]; # See README.md
     license = if enableWideVine then licenses.unfree else licenses.bsd3;
     platforms = platforms.linux;
     hydraPlatforms = if channel == "stable" then ["aarch64-linux" "x86_64-linux"] else [];
-    timeout = 172800; # 48 hours
+    timeout = 172800; # 48 hours (increased from the Hydra default of 10h)
   };
 })