···335335 set textmode=true
336336 terminal_output console
337337 }
338338+339339+ ${lib.optionalString (config.isoImage.grubTheme != null) ''
338340 hiddenentry 'GUI mode' --hotkey 'g' {
339341 $(find ${config.isoImage.grubTheme} -iname '*.pf2' -printf "loadfont (\$root)/EFI/BOOT/grub-theme/%P\n")
340342 set textmode=false
341343 terminal_output gfxterm
342344 }
343343-345345+ ''}
344346345347 # If the parameter iso_path is set, append the findiso parameter to the kernel
346348 # line. We need this to allow the nixos iso to be booted from grub directly.
···2929in
30303131buildFHSEnv {
3232- name = "dropbox";
3232+ inherit version;
3333+ pname = "dropbox";
33343435 # The dropbox-cli command `dropbox start` starts the dropbox daemon in a
3536 # separate session, and wants the daemon to outlive the launcher. Enabling
···3838 hash = "sha256-N5VCBZLFrfw29QjjzlSvQ12urvyaf7ez/RJ08UwqHdk=";
3939 };
40404141- unpackPhase = "dpkg-deb -x $src .";
4242-4341 patches = [
4442 # The brother lpdwrapper uses a temporary file to convey the printer settings.
4543 # The original settings file will be copied with "400" permissions and the "brprintconflsr3"
···44 fetchFromGitHub,
55 makeWrapper,
66 openjdk,
77- gradle,
77+ gradle_8,
88 wget,
99 which,
1010 gnused,
···1414 testers,
1515 nixosTests,
1616}:
1717+let
1818+ # "Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0."
1919+ gradle = gradle_8;
2020+in
1721stdenv.mkDerivation (finalAttrs: {
1822 pname = "nextflow";
1923 # 24.08.0-edge is compatible with Java 21. The current (as of 2024-09-19)
···45454646buildPythonPackage rec {
4747 pname = "mitmproxy";
4848- version = "11.0.0";
4848+ version = "11.0.1";
4949 pyproject = true;
50505151 disabled = pythonOlder "3.9";
···5454 owner = "mitmproxy";
5555 repo = "mitmproxy";
5656 rev = "refs/tags/v${version}";
5757- hash = "sha256-f5TudaLlHtIMAvS7s5mWgqpdi7/vWNF0EdlYNuG67hM=";
5757+ hash = "sha256-1yqR82YpHD5Z2Ufa/8T0htjLm2s+fhBN5BfKGHCGnEw=";
5858 };
59596060 pythonRelaxDeps = [
···123123 "test_statusbar"
124124 # FileNotFoundError: [Errno 2] No such file or directory
125125 # likely wireguard is also not working in the sandbox
126126+ "test_tun_mode"
126127 "test_wireguard"
127128 # test require a DNS server
128129 # RuntimeError: failed to get dns servers: io error: entity not found
···11{ stdenv
22+, lib
33+, config
24, callPackage
35, recurseIntoAttrs
46, symlinkJoin
···236238 # hipBlasLt - Very broken with Tensile at the moment, only supports GFX9
237239 # hipTensor - Only supports GFX9
238240239239- miopengemm= throw ''
240240- 'miopengemm' has been deprecated.
241241- It is still available for some time as part of rocmPackages_5.
242242- ''; # Added 2024-3-3
243243-244241 composable_kernel = callPackage ./composable_kernel/unpack.nix {
245242 composable_kernel_build = callPackage ./composable_kernel {
246243 inherit rocmUpdateScript rocm-cmake clr;
···263260 };
264261265262 miopen-hip = miopen;
266266-267267- miopen-opencl= throw ''
268268- 'miopen-opencl' has been deprecated.
269269- It is still available for some time as part of rocmPackages_5.
270270- ''; # Added 2024-3-3
271263272264 migraphx = callPackage ./migraphx {
273265 inherit rocmUpdateScript rocm-cmake rocblas composable_kernel miopen clr half rocm-device-libs;
···327319 useCPU = false;
328320 };
329321330330- mivisionx-opencl = throw ''
331331- 'mivisionx-opencl' has been deprecated.
332332- Other versions of mivisionx are still available.
333333- It is also still available for some time as part of rocmPackages_5.
334334- ''; # Added 2024-3-24
335335-336322 mivisionx-cpu = mivisionx.override {
337323 rpp = rpp-cpu;
338324 useOpenCL = false;
···525511 ];
526512 };
527513 };
514514+} // lib.optionalAttrs config.allowAliases {
515515+ miopengemm= throw ''
516516+ 'miopengemm' has been deprecated.
517517+ It is still available for some time as part of rocmPackages_5.
518518+ ''; # Added 2024-3-3
519519+520520+ miopen-opencl= throw ''
521521+ 'miopen-opencl' has been deprecated.
522522+ It is still available for some time as part of rocmPackages_5.
523523+ ''; # Added 2024-3-3
524524+525525+ mivisionx-opencl = throw ''
526526+ 'mivisionx-opencl' has been deprecated.
527527+ Other versions of mivisionx are still available.
528528+ It is also still available for some time as part of rocmPackages_5.
529529+ ''; # Added 2024-3-24
528530}