···6667### `maintainers` {#var-meta-maintainers}
6869-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 ]`.
7071### `mainProgram` {#var-meta-mainProgram}
72
···6667### `maintainers` {#var-meta-maintainers}
6869+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 ]`.
7071### `mainProgram` {#var-meta-mainProgram}
72
+3-2
nixos/modules/installer/tools/nixos-enter.sh
···100 # Run the activation script. Set $LOCALE_ARCHIVE to supress some Perl locale warnings.
101 LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" IN_NIXOS_ENTER=1 chroot "$mountPoint" "$system/activate" 1>&2 || true
102103- # Create /tmp
104- chroot "$mountPoint" "$system/sw/bin/systemd-tmpfiles" --create --remove --exclude-prefix=/dev 1>&2 || true
0105)
106107unset TMPDIR
···100 # Run the activation script. Set $LOCALE_ARCHIVE to supress some Perl locale warnings.
101 LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" IN_NIXOS_ENTER=1 chroot "$mountPoint" "$system/activate" 1>&2 || true
102103+ # Create /tmp. This is needed for nix-build and the NixOS activation script to work.
104+ # Hide the unhelpful "failed to replace specifiers" errors caused by missing /etc/machine-id.
105+ chroot "$mountPoint" "$system/sw/bin/systemd-tmpfiles" --create --remove -E 2> /dev/null || true
106)
107108unset TMPDIR
···12let
13 inherit (stdenv.hostPlatform) system;
14 pname = "obsidian";
15- version = "1.0.3";
16 appname = "Obsidian";
17 meta = with lib; {
18 description = "A powerful knowledge base that works on top of a local folder of plain text Markdown files";
···25 filename = if stdenv.isDarwin then "Obsidian-${version}-universal.dmg" else "obsidian-${version}.tar.gz";
26 src = fetchurl {
27 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/${filename}";
28- sha256 = if stdenv.isDarwin then "sha256-DYF9fEpZaP4tD/eeZAegDahR7UZyroqNB9bn2U7sgXs=" else "sha256-MpQk5g4184ZkCAjLU5Ug0ReWgVADskS1QuMcnPdNofs=";
29 };
3031 icon = fetchurl {
···12let
13 inherit (stdenv.hostPlatform) system;
14 pname = "obsidian";
15+ version = "1.1.9";
16 appname = "Obsidian";
17 meta = with lib; {
18 description = "A powerful knowledge base that works on top of a local folder of plain text Markdown files";
···25 filename = if stdenv.isDarwin then "Obsidian-${version}-universal.dmg" else "obsidian-${version}.tar.gz";
26 src = fetchurl {
27 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/${filename}";
28+ sha256 = if stdenv.isDarwin then "sha256-x+9WG938YQFP/HF7B9xENOXFSdOrPFOJ1ufxXj3kXps=" else "sha256-dFR7LaDRJwpxrNyPNseGi66gIAHOKf5Au2VXl7SBGSE=";
29 };
3031 icon = fetchurl {
+3-3
pkgs/applications/misc/oxker/default.nix
···23rustPlatform.buildRustPackage rec {
4 pname = "oxker";
5- version = "0.1.10";
67 src = fetchCrate {
8 inherit pname version;
9- sha256 = "sha256-2NX2iW3cT9027j2gUsDTtdIFDmJKIGPfSzrGGwvK/VA=";
10 };
1112- cargoSha256 = "sha256-//GI+roOsCLkKgMDUDK0YhJWmeIaYCMBt9r14+Rz8UQ=";
1314 meta = with lib; {
15 description = "A simple tui to view & control docker containers";
···23rustPlatform.buildRustPackage rec {
4 pname = "oxker";
5+ version = "0.1.11";
67 src = fetchCrate {
8 inherit pname version;
9+ sha256 = "sha256-O4fVEYstDkVHn7fBVOGu1ok9K9xiO9uLx0+vb6qMZoA=";
10 };
1112+ cargoHash = "sha256-LSMAE24E8Is/ejUE/2vogP0GmpF+9oO2pJoQOZ8OfU8=";
1314 meta = with lib; {
15 description = "A simple tui to view & control docker containers";
···190 esac
191 done
192193+ if [[ ''${TMPDIR:-} == /run/user/* ]]; then
194+ # /run/user is usually a tmpfs in RAM, which may be too small
195+ # to store all downloaded dotnet packages
196+ TMPDIR=
197+ fi
198+199+ export tmp=$(mktemp -td "deps-${pname}-XXXXXX")
200 HOME=$tmp/home
201202 exitTrap() {
···135136 fish = stdenv.mkDerivation rec {
137 pname = "fish";
138- version = "3.5.1";
139140 src = fetchurl {
141 # There are differences between the release tarball and the tarball GitHub
···145 # --version`), as well as the local documentation for all builtins (and
146 # maybe other things).
147 url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${pname}-${version}.tar.xz";
148- sha256 = "sha256-ptRbPcWkXdMXcuf439/sq8BjmG6PZ9YL18pgzIHbaSg=";
149 };
150151 # Fix FHS paths in tests
···135136 fish = stdenv.mkDerivation rec {
137 pname = "fish";
138+ version = "3.6.0";
139140 src = fetchurl {
141 # There are differences between the release tarball and the tarball GitHub
···145 # --version`), as well as the local documentation for all builtins (and
146 # maybe other things).
147 url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${pname}-${version}.tar.xz";
148+ hash = "sha512-oR6nYa2s4C73+IsliTMoAFzvB/ktNi+8eUVA3KJunPyXCHjQMSyuvRnWRIPp88PiStbCffziZNF3+T1lx+9plg==";
149 };
150151 # Fix FHS paths in tests