Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 21c8bbef 4034b750

+295 -202
+3 -3
pkgs/applications/graphics/processing/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, ant, unzip, makeWrapper, jdk, javaPackages, rsync, ffmpeg, batik, gsettings-desktop-schemas, xorg, wrapGAppsHook }: 1 + { lib, stdenv, fetchFromGitHub, fetchurl, ant, unzip, makeWrapper, jdk, jogl, rsync, ffmpeg, batik, wrapGAppsHook }: 2 2 let 3 3 buildNumber = "1293"; 4 4 vaqua = fetchurl { ··· 53 53 }; 54 54 55 55 nativeBuildInputs = [ ant unzip makeWrapper wrapGAppsHook ]; 56 - buildInputs = [ jdk javaPackages.jogl_2_4_0 ant rsync ffmpeg batik ]; 56 + buildInputs = [ jdk jogl ant rsync ffmpeg batik ]; 57 57 58 58 dontWrapGApps = true; 59 59 ··· 62 62 tar --checkpoint=10000 -czf build/linux/jdk-17.0.8-${arch}.tgz ${jdk} 63 63 cp ${ant}/lib/ant/lib/{ant.jar,ant-launcher.jar} app/lib/ 64 64 mkdir -p core/library 65 - ln -s ${javaPackages.jogl_2_4_0}/share/java/* core/library/ 65 + ln -s ${jogl}/share/java/* core/library/ 66 66 ln -s ${vaqua} app/lib/VAqua9.jar 67 67 ln -s ${flatlaf} app/lib/flatlaf.jar 68 68 ln -s ${lsp4j} java/mode/org.eclipse.lsp4j.jar
+6 -1
pkgs/applications/misc/diffuse/default.nix
··· 10 10 , python3 11 11 , atk 12 12 , gtk3 13 + , hicolor-icon-theme 13 14 }: 14 15 15 16 python3.pkgs.buildPythonApplication rec { ··· 47 48 48 49 preConfigure = '' 49 50 # app bundle for macos 50 - substituteInPlace src/diffuse/meson.build data/icons/meson.build --replace "/Applications" "$out/Applications"; 51 + substituteInPlace src/diffuse/meson.build data/icons/meson.build src/diffuse/mac-os-app/diffuse-mac.in --replace-fail "/Applications" "$out/Applications"; 51 52 ''; 52 53 53 54 mesonFlags = [ ··· 56 57 57 58 # to avoid running gtk-update-icon-cache, update-desktop-database and glib-compile-schemas 58 59 DESTDIR = "/"; 60 + 61 + makeWrapperArgs = [ 62 + "--prefix XDG_DATA_DIRS : ${hicolor-icon-theme}/share" 63 + ]; 59 64 60 65 passthru = { 61 66 updateScript = gitUpdater {
+4
pkgs/applications/misc/health/default.nix
··· 53 53 darwin.apple_sdk.frameworks.Foundation 54 54 ]; 55 55 56 + env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.cc.isClang [ 57 + "-Wno-error=incompatible-function-pointer-types" 58 + ]); 59 + 56 60 meta = with lib; { 57 61 description = "A health tracking app for the GNOME desktop"; 58 62 homepage = "https://apps.gnome.org/app/dev.Cogitri.Health";
+2 -2
pkgs/applications/misc/ipmicfg/default.nix
··· 6 6 buildVersion = "220906"; 7 7 8 8 src = fetchzip { 9 - url = "https://www.supermicro.com/wftp/utility/IPMICFG/IPMICFG_${version}_build.${buildVersion}.zip"; 10 - sha256 = "ZumCXuR7M2Ep7maBOBFk0UsxyRo4fBkf+9AVmkz4AF0="; 9 + url = "https://www.supermicro.com/Bios/sw_download/481/IPMICFG_${version}_build.${buildVersion}.zip"; 10 + hash = "sha256-ZumCXuR7M2Ep7maBOBFk0UsxyRo4fBkf+9AVmkz4AF0="; 11 11 }; 12 12 13 13 installPhase = ''
+4 -3
pkgs/applications/office/paperless-ngx/default.nix
··· 22 22 }: 23 23 24 24 let 25 - version = "2.4.3"; 25 + version = "2.5.0"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "paperless-ngx"; 29 29 repo = "paperless-ngx"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-uFaywZF1e1ELU6EcRxzMqGu3uiFK8MMfrTxb01Drd7k="; 31 + hash = "sha256-f9XMGGNr4qA/twp7Kbv/34mvgNQT+KZ1rYre1BXVWw0="; 32 32 }; 33 33 34 34 python = python3; ··· 53 53 cd src-ui 54 54 ''; 55 55 56 - npmDepsHash = "sha256-4PIslsmbcET/kKLZ/gijwEyBB9zgZR6vMU9h9enzScE="; 56 + npmDepsHash = "sha256-7//VmAgXB4H8hlalfu4JeqFDa8dj1u5Z1kbwp2Wi4cQ="; 57 57 58 58 nativeBuildInputs = [ 59 59 pkg-config ··· 123 123 constantly 124 124 cryptography 125 125 dateparser 126 + django-allauth 126 127 django-auditlog 127 128 django-celery-results 128 129 django-compression-middleware
+10
pkgs/applications/science/electronics/openboardview/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , gitUpdater 5 6 , cmake 6 7 , pkg-config ··· 26 27 sha256 = "sha256-sKDDOPpCagk7rBRlMlZhx+RYYbtoLzJsrnL8qKZMKW8="; 27 28 fetchSubmodules = true; 28 29 }; 30 + 31 + patches = [ 32 + # Fix gcc-13 build failure 33 + (fetchpatch { 34 + name = "gcc-13.patch"; 35 + url = "https://github.com/OpenBoardView/OpenBoardView/commit/b03d0f69ec1611f5eb93f81291b4ba8c58cd29eb.patch"; 36 + hash = "sha256-Hp7KgzulPC2bPtRsd6HJrTLu0oVoQEoBHl0p2DcOLQw="; 37 + }) 38 + ]; 29 39 30 40 nativeBuildInputs = [ cmake pkg-config python3 wrapGAppsHook ]; 31 41 buildInputs = [ SDL2 fontconfig gtk3 ] ++ lib.optionals stdenv.isDarwin [
+2 -2
pkgs/applications/science/logic/mcrl2/default.nix
··· 1 1 {lib, stdenv, fetchurl, cmake, libGLU, libGL, qt5, boost}: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "202206"; 4 + version = "202307"; 5 5 build_nr = "1"; 6 6 pname = "mcrl2"; 7 7 8 8 src = fetchurl { 9 9 url = "https://www.mcrl2.org/download/release/mcrl2-${version}.${build_nr}.tar.gz"; 10 - sha256 = "KoLt8IU/vCdYqzJukNuaZfl8bWiOKB0UxWHEdQj3buU="; 10 + hash = "sha256-zCHCO8tGyOxqUc0x3t/N3dUh4eG7slemlgK/QZsA4JA="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/applications/science/misc/gephi/default.nix
··· 1 - { lib, fetchFromGitHub, jdk11, maven, javaPackages }: 1 + { lib, fetchFromGitHub, jdk11, maven, jogl }: 2 2 3 3 let 4 4 mavenJdk11 = maven.override { ··· 29 29 30 30 # use self-compiled JOGL to avoid patchelf'ing .so inside jars 31 31 rm $out/gephi/modules/ext/org.gephi.visualization/org-jogamp-{jogl,gluegen}/*.jar 32 - cp ${javaPackages.jogl_2_4_0}/share/java/jogl*.jar $out/gephi/modules/ext/org.gephi.visualization/org-jogamp-jogl/ 33 - cp ${javaPackages.jogl_2_4_0}/share/java/glue*.jar $out/gephi/modules/ext/org.gephi.visualization/org-jogamp-gluegen/ 32 + cp ${jogl}/share/java/jogl*.jar $out/gephi/modules/ext/org.gephi.visualization/org-jogamp-jogl/ 33 + cp ${jogl}/share/java/glue*.jar $out/gephi/modules/ext/org.gephi.visualization/org-jogamp-gluegen/ 34 34 35 35 printf "\n\njdkhome=${jdk11}\n" >> $out/etc/gephi.conf 36 36 '';
+1 -1
pkgs/applications/video/pitivi/default.nix
··· 102 102 that can appeal to newbies and professionals alike. 103 103 ''; 104 104 license = licenses.lgpl21Plus; 105 - maintainers = with maintainers; [ akechishiro ]; 105 + maintainers = with maintainers; [ ]; 106 106 platforms = platforms.linux; 107 107 mainProgram = "pitivi"; 108 108 };
+118
pkgs/by-name/jo/jogl/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchgit 4 + , ant 5 + , jdk11 6 + , git 7 + , xmlstarlet 8 + , xcbuild 9 + , udev 10 + , xorg 11 + , mesa 12 + , darwin 13 + , coreutils 14 + }: 15 + 16 + let 17 + version = "2.4.0"; 18 + 19 + gluegen-src = fetchgit { 20 + url = "git://jogamp.org/srv/scm/gluegen.git"; 21 + rev = "v${version}"; 22 + hash = "sha256-qQzq7v2vMFeia6gXaNHS3AbOp9HhDRgISp7P++CKErA="; 23 + fetchSubmodules = true; 24 + }; 25 + jogl-src = fetchgit { 26 + url = "git://jogamp.org/srv/scm/jogl.git"; 27 + rev = "v${version}"; 28 + hash = "sha256-PHDq7uFEQfJ2P0eXPUi0DGFR1ob/n5a68otgzpFnfzQ="; 29 + fetchSubmodules = true; 30 + }; 31 + in 32 + stdenv.mkDerivation { 33 + pname = "jogl"; 34 + inherit version; 35 + 36 + srcs = [ gluegen-src jogl-src ]; 37 + sourceRoot = "."; 38 + 39 + unpackCmd = "cp -r $curSrc \${curSrc##*-}"; 40 + 41 + postPatch = lib.optionalString stdenv.isDarwin '' 42 + sed -i '/if="use.macos/d' gluegen/make/gluegen-cpptasks-base.xml 43 + rm -r jogl/oculusvr-sdk 44 + ''; 45 + 46 + nativeBuildInputs = [ 47 + ant 48 + jdk11 49 + git 50 + xmlstarlet 51 + ] ++ lib.optionals stdenv.isDarwin [ 52 + xcbuild 53 + ]; 54 + 55 + buildInputs = lib.optionals stdenv.isLinux [ 56 + udev 57 + xorg.libX11 58 + xorg.libXrandr 59 + xorg.libXcursor 60 + xorg.libXi 61 + xorg.libXt 62 + xorg.libXxf86vm 63 + xorg.libXrender 64 + mesa 65 + ] ++ lib.optionals stdenv.isDarwin [ 66 + darwin.apple_sdk_11_0.frameworks.AppKit 67 + darwin.apple_sdk_11_0.frameworks.Cocoa 68 + ]; 69 + 70 + # Workaround build failure on -fno-common toolchains: 71 + # ld: ../obj/Bindingtest1p1Impl_JNI.o:(.bss+0x8): multiple definition of 72 + # `unsigned_size_t_1'; ../obj/TK_Surface_JNI.o:(.bss+0x8): first defined here 73 + NIX_CFLAGS_COMPILE = "-fcommon"; # copied from 2.3.2, is this still needed? 74 + 75 + buildPhase = '' 76 + ( cd gluegen/make 77 + substituteInPlace ../src/java/com/jogamp/common/util/IOUtil.java --replace '#!/bin/true' '#!${coreutils}/bin/true' 78 + 79 + # set timestamp of files in jar to a fixed point in time 80 + xmlstarlet ed --inplace \ 81 + --append //jar --type attr -n modificationtime --value 1980-01-01T00:00Z \ 82 + build.xml gluegen-cpptasks-base.xml 83 + 84 + ant -Dtarget.sourcelevel=8 -Dtarget.targetlevel=8 -Dtarget.rt.jar='null.jar' ) 85 + 86 + ( cd jogl/make 87 + 88 + # prevent looking for native libraries in /usr/lib 89 + substituteInPlace build-*.xml \ 90 + --replace 'dir="''${TARGET_PLATFORM_USRLIBS}"' "" 91 + 92 + # force way to do disfunctional "ant -Dsetup.addNativeBroadcom=false" and disable dependency on raspberrypi drivers 93 + # if arm/aarch64 support will be added, this block might be commented out on those platforms 94 + # on x86 compiling with default "setup.addNativeBroadcom=true" leads to unsatisfied import "vc_dispmanx_resource_delete" in libnewt.so 95 + xmlstarlet ed --inplace --delete '//*[@if="setup.addNativeBroadcom"]' build-newt.xml 96 + 97 + # set timestamp of files in jar to a fixed point in time 98 + xmlstarlet ed --inplace \ 99 + --append //jar --type attr -n modificationtime --value 1980-01-01T00:00Z \ 100 + build.xml build-nativewindow.xml build-jogl.xml 101 + 102 + ant -Dtarget.sourcelevel=8 -Dtarget.targetlevel=8 -Dtarget.rt.jar='null.jar' ) 103 + ''; 104 + 105 + installPhase = '' 106 + mkdir -p $out/share/java 107 + cp -v $NIX_BUILD_TOP/gluegen/build/gluegen-rt{,-natives-linux-*}.jar $out/share/java/ 108 + cp -v $NIX_BUILD_TOP/jogl/build/jar/jogl-all{,-natives-linux-*}.jar $out/share/java/ 109 + cp -v $NIX_BUILD_TOP/jogl/build/nativewindow/nativewindow{,-awt,-natives-linux-*,-os-drm,-os-x11}.jar $out/share/java/ 110 + ''; 111 + 112 + meta = with lib; { 113 + description = "Java libraries for 3D Graphics, Multimedia and Processing"; 114 + homepage = "https://jogamp.org/"; 115 + license = licenses.bsd3; 116 + platforms = platforms.all; 117 + }; 118 + }
+3 -3
pkgs/by-name/pr/prr/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "prr"; 12 - version = "0.16.0"; 12 + version = "0.17.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "danobi"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - hash = "sha256-d7o6EQb3pJ+kHSMwFsKy8D3HgTD6fOCSZZNIn+EjdqU="; 18 + hash = "sha256-siQZ3rDKv2lnn1bmisRsexWwfvmMhK+z4GZGPsrfPgc="; 19 19 }; 20 20 21 - cargoHash = "sha256-+v6vdQs2Ml+8Q7IY6lXV3Z5x2qlfwG9xr4hm6tTaBuk="; 21 + cargoHash = "sha256-vCZjgmBYO+I6MZLCOMp50bWEeHwLbZsxSz5gRmBykvI="; 22 22 23 23 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ 24 24 darwin.apple_sdk.frameworks.Security
-89
pkgs/development/java-modules/jogl/default.nix
··· 1 - { coreutils, lib, stdenv, fetchgit, ant, jdk8, jdk11, git, xorg, udev, libGL, libGLU, mesa, xmlstarlet, xcbuild, darwin }: 2 - 3 - { 4 - jogl_2_4_0 = 5 - let 6 - version = "2.4.0"; 7 - 8 - gluegen-src = fetchgit { 9 - url = "git://jogamp.org/srv/scm/gluegen.git"; 10 - rev = "v${version}"; 11 - hash = "sha256-qQzq7v2vMFeia6gXaNHS3AbOp9HhDRgISp7P++CKErA="; 12 - fetchSubmodules = true; 13 - }; 14 - jogl-src = fetchgit { 15 - url = "git://jogamp.org/srv/scm/jogl.git"; 16 - rev = "v${version}"; 17 - hash = "sha256-PHDq7uFEQfJ2P0eXPUi0DGFR1ob/n5a68otgzpFnfzQ="; 18 - fetchSubmodules = true; 19 - }; 20 - in 21 - stdenv.mkDerivation { 22 - pname = "jogl"; 23 - inherit version; 24 - 25 - srcs = [ gluegen-src jogl-src ]; 26 - sourceRoot = "."; 27 - 28 - unpackCmd = "cp -r $curSrc \${curSrc##*-}"; 29 - 30 - postPatch = lib.optionalString stdenv.isDarwin '' 31 - sed -i '/if="use.macos/d' gluegen/make/gluegen-cpptasks-base.xml 32 - rm -r jogl/oculusvr-sdk 33 - ''; 34 - 35 - nativeBuildInputs = [ ant jdk11 git xmlstarlet ] 36 - ++ lib.optionals stdenv.isDarwin [ xcbuild ]; 37 - buildInputs = lib.optionals stdenv.isLinux [ udev xorg.libX11 xorg.libXrandr xorg.libXcursor xorg.libXi xorg.libXt xorg.libXxf86vm xorg.libXrender mesa ] 38 - ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk_11_0.frameworks.AppKit darwin.apple_sdk_11_0.frameworks.Cocoa ]; 39 - 40 - # Workaround build failure on -fno-common toolchains: 41 - # ld: ../obj/Bindingtest1p1Impl_JNI.o:(.bss+0x8): multiple definition of 42 - # `unsigned_size_t_1'; ../obj/TK_Surface_JNI.o:(.bss+0x8): first defined here 43 - NIX_CFLAGS_COMPILE = "-fcommon"; # copied from 2.3.2, is this still needed? 44 - 45 - buildPhase = '' 46 - ( cd gluegen/make 47 - substituteInPlace ../src/java/com/jogamp/common/util/IOUtil.java --replace '#!/bin/true' '#!${coreutils}/bin/true' 48 - 49 - # set timestamp of files in jar to a fixed point in time 50 - xmlstarlet ed --inplace \ 51 - --append //jar --type attr -n modificationtime --value 1980-01-01T00:00Z \ 52 - build.xml gluegen-cpptasks-base.xml 53 - 54 - ant -Dtarget.sourcelevel=8 -Dtarget.targetlevel=8 -Dtarget.rt.jar='null.jar' ) 55 - 56 - ( cd jogl/make 57 - 58 - # prevent looking for native libraries in /usr/lib 59 - substituteInPlace build-*.xml \ 60 - --replace 'dir="''${TARGET_PLATFORM_USRLIBS}"' "" 61 - 62 - # force way to do disfunctional "ant -Dsetup.addNativeBroadcom=false" and disable dependency on raspberrypi drivers 63 - # if arm/aarch64 support will be added, this block might be commented out on those platforms 64 - # on x86 compiling with default "setup.addNativeBroadcom=true" leads to unsatisfied import "vc_dispmanx_resource_delete" in libnewt.so 65 - xmlstarlet ed --inplace --delete '//*[@if="setup.addNativeBroadcom"]' build-newt.xml 66 - 67 - # set timestamp of files in jar to a fixed point in time 68 - xmlstarlet ed --inplace \ 69 - --append //jar --type attr -n modificationtime --value 1980-01-01T00:00Z \ 70 - build.xml build-nativewindow.xml build-jogl.xml 71 - 72 - ant -Dtarget.sourcelevel=8 -Dtarget.targetlevel=8 -Dtarget.rt.jar='null.jar' ) 73 - ''; 74 - 75 - installPhase = '' 76 - mkdir -p $out/share/java 77 - cp -v $NIX_BUILD_TOP/gluegen/build/gluegen-rt{,-natives-linux-*}.jar $out/share/java/ 78 - cp -v $NIX_BUILD_TOP/jogl/build/jar/jogl-all{,-natives-linux-*}.jar $out/share/java/ 79 - cp -v $NIX_BUILD_TOP/jogl/build/nativewindow/nativewindow{,-awt,-natives-linux-*,-os-drm,-os-x11}.jar $out/share/java/ 80 - ''; 81 - 82 - meta = with lib; { 83 - description = "Java libraries for 3D Graphics, Multimedia and Processing"; 84 - homepage = "https://jogamp.org/"; 85 - license = licenses.bsd3; 86 - platforms = platforms.all; 87 - }; 88 - }; 89 - }
+2 -2
pkgs/development/libraries/db/db-6.0.nix
··· 1 1 { lib, stdenv, fetchurl, autoreconfHook, ... } @ args: 2 2 3 3 import ./generic.nix (args // { 4 - version = "6.0.20"; 5 - sha256 = "00r2aaglq625y8r9xd5vw2y070plp88f1mb2gbq3kqsl7128lsl0"; 4 + version = "6.0.30"; 5 + sha256 = "1lhglbvg65j5slrlv7qv4vi3cvd7kjywa07gq1abzschycf4p3k0"; 6 6 license = lib.licenses.agpl3; 7 7 extraPatches = [ 8 8 ./clang-6.0.patch
+2 -2
pkgs/development/libraries/db/db-6.2.nix
··· 1 1 { lib, stdenv, fetchurl, autoreconfHook, ... } @ args: 2 2 3 3 import ./generic.nix (args // { 4 - version = "6.2.23"; 5 - sha256 = "1isxx4jfmnh913jzhp8hhfngbk6dsg46f4kjpvvc56maj64jqqa7"; 4 + version = "6.2.32"; 5 + sha256 = "1yx8wzhch5wwh016nh0kfxvknjkafv6ybkqh6nh7lxx50jqf5id9"; 6 6 license = lib.licenses.agpl3; 7 7 extraPatches = [ 8 8 ./clang-6.0.patch
+7 -26
pkgs/development/libraries/libbsd/default.nix
··· 1 1 { lib 2 2 , stdenv 3 - , fetchFromGitLab 4 - , fetchpatch 3 + , fetchurl 5 4 , autoreconfHook 6 5 , libmd 7 6 , gitUpdater 8 7 }: 9 8 10 - # Run `./get-version` for the new value when bumping the Git revision. 11 - let gitVersion = "0.11.7-55-g73b2"; in 12 - 13 - stdenv.mkDerivation { 9 + stdenv.mkDerivation rec { 14 10 pname = "libbsd"; 15 - version = "unstable-2023-04-29"; 11 + version = "0.11.8"; 16 12 17 - src = fetchFromGitLab { 18 - domain = "gitlab.freedesktop.org"; 19 - owner = "libbsd"; 20 - repo = "libbsd"; 21 - rev = "73b25a8f871b3a20f6ff76679358540f95d7dbfd"; 22 - hash = "sha256-LS28taIMjRCl6xqg75eYOIrTDl8PzSa+OvrdiEOP1+U="; 13 + src = fetchurl { 14 + url = "https://libbsd.freedesktop.org/releases/${pname}-${version}.tar.xz"; 15 + hash = "sha256-Vf36Jpb7TVWlkvqa0Uqd+JfHsACN2zswxBmRSEH4XzM="; 23 16 }; 24 17 25 18 outputs = [ "out" "dev" "man" ]; ··· 31 24 nativeBuildInputs = [ autoreconfHook ]; 32 25 propagatedBuildInputs = [ libmd ]; 33 26 34 - patches = [ 35 - # Fix `{get,set}progname(3bsd)` conditionalization 36 - # https://gitlab.freedesktop.org/libbsd/libbsd/-/issues/24 37 - (fetchpatch { 38 - url = "https://github.com/emilazy/libbsd/commit/0381f8d92873c5a19ced3ff861ee8ffe7825953e.patch"; 39 - hash = "sha256-+RMg5eHLgC4gyX9zXM0ttNf7rd9E3UzJX/7UVCYGXx4="; 40 - }) 41 - ] ++ lib.optionals stdenv.isDarwin [ 27 + patches = lib.optionals stdenv.isDarwin [ 42 28 # Temporary build system hack from upstream maintainer 43 29 # https://gitlab.freedesktop.org/libbsd/libbsd/-/issues/19#note_2017684 44 30 ./darwin-fix-libbsd.sym.patch 45 31 ]; 46 - 47 - postPatch = '' 48 - substituteInPlace configure.ac \ 49 - --replace 'm4_esyscmd([./get-version])' '[${gitVersion}]' 50 - ''; 51 32 52 33 passthru.updateScript = gitUpdater { 53 34 # No nicer place to find latest release.
+6 -4
pkgs/development/libraries/libwpd/default.nix
··· 1 - { lib, stdenv, fetchurl, zlib, pkg-config, glib, libgsf, libxml2, librevenge }: 1 + { lib, stdenv, fetchurl, zlib, pkg-config, glib, libgsf, libxml2, librevenge, boost }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libwpd"; 5 - version = "0.10.0"; 5 + version = "0.10.3"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/libwpd/libwpd-${version}.tar.xz"; 9 - sha256 = "0b6krzr6kxzm89g6bapn805kdayq70hn16n5b5wfs2lwrf0ag2wx"; 9 + hash = "sha256-JGWwtmL9xdTjvrzcmnkCdxP7Ypyiv/BKPJJR/exC3Qk="; 10 10 }; 11 11 12 - buildInputs = [ glib libgsf libxml2 zlib librevenge ]; 12 + patches = [ ./gcc-1.0.patch ]; 13 + 14 + buildInputs = [ glib libgsf libxml2 zlib librevenge boost ]; 13 15 14 16 nativeBuildInputs = [ pkg-config ]; 15 17
+12
pkgs/development/libraries/libwpd/gcc-1.0.patch
··· 1 + diff -Naur libwpd-0.10.3/src/lib/WPXTable.h libwpd-0.10.3-modified/src/lib/WPXTable.h 2 + --- libwpd-0.10.3/src/lib/WPXTable.h 2018-12-25 16:19:19.000000000 +0000 3 + +++ libwpd-0.10.3-modified/src/lib/WPXTable.h 2024-01-21 05:41:23.623457028 +0000 4 + @@ -53,7 +53,7 @@ 5 + ~WPXTable(); 6 + void insertRow(); 7 + void insertCell(unsigned char colSpan, unsigned char rowSpan, unsigned char borderBits); 8 + - const WPXTableCell *getCell(size_t i, size_t j) 9 + + const WPXTableCell *getCell(std::size_t i, std::size_t j) 10 + { 11 + return &(m_tableRows[i])[j]; 12 + }
+4 -4
pkgs/development/libraries/libwpg/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libwpd, zlib, librevenge }: 1 + { lib, stdenv, fetchurl, pkg-config, libwpd, zlib, librevenge, boost }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libwpg"; 5 - version = "0.3.3"; 5 + version = "0.3.4"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/libwpg/${pname}-${version}.tar.xz"; 9 - sha256 = "074x159immf139szkswv2zapnq75p7xk10dbha2p9193hgwggcwr"; 9 + hash = "sha256-tV/alEDR4HBjDrJIfYuGl89BLCFKJ8runfac7HwATeM="; 10 10 }; 11 11 12 - buildInputs = [ libwpd zlib librevenge ]; 12 + buildInputs = [ libwpd zlib librevenge boost ]; 13 13 nativeBuildInputs = [ pkg-config ]; 14 14 15 15 meta = with lib; {
+2 -2
pkgs/development/ocaml-modules/mm/default.nix
··· 4 4 5 5 buildDunePackage rec { 6 6 pname = "mm"; 7 - version = "0.8.4"; 7 + version = "0.8.5"; 8 8 9 9 duneVersion = "3"; 10 10 ··· 14 14 owner = "savonet"; 15 15 repo = "ocaml-mm"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-RM+vsWf2RK5dY84KcqeR/OHwO42EDycrYgfOUFpUE44="; 17 + sha256 = "sha256-/83coQdUoaa1+5yapF/joV87uYpVsmWU7LH867Vmmo0="; 18 18 }; 19 19 20 20 buildInputs = [ dune-configurator ];
+2
pkgs/development/python-modules/async-tkinter-loop/default.nix
··· 4 4 , python3Packages 5 5 , poetry-core 6 6 , tkinter 7 + , typing-extensions 7 8 , pythonRelaxDepsHook 8 9 , pytestCheckHook 9 10 }: ··· 26 27 27 28 propagatedBuildInputs = [ 28 29 tkinter 30 + typing-extensions 29 31 ]; 30 32 31 33 pythonRemoveDeps = [
+1 -1
pkgs/development/python-modules/bbox/default.nix
··· 26 26 hash = "sha256-FrJ8FhlqwmnEB/QvPlkDfqZncNGPhwY9aagM9yv1LGs="; 27 27 }; 28 28 29 - nativebuildInputs = [ 29 + nativeBuildInputs = [ 30 30 poetry-core 31 31 ]; 32 32
+5
pkgs/development/python-modules/ilua/default.nix
··· 4 4 , jupyter-console 5 5 , jupyter-core 6 6 , pygments 7 + , setuptools 7 8 , termcolor 8 9 , txzmq 9 10 }: ··· 17 18 inherit pname version; 18 19 hash = "sha256-YxV6xC7GS5NXyMPRZN9YIJxamgP2etwrZUAZjk5PjtU="; 19 20 }; 21 + 22 + nativeBuildInputs = [ 23 + setuptools 24 + ]; 20 25 21 26 propagatedBuildInputs = [ 22 27 jupyter-console
+2 -2
pkgs/development/python-modules/pdoc/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pdoc"; 17 - version = "14.2.0"; 17 + version = "14.4.0"; 18 18 disabled = pythonOlder "3.8"; 19 19 20 20 pyproject = true; ··· 23 23 owner = "mitmproxy"; 24 24 repo = "pdoc"; 25 25 rev = "v${version}"; 26 - hash = "sha256-Mmmq4jqRQow+1jn5ZDVMtP1uxrYgHJK/IQrwFWNw8ag="; 26 + hash = "sha256-2k9uIK6TvoGtVqnh97g9f5QvjhyZlznRvYdw5sPaeVE="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+5
pkgs/development/python-modules/testbook/default.nix
··· 7 7 , ipykernel 8 8 , pandas 9 9 , pytestCheckHook 10 + , setuptools 10 11 , traitlets 11 12 }: 12 13 ··· 27 28 propagatedBuildInputs = [ 28 29 nbclient 29 30 nbformat 31 + ]; 32 + 33 + nativeBuildInputs = [ 34 + setuptools 30 35 ]; 31 36 32 37 nativeCheckInputs = [
+2 -2
pkgs/development/python-modules/unstructured/default.nix
··· 56 56 , grpcio 57 57 }: 58 58 let 59 - version = "0.12.0"; 59 + version = "0.12.4"; 60 60 optional-dependencies = { 61 61 huggingflace = [ 62 62 langdetect ··· 90 90 owner = "Unstructured-IO"; 91 91 repo = "unstructured"; 92 92 rev = "refs/tags/${version}"; 93 - hash = "sha256-NXpl/WUyOfWspppXT5iUWJd4eRd51bdQgl9xyf/+e8s="; 93 + hash = "sha256-lfsCmEhF6CTrEIa4y98NgDw6EgfLk39BVsTmYZD6MkU="; 94 94 }; 95 95 96 96 propagatedBuildInputs = [
+19 -19
pkgs/development/tools/electron/info.json
··· 3 3 "deps": { 4 4 "src/electron": { 5 5 "fetcher": "fetchFromGitHub", 6 - "hash": "sha256-NncDuvceqh2QU7EeHaeyIBEp1kXpPLKkhXlqfqaRmGM=", 6 + "hash": "sha256-FH1M/usdQ4BibO6PSoUPZG2MgsMTG/SfIcBJATrgZcE=", 7 7 "owner": "electron", 8 8 "repo": "electron", 9 - "rev": "v28.1.4" 9 + "rev": "v28.2.2" 10 10 }, 11 11 "src": { 12 12 "fetcher": "fetchFromGitiles", 13 - "hash": "sha256-4ET4+Yd0VwKS/Ze/KO3yhehAdmjCSswaoWmMTo+8KK8=", 13 + "hash": "sha256-AVCD/B0Zb0/FhX+w40UAV3Z0awOn089kt3FrWJGULUw=", 14 14 "url": "https://chromium.googlesource.com/chromium/src.git", 15 - "rev": "120.0.6099.216", 15 + "rev": "120.0.6099.276", 16 16 "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; " 17 17 }, 18 18 "src/third_party/clang-format/script": { ··· 791 791 }, 792 792 "src/third_party/webrtc": { 793 793 "fetcher": "fetchFromGitiles", 794 - "hash": "sha256-lhZ6m00IJ7YEhZ2/nyO70aByVk7RBHUpDsKDVOMoVA8=", 794 + "hash": "sha256-ju7sX1jrzg5BZOqdkcnFymRTqdFi7xkeHznKJQB1+08=", 795 795 "url": "https://webrtc.googlesource.com/src.git", 796 - "rev": "b0cc68e61205fd11a7256a6e85307ec17ad95790" 796 + "rev": "5ab829e4ca8f63be6b4ed1d98eee382d7307d34e" 797 797 }, 798 798 "src/third_party/wuffs/src": { 799 799 "fetcher": "fetchFromGitiles", ··· 833 833 }, 834 834 "src/v8": { 835 835 "fetcher": "fetchFromGitiles", 836 - "hash": "sha256-675U42bc/Sqg1A7c1cBjUCNB462wM5qrP6yIVbCSvLk=", 836 + "hash": "sha256-GevDXfVX4UxwTbgp2ZQbp3AFOHv5tECmyqLGIyYi5Tw=", 837 837 "url": "https://chromium.googlesource.com/v8/v8.git", 838 - "rev": "c21e8fe0c5b245c6b9e3928836a89e1407d18f2a" 838 + "rev": "71b6b5a68e0883c155e01368aace6eb6d71b85f3" 839 839 }, 840 840 "src/third_party/nan": { 841 841 "fetcher": "fetchFromGitHub", ··· 873 873 "rev": "78d3966b3c331292ea29ec38661b25df0a245948" 874 874 } 875 875 }, 876 - "version": "28.1.4", 876 + "version": "28.2.2", 877 877 "modules": "119", 878 - "chrome": "120.0.6099.216", 878 + "chrome": "120.0.6099.276", 879 879 "node": "18.18.2", 880 880 "chromium": { 881 - "version": "120.0.6099.216", 881 + "version": "120.0.6099.276", 882 882 "deps": { 883 883 "gn": { 884 884 "version": "2023-10-23", ··· 888 888 } 889 889 } 890 890 }, 891 - "electron_yarn_hash": "0n64fi2s97ly7kl0f8922sgavdm6qh24ms3qwf21663a1igdd4jn", 891 + "electron_yarn_hash": "117vxam1044yy2akwjfhvb5dpfnv667pwbg92ac43551xfn0slcg", 892 892 "chromium_npm_hash": "sha256-zexxXAAJDnhMmh7HfBO1V1z1Yds06C3gSpXacsbjUb4=" 893 893 }, 894 894 "27": { 895 895 "deps": { 896 896 "src/electron": { 897 897 "fetcher": "fetchFromGitHub", 898 - "hash": "sha256-UHrY5DOwkkVS7j5WgY4vTWIH747jX/gMM3AfnxHc+do=", 898 + "hash": "sha256-FgHDK/z2Hq/jLTPUn40iSH5Q6vu1xlNu1PSSQxL+kOw=", 899 899 "owner": "electron", 900 900 "repo": "electron", 901 - "rev": "v27.2.3" 901 + "rev": "v27.3.2" 902 902 }, 903 903 "src": { 904 904 "fetcher": "fetchFromGitiles", ··· 1765 1765 "rev": "78d3966b3c331292ea29ec38661b25df0a245948" 1766 1766 } 1767 1767 }, 1768 - "version": "27.2.3", 1768 + "version": "27.3.2", 1769 1769 "modules": "118", 1770 1770 "chrome": "118.0.5993.159", 1771 1771 "node": "18.17.1", ··· 1780 1780 } 1781 1781 } 1782 1782 }, 1783 - "electron_yarn_hash": "1rxijv3fspjfan7mmw4cmxcb231ny7gn72yzsdnqs0225alrjac0", 1783 + "electron_yarn_hash": "1yq854829a4q0yqyjyn2lq4l3amsqdhfd7fjcnc3mz8l2ci3n964", 1784 1784 "chromium_npm_hash": "sha256-5cjqpYB45nw2gop54VP+tL7/0w63nQGfQ4x6a6KS7XQ=" 1785 1785 }, 1786 1786 "26": { 1787 1787 "deps": { 1788 1788 "src/electron": { 1789 1789 "fetcher": "fetchFromGitHub", 1790 - "hash": "sha256-Y9SiwDHCkHi+s5zYWPtFPhxjpCQMrpZP+IBi/xYZFVo=", 1790 + "hash": "sha256-jIoRqmPge36KJBM+zXF2CXlPjjIVm9dEnt/EryHr7X4=", 1791 1791 "owner": "electron", 1792 1792 "repo": "electron", 1793 - "rev": "v26.6.6" 1793 + "rev": "v26.6.9" 1794 1794 }, 1795 1795 "src": { 1796 1796 "fetcher": "fetchFromGitiles", ··· 2609 2609 "rev": "78d3966b3c331292ea29ec38661b25df0a245948" 2610 2610 } 2611 2611 }, 2612 - "version": "26.6.6", 2612 + "version": "26.6.9", 2613 2613 "modules": "116", 2614 2614 "chrome": "116.0.5845.228", 2615 2615 "node": "18.16.1",
+9 -6
pkgs/games/nanosaur2/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, SDL2, cmake, makeWrapper }: 1 + { lib, stdenv, fetchFromGitHub, SDL2, cmake, makeWrapper, unstableGitUpdater }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nanosaur2"; 5 - version = "2.1.0"; 5 + version = "2.1.0-unstable-2023-05-21"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jorio"; 9 9 repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "sha256-UY+fyn8BA/HfCd2LCj5cfGmQACKUICH6CDCW4q6YDkg="; 10 + rev = "72d93ed08148d81aa89bab511a9650d7b929d4c7"; 11 + hash = "sha256-1AvM2KTQB9aUYB0e/7Y6h18yQvzsxMOgGkF9zPgTzFo="; 12 12 fetchSubmodules = true; 13 13 }; 14 14 ··· 27 27 mv Data ReadMe.txt "$out/share/Nanosaur2/" 28 28 install -Dm755 {.,$out/bin}/Nanosaur2 29 29 wrapProgram $out/bin/Nanosaur2 --chdir "$out/share/Nanosaur2" 30 - install -Dm644 $src/packaging/nanosaur2.desktop $out/share/applications/nanosaur2.desktop 31 - install -Dm644 $src/packaging/nanosaur2-desktopicon.png $out/share/pixmaps/nanosaur2-desktopicon.png 30 + install -Dm644 $src/packaging/io.jor.nanosaur2.desktop $out/share/applications/nanosaur2.desktop 31 + install -Dm644 $src/packaging/io.jor.nanosaur2.png $out/share/pixmaps/nanosaur2.png 32 32 runHook postInstall 33 33 ''; 34 + 35 + passthru.updateScript = unstableGitUpdater { }; 34 36 35 37 meta = with lib; { 36 38 description = "A port of Nanosaur2, a 2004 Macintosh game by Pangea Software, for modern operating systems"; ··· 41 43 ''; 42 44 homepage = "https://github.com/jorio/Nanosaur2"; 43 45 license = licenses.cc-by-sa-40; 46 + mainProgram = "Nanosaur2"; 44 47 maintainers = with maintainers; [ lux ]; 45 48 platforms = platforms.linux; 46 49 };
+2 -2
pkgs/games/openttd/jgrpp.nix
··· 2 2 3 3 openttd.overrideAttrs (oldAttrs: rec { 4 4 pname = "openttd-jgrpp"; 5 - version = "0.57.0"; 5 + version = "0.57.1"; 6 6 7 7 src = fetchFromGitHub rec { 8 8 owner = "JGRennison"; 9 9 repo = "OpenTTD-patches"; 10 10 rev = "jgrpp-${version}"; 11 - hash = "sha256-gXn5O+WSYCK34FKMBOyuTg3cq4Yg59CuLxxzwLbsFBA="; 11 + hash = "sha256-mQy+QdhEXoM9wIWvSkMgRVBXJO1ugXWS3lduccez1PQ="; 12 12 }; 13 13 14 14 buildInputs = oldAttrs.buildInputs ++ [ zstd ];
+6 -5
pkgs/misc/drivers/pantum-driver/default.nix
··· 18 18 in 19 19 stdenv.mkDerivation rec { 20 20 pname = "pantum-driver"; 21 - version = "1.1.84"; 21 + version = "1.1.106"; 22 22 23 23 src = fetchzip { 24 - url = "https://drivers.pantum.com/Pantum_Ubuntu_Driver_V${version}_1.zip"; 25 - sha256 = "sha256-UJzYBsGj/TMhQoMourx7UPGBpN0MPi4pEN8m1sXLw/g="; 24 + url = "https://drivers.pantum.com/userfiles/files/download/drive/Pantum%20Ubuntu%20Driver%20V1_1_106.zip"; 25 + hash = "sha256-FzR/wC73dJ4+rqFT+JvTduxzcozJIAs6jADNbmJby+M="; 26 26 }; 27 27 28 28 buildInputs = [ libusb1 libjpeg8 cups ]; ··· 43 43 ln -s $out/lib/libqpdf.so $out/lib/libqpdf.so.21 44 44 ''; 45 45 46 - meta = { 46 + meta = with lib; { 47 47 description = "Pantum universal driver"; 48 48 homepage = "https://global.pantum.com/"; 49 - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 49 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 50 50 license = lib.licenses.unfree; 51 51 platforms = [ "i686-linux" "x86_64-linux" ]; 52 + maintainers = with maintainers; [ deinferno ]; 52 53 }; 53 54 }
+9
pkgs/misc/ite-backlight/default.nix
··· 1 1 { lib 2 2 , pkgs 3 3 , stdenv 4 + , fetchpatch 4 5 , ninja 5 6 , libusb1 6 7 , meson ··· 31 32 buildInputs = [ 32 33 boost 33 34 libusb1 35 + ]; 36 + 37 + patches = [ 38 + (fetchpatch { 39 + name = "fix-gcc13-build-failure.patch"; 40 + url = "https://github.com/hexagonal-sun/ite-backlight/commit/dc8c19d4785d80cbe7a82869daee1f723d3f3fb2.patch"; 41 + hash = "sha256-iTRTVy7qB2z1ip135b8k3RufTBzeJaP1wdrRWN9tPsU="; 42 + }) 34 43 ]; 35 44 36 45 meta = with lib; {
+14 -2
pkgs/servers/osrm-backend/default.nix
··· 1 - {lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost179, lua, luabind, tbb, expat}: 1 + {lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, bzip2, libxml2, libzip, boost179, lua, luabind, tbb, expat}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "osrm-backend"; ··· 15 15 16 16 buildInputs = [ bzip2 libxml2 libzip boost179 lua luabind tbb expat ]; 17 17 18 - patches = [ ./darwin.patch ]; 18 + patches = [ 19 + # gcc-13 build fix: 20 + # https://github.com/Project-OSRM/osrm-backend/pull/6632 21 + (fetchpatch { 22 + name = "gcc-13.patch"; 23 + url = "https://github.com/Project-OSRM/osrm-backend/commit/af59a9cfaee4d601b5c88391624a05f2a38da17b.patch"; 24 + hash = "sha256-dB9JP/DrJXpFGLD/paein2z64UtHIYZ17ycb91XWpEI="; 25 + }) 26 + 27 + ./darwin.patch 28 + ]; 19 29 20 30 env.NIX_CFLAGS_COMPILE = toString [ 21 31 # Needed with GCC 12 22 32 "-Wno-error=stringop-overflow" 23 33 "-Wno-error=uninitialized" 34 + # Needed for GCC 13 35 + "-Wno-error=array-bounds" 24 36 ]; 25 37 26 38 postInstall = "mkdir -p $out/share/osrm-backend && cp -r ../profiles $out/share/osrm-backend/profiles";
+1 -1
pkgs/tools/admin/azure-cli/default.nix
··· 284 284 sourceProvenance = [ sourceTypes.fromSource ]; 285 285 license = licenses.mit; 286 286 mainProgram = "az"; 287 - maintainers = with maintainers; [ akechishiro jonringer ]; 287 + maintainers = with maintainers; [ jonringer ]; 288 288 platforms = platforms.all; 289 289 }; 290 290 })
+7 -1
pkgs/tools/misc/lektor/default.nix
··· 20 20 }); 21 21 }; 22 22 }; 23 - in python.pkgs.buildPythonApplication rec { 23 + in 24 + python.pkgs.buildPythonApplication rec { 24 25 pname = "lektor"; 25 26 version = "3.4.0b8"; 26 27 format = "pyproject"; ··· 70 71 pytest-click 71 72 pytest-mock 72 73 pytestCheckHook 74 + pythonRelaxDepsHook 75 + ]; 76 + 77 + pythonRelaxDeps = [ 78 + "werkzeug" 73 79 ]; 74 80 75 81 postInstall = ''
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "exploitdb"; 9 - version = "2024-02-07"; 9 + version = "2024-02-10"; 10 10 11 11 src = fetchFromGitLab { 12 12 owner = "exploit-database"; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-yDFsIImcV49vbyXIJK8HPidEaTrlGPvlJmaB1wTnr7M="; 15 + hash = "sha256-tnAPjyvzl70bLFyn1y0prkp8o7CjPy1XwYYF1IGq4No="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+2 -2
pkgs/tools/security/libmodsecurity/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "libmodsecurity"; 9 - version = "3.0.11"; 9 + version = "3.0.12"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "SpiderLabs"; 13 13 repo = "ModSecurity"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-dbAX4lokmiUc+glhTG0PPaD/WEXcoQX0AQ/WZwJQYPY="; 15 + sha256 = "sha256-WIFAg9LvKAC8e3gpcIxtNHT53AIfPtUTyrv30woxP4M="; 16 16 fetchSubmodules = true; 17 17 }; 18 18
+5
pkgs/tools/security/quark-engine/default.nix
··· 18 18 19 19 nativeBuildInputs = with python3.pkgs; [ 20 20 setuptools 21 + pythonRelaxDepsHook 21 22 ]; 22 23 23 24 propagatedBuildInputs = with python3.pkgs; [ ··· 34 35 rzpipe 35 36 setuptools 36 37 tqdm 38 + ]; 39 + 40 + pythonRelaxDeps = [ 41 + "r2pipe" 37 42 ]; 38 43 39 44 # Project has no tests
+10 -7
pkgs/top-level/all-packages.nix
··· 9617 9617 9618 9618 go-jira = callPackage ../applications/misc/go-jira { }; 9619 9619 9620 + jogl = callPackage ../by-name/jo/jogl/package.nix { 9621 + stdenv = if stdenv.isDarwin && stdenv.isx86_64 then overrideSDK stdenv "11.0" else stdenv; 9622 + }; 9623 + 9620 9624 john = callPackage ../tools/security/john { }; 9621 9625 9622 9626 joomscan = callPackage ../tools/security/joomscan { }; ··· 26687 26691 26688 26692 openxr-loader = callPackage ../development/libraries/openxr-loader { }; 26689 26693 26690 - osrm-backend = disable-warnings-if-gcc13 (callPackage ../servers/osrm-backend { }); 26694 + osrm-backend = callPackage ../servers/osrm-backend { }; 26691 26695 26692 26696 oven-media-engine = callPackage ../servers/misc/oven-media-engine { }; 26693 26697 ··· 40413 40417 40414 40418 networkd-dispatcher = callPackage ../tools/networking/networkd-dispatcher { }; 40415 40419 40416 - nixVersions = builtins.mapAttrs (_: disable-warnings-if-gcc13) 40417 - (recurseIntoAttrs (callPackage ../tools/package-management/nix { 40418 - storeDir = config.nix.storeDir or "/nix/store"; 40419 - stateDir = config.nix.stateDir or "/nix/var"; 40420 - inherit (darwin.apple_sdk.frameworks) Security; 40421 - })); 40420 + nixVersions = recurseIntoAttrs (callPackage ../tools/package-management/nix { 40421 + storeDir = config.nix.storeDir or "/nix/store"; 40422 + stateDir = config.nix.stateDir or "/nix/var"; 40423 + inherit (darwin.apple_sdk.frameworks) Security; 40424 + }); 40422 40425 40423 40426 nix = nixVersions.stable; 40424 40427
+1 -3
pkgs/top-level/java-packages.nix
··· 236 236 else ../development/compilers/semeru-bin/jdk-darwin.nix 237 237 ) {}); 238 238 }; 239 - 240 - inherit (pkgs.darwin.apple_sdk_11_0.callPackage ../development/java-modules/jogl { }) 241 - jogl_2_4_0; 242 239 } 243 240 // lib.optionalAttrs config.allowAliases { 241 + jogl_2_4_0 = throw "'jogl_2_4_0' is renamed to/replaced by 'jogl'"; 244 242 mavenfod = throw "'mavenfod' is renamed to/replaced by 'maven.buildMavenPackage'"; 245 243 }