···33, enableWideVine, ungoogled
44}:
5566-with lib;
77-86mkChromiumDerivation (base: rec {
97 name = "chromium-browser";
108 packageName = "chromium";
···76747775 meta = {
7876 description = "An open source web browser from Google"
7979- + optionalString ungoogled ", with dependencies on Google web services removed";
7777+ + lib.optionalString ungoogled ", with dependencies on Google web services removed";
8078 longDescription = ''
8179 Chromium is an open source web browser from Google that aims to build a
8280 safer, faster, and more stable way for all Internet users to experience
···8684 homepage = if ungoogled
8785 then "https://github.com/Eloston/ungoogled-chromium"
8886 else "https://www.chromium.org/";
8989- maintainers = with maintainers; if ungoogled
8787+ maintainers = with lib.maintainers; if ungoogled
9088 then [ squalus primeos michaeladler ]
9189 else [ primeos thefloweringash ];
9292- license = if enableWideVine then licenses.unfree else licenses.bsd3;
9393- platforms = platforms.linux;
9090+ license = if enableWideVine then lib.licenses.unfree else lib.licenses.bsd3;
9191+ platforms = lib.platforms.linux;
9492 mainProgram = "chromium";
9593 hydraPlatforms = if (channel == "stable" || channel == "ungoogled-chromium")
9694 then ["aarch64-linux" "x86_64-linux"]
···2525, pkgsBuildBuild
2626}:
27272828-with lib;
2929-3028# k3s is a kinda weird derivation. One of the main points of k3s is the
3129# simplicity of it being one binary that can perform several tasks.
3230# However, when you have a good package manager (like nix), that doesn't
···7371 # run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag
7472 criCtlVersion = "1.26.0-rc.0-k3s1";
75737676- baseMeta = {
7474+ baseMeta = with lib; {
7775 description = "A lightweight Kubernetes distribution";
7876 license = licenses.asl20;
7977 homepage = "https://k3s.io";