···3, enableWideVine, ungoogled
4}:
56-with lib;
7-8mkChromiumDerivation (base: rec {
9 name = "chromium-browser";
10 packageName = "chromium";
···7677 meta = {
78 description = "An open source web browser from Google"
79- + optionalString ungoogled ", with dependencies on Google web services removed";
80 longDescription = ''
81 Chromium is an open source web browser from Google that aims to build a
82 safer, faster, and more stable way for all Internet users to experience
···86 homepage = if ungoogled
87 then "https://github.com/Eloston/ungoogled-chromium"
88 else "https://www.chromium.org/";
89- maintainers = with maintainers; if ungoogled
90 then [ squalus primeos michaeladler ]
91 else [ primeos thefloweringash ];
92- license = if enableWideVine then licenses.unfree else licenses.bsd3;
93- platforms = platforms.linux;
94 mainProgram = "chromium";
95 hydraPlatforms = if (channel == "stable" || channel == "ungoogled-chromium")
96 then ["aarch64-linux" "x86_64-linux"]
···3, enableWideVine, ungoogled
4}:
5006mkChromiumDerivation (base: rec {
7 name = "chromium-browser";
8 packageName = "chromium";
···7475 meta = {
76 description = "An open source web browser from Google"
77+ + lib.optionalString ungoogled ", with dependencies on Google web services removed";
78 longDescription = ''
79 Chromium is an open source web browser from Google that aims to build a
80 safer, faster, and more stable way for all Internet users to experience
···84 homepage = if ungoogled
85 then "https://github.com/Eloston/ungoogled-chromium"
86 else "https://www.chromium.org/";
87+ maintainers = with lib.maintainers; if ungoogled
88 then [ squalus primeos michaeladler ]
89 else [ primeos thefloweringash ];
90+ license = if enableWideVine then lib.licenses.unfree else lib.licenses.bsd3;
91+ platforms = lib.platforms.linux;
92 mainProgram = "chromium";
93 hydraPlatforms = if (channel == "stable" || channel == "ungoogled-chromium")
94 then ["aarch64-linux" "x86_64-linux"]
···25, pkgsBuildBuild
26}:
2728-with lib;
29-30# k3s is a kinda weird derivation. One of the main points of k3s is the
31# simplicity of it being one binary that can perform several tasks.
32# However, when you have a good package manager (like nix), that doesn't
···73 # run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag
74 criCtlVersion = "1.26.0-rc.0-k3s1";
7576- baseMeta = {
77 description = "A lightweight Kubernetes distribution";
78 license = licenses.asl20;
79 homepage = "https://k3s.io";
···25, pkgsBuildBuild
26}:
270028# k3s is a kinda weird derivation. One of the main points of k3s is the
29# simplicity of it being one binary that can perform several tasks.
30# However, when you have a good package manager (like nix), that doesn't
···71 # run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag
72 criCtlVersion = "1.26.0-rc.0-k3s1";
7374+ baseMeta = with lib; {
75 description = "A lightweight Kubernetes distribution";
76 license = licenses.asl20;
77 homepage = "https://k3s.io";