···66666767### `maintainers` {#var-meta-maintainers}
68686969-A list of the maintainers of this Nix expression. Maintainers are defined in [`nixpkgs/maintainers/maintainer-list.nix`](https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix). There is no restriction to becoming a maintainer, just add yourself to that list in a separate commit titled “maintainers: add alice”, and reference maintainers with `maintainers = with lib.maintainers; [ alice bob ]`.
6969+A list of the maintainers of this Nix expression. Maintainers are defined in [`nixpkgs/maintainers/maintainer-list.nix`](https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix). There is no restriction to becoming a maintainer, just add yourself to that list in a separate commit titled “maintainers: add alice” in the same pull request, and reference maintainers with `maintainers = with lib.maintainers; [ alice bob ]`.
70707171### `mainProgram` {#var-meta-mainProgram}
7272
+3-2
nixos/modules/installer/tools/nixos-enter.sh
···100100 # Run the activation script. Set $LOCALE_ARCHIVE to supress some Perl locale warnings.
101101 LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" IN_NIXOS_ENTER=1 chroot "$mountPoint" "$system/activate" 1>&2 || true
102102103103- # Create /tmp
104104- chroot "$mountPoint" "$system/sw/bin/systemd-tmpfiles" --create --remove --exclude-prefix=/dev 1>&2 || true
103103+ # Create /tmp. This is needed for nix-build and the NixOS activation script to work.
104104+ # Hide the unhelpful "failed to replace specifiers" errors caused by missing /etc/machine-id.
105105+ chroot "$mountPoint" "$system/sw/bin/systemd-tmpfiles" --create --remove -E 2> /dev/null || true
105106)
106107107108unset TMPDIR
···1212let
1313 inherit (stdenv.hostPlatform) system;
1414 pname = "obsidian";
1515- version = "1.0.3";
1515+ version = "1.1.9";
1616 appname = "Obsidian";
1717 meta = with lib; {
1818 description = "A powerful knowledge base that works on top of a local folder of plain text Markdown files";
···2525 filename = if stdenv.isDarwin then "Obsidian-${version}-universal.dmg" else "obsidian-${version}.tar.gz";
2626 src = fetchurl {
2727 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/${filename}";
2828- sha256 = if stdenv.isDarwin then "sha256-DYF9fEpZaP4tD/eeZAegDahR7UZyroqNB9bn2U7sgXs=" else "sha256-MpQk5g4184ZkCAjLU5Ug0ReWgVADskS1QuMcnPdNofs=";
2828+ sha256 = if stdenv.isDarwin then "sha256-x+9WG938YQFP/HF7B9xENOXFSdOrPFOJ1ufxXj3kXps=" else "sha256-dFR7LaDRJwpxrNyPNseGi66gIAHOKf5Au2VXl7SBGSE=";
2929 };
30303131 icon = fetchurl {
+3-3
pkgs/applications/misc/oxker/default.nix
···2233rustPlatform.buildRustPackage rec {
44 pname = "oxker";
55- version = "0.1.10";
55+ version = "0.1.11";
6677 src = fetchCrate {
88 inherit pname version;
99- sha256 = "sha256-2NX2iW3cT9027j2gUsDTtdIFDmJKIGPfSzrGGwvK/VA=";
99+ sha256 = "sha256-O4fVEYstDkVHn7fBVOGu1ok9K9xiO9uLx0+vb6qMZoA=";
1010 };
11111212- cargoSha256 = "sha256-//GI+roOsCLkKgMDUDK0YhJWmeIaYCMBt9r14+Rz8UQ=";
1212+ cargoHash = "sha256-LSMAE24E8Is/ejUE/2vogP0GmpF+9oO2pJoQOZ8OfU8=";
13131414 meta = with lib; {
1515 description = "A simple tui to view & control docker containers";
···190190 esac
191191 done
192192193193- export tmp=$(mktemp -td "${pname}-tmp-XXXXXX")
193193+ if [[ ''${TMPDIR:-} == /run/user/* ]]; then
194194+ # /run/user is usually a tmpfs in RAM, which may be too small
195195+ # to store all downloaded dotnet packages
196196+ TMPDIR=
197197+ fi
198198+199199+ export tmp=$(mktemp -td "deps-${pname}-XXXXXX")
194200 HOME=$tmp/home
195201196202 exitTrap() {
···135135136136 fish = stdenv.mkDerivation rec {
137137 pname = "fish";
138138- version = "3.5.1";
138138+ version = "3.6.0";
139139140140 src = fetchurl {
141141 # There are differences between the release tarball and the tarball GitHub
···145145 # --version`), as well as the local documentation for all builtins (and
146146 # maybe other things).
147147 url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${pname}-${version}.tar.xz";
148148- sha256 = "sha256-ptRbPcWkXdMXcuf439/sq8BjmG6PZ9YL18pgzIHbaSg=";
148148+ hash = "sha512-oR6nYa2s4C73+IsliTMoAFzvB/ktNi+8eUVA3KJunPyXCHjQMSyuvRnWRIPp88PiStbCffziZNF3+T1lx+9plg==";
149149 };
150150151151 # Fix FHS paths in tests