[check][nixpkgs-review] took longer than 120m and timed out nixpkgs-review took longer than 120m and timed out Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for python311Packages.numba is: Compiling Python code using LLVM meta.homepage for python311Packages.numba is: https://numba.pydata.org/ ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - Warning: a test defined in `passthru.tests` did not pass - found 0.59.1 with grep in /nix/store/q6hkah2i512isq1lriyxqqg36y0i3px3-python3.11-numba-0.59.1 - found 0.59.1 in filename of file in /nix/store/q6hkah2i512isq1lriyxqqg36y0i3px3-python3.11-numba-0.59.1 ---
Rebuild report (if merged into master) (click to expand) ``` 99 total rebuild path(s) 99 package rebuild(s) First fifty rebuilds by attrpath khoj openai-whisper pianotrans piper-train pitivi python311Packages.aeppl python311Packages.aesara python311Packages.apricot-select python311Packages.arviz python311Packages.asteroid-filterbanks python311Packages.awkward python311Packages.bambi python311Packages.clifford python311Packages.coffea python311Packages.correctionlib python311Packages.cppe python311Packages.dask-awkward python311Packages.dask-glm python311Packages.dask-ml python311Packages.datashader python311Packages.ffcv python311Packages.galois python311Packages.graspologic python311Packages.gumath python311Packages.hyppo python311Packages.librosa python311Packages.mplhep python311Packages.numba python311Packages.numba-scipy python311Packages.numbaWithCuda python311Packages.openai-whisper python311Packages.outlines python311Packages.phik python311Packages.piano-transcription-inference python311Packages.pyannote-audio python311Packages.pygmo python311Packages.pymatting python311Packages.pymc python311Packages.pymoo python311Packages.pynndescent python311Packages.pyscf python311Packages.pytensor python311Packages.quaternion python311Packages.resampy python311Packages.scikit-tda python311Packages.shap python311Packages.simple-dftd3 python311Packages.sparse python311Packages.stumpy python311Packages.stytra ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/q6hkah2i512isq1lriyxqqg36y0i3px3-python3.11-numba-0.59.1 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A python311Packages.numba https://github.com/r-ryantm/nixpkgs/archive/20c175f2594137c17ff2682edcccddc6906b099e.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/20c175f2594137c17ff2682edcccddc6906b099e#python311Packages.numba ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/q6hkah2i512isq1lriyxqqg36y0i3px3-python3.11-numba-0.59.1 ls -la /nix/store/q6hkah2i512isq1lriyxqqg36y0i3px3-python3.11-numba-0.59.1/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. nixpkgs-review took longer than 120m and timed out --- ###### Maintainer pings cc @FRidh for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298774 [result] Success updating python311Packages.numba 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.yorkr, using log file: /var/log/nixpkgs-update/rPackages.yorkr/2024-03-25.log rPackages.yorkr 0.0.41 -> 0.0.42 https://repology.org/project/r:yorkr/versions attrpath: rPackages.yorkr Checking auto update branch... No auto update branch exists Old version 0.0.41" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.yorkr 0.0.41 -> 0.0.42 https://repology.org/project/r:yorkr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath haskellPackages.lens-family-core, using log file: /var/log/nixpkgs-update/haskellPackages.lens-family-core/2024-03-25.log haskellPackages.lens-family-core 2.1.2 -> 2.1.3 https://repology.org/project/haskell:lens-family-core/versions attrpath: haskellPackages.lens-family-core Checking auto update branch... No auto update branch exists [outpaths] eval start [outpaths] eval end Derivation file says not to edit it [result] Failed to update haskellPackages.lens-family-core 2.1.2 -> 2.1.3 https://repology.org/project/haskell:lens-family-core/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath h2o, using log file: /var/log/nixpkgs-update/h2o/2024-03-25.log h2o 2.3.0-beta2 -> 2.3.0.d.20240314 https://repology.org/project/h2o/versions attrpath: h2o Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv building '/nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv'... trying https://github.com/h2o/h2o/archive/refs/tags/v2.3.0.d.20240314.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/h2o/h2o/archive/refs/tags/v2.3.0.d.20240314.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'h2o.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv /nix/store/xkqrpiz97nh2lb2r2pgh11wys4lz027l-h2o-2.3.0.d.20240314.drv building '/nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv'... trying https://github.com/h2o/h2o/archive/refs/tags/v2.3.0.d.20240314.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/h2o/h2o/archive/refs/tags/v2.3.0.d.20240314.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/8i25rgfpwyqd8dasa3i48lplfka9asf2-source.drv'. error: 1 dependencies of derivation '/nix/store/xkqrpiz97nh2lb2r2pgh11wys4lz027l-h2o-2.3.0.d.20240314.drv' failed to build [result] Failed to update h2o 2.3.0-beta2 -> 2.3.0.d.20240314 https://repology.org/project/h2o/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.abc_data, using log file: /var/log/nixpkgs-update/rPackages.abc_data/2024-03-25.log rPackages.abc_data 1.0 -> 1.1 https://repology.org/project/r:abc.data/versions attrpath: rPackages.abc_data Checking auto update branch... No auto update branch exists Old version 1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.abc_data 1.0 -> 1.1 https://repology.org/project/r:abc.data/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xedit, using log file: /var/log/nixpkgs-update/xedit/2024-03-25.log xedit 1.2.3 -> 1.2.4 https://repology.org/project/xedit/versions attrpath: xedit Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/editors/xedit/default.nix b/pkgs/applications/editors/xedit/default.nix index 679d64d6cca4..6fa4a67dfd6b 100644 --- a/pkgs/applications/editors/xedit/default.nix +++ b/pkgs/applications/editors/xedit/default.nix @@ -12,14 +12,14 @@ stdenv.mkDerivation rec { pname = "xedit"; - version = "1.2.3"; + version = "1.2.4"; src = fetchFromGitLab { domain = "gitlab.freedesktop.org"; owner = "xorg/app"; repo = "xedit"; rev = "${pname}-${version}"; - sha256 = "sha256-WF+4avzRRL0+OA3KxzK7JwmArkPu9fEl+728R6ouXmg="; + sha256 = "sha256-0vP+aR8QBXAqbULOLEs7QXsehk18BJ405qoelrcepwE="; }; # ./lisp/mathimp.c:493:10: error: implicitly declaring library function 'finite' with type 'int (double)' [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/c0y1agmn0yh4dgfv8475cpzfgia114nh-xedit-1.2.4" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://repology.org/project/xedit/versions. meta.description for xedit is: Simple graphical text editor using Athena Widgets (Xaw) meta.homepage for xedit is: https://gitlab.freedesktop.org/xorg/app/xedit ###### Updates performed - Version update ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.2.4 with grep in /nix/store/c0y1agmn0yh4dgfv8475cpzfgia114nh-xedit-1.2.4 - found 1.2.4 in filename of file in /nix/store/c0y1agmn0yh4dgfv8475cpzfgia114nh-xedit-1.2.4 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath xedit ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/c0y1agmn0yh4dgfv8475cpzfgia114nh-xedit-1.2.4 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A xedit https://github.com/r-ryantm/nixpkgs/archive/5ac0b126e8be4a25284855fe1c1d0ab2b30f9d77.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/5ac0b126e8be4a25284855fe1c1d0ab2b30f9d77#xedit ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/c0y1agmn0yh4dgfv8475cpzfgia114nh-xedit-1.2.4 ls -la /nix/store/c0y1agmn0yh4dgfv8475cpzfgia114nh-xedit-1.2.4/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
--- ###### Maintainer pings cc @SCOTT-HAMILTON for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298785 [result] Success updating xedit 1.2.3 -> 1.2.4 https://repology.org/project/xedit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rstudioapi, using log file: /var/log/nixpkgs-update/rPackages.rstudioapi/2024-03-25.log rPackages.rstudioapi 0.15.0 -> 0.16.0 https://repology.org/project/r:rstudioapi/versions attrpath: rPackages.rstudioapi Checking auto update branch... No auto update branch exists Old version 0.15.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rstudioapi 0.15.0 -> 0.16.0 https://repology.org/project/r:rstudioapi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.margins, using log file: /var/log/nixpkgs-update/rPackages.margins/2024-03-25.log rPackages.margins 0.3.26 -> 0.3.26.1 https://repology.org/project/r:margins/versions attrpath: rPackages.margins Checking auto update branch... No auto update branch exists Old version 0.3.26" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.margins 0.3.26 -> 0.3.26.1 https://repology.org/project/r:margins/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.GeDS, using log file: /var/log/nixpkgs-update/rPackages.GeDS/2024-03-25.log rPackages.GeDS 0.1.4 -> 0.2.0 https://repology.org/project/r:geds/versions attrpath: rPackages.GeDS Checking auto update branch... No auto update branch exists Old version 0.1.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.GeDS 0.1.4 -> 0.2.0 https://repology.org/project/r:geds/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.maxLik, using log file: /var/log/nixpkgs-update/rPackages.maxLik/2024-03-25.log rPackages.maxLik 1.5-2 -> 1.5-2.1 https://repology.org/project/r:maxlik/versions attrpath: rPackages.maxLik Checking auto update branch... No auto update branch exists Old version 1.5-2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.maxLik 1.5-2 -> 1.5-2.1 https://repology.org/project/r:maxlik/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath knossosnet, using log file: /var/log/nixpkgs-update/knossosnet/2024-03-25.log knossosnet 1.0.0 -> 1.1.0 https://github.com/KnossosNET/Knossos.NET/releases attrpath: knossosnet Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - knossosnet: 1.0.0 -> 1.1.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/298778" [result] Failed to update knossosnet 1.0.0 -> 1.1.0 https://github.com/KnossosNET/Knossos.NET/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bats, using log file: /var/log/nixpkgs-update/bats/2024-03-25.log bats 1.10.0 -> 1.11.0 https://repology.org/project/bats/versions attrpath: bats Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/interpreters/bats/default.nix b/pkgs/development/interpreters/bats/default.nix index 000c6045922c..9339b1170db7 100644 --- a/pkgs/development/interpreters/bats/default.nix +++ b/pkgs/development/interpreters/bats/default.nix @@ -22,13 +22,13 @@ resholve.mkDerivation rec { pname = "bats"; - version = "1.10.0"; + version = "1.11.0"; src = fetchFromGitHub { owner = "bats-core"; repo = "bats-core"; rev = "v${version}"; - sha256 = "sha256-gy4dyoKRlf2WFmH1/mSNwhVR3df92BgpT4TjTpV4FyQ="; + sha256 = "sha256-goHIhbBoCf1eb1N8xIHdVvAURofvLDgEDXofhDHrr7Y="; }; patchPhase = '' [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A bats nix build failed. got build log for 'bats' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/6rp0miz7qcwp13df520xgpxx621maxc8-bats-unresholved-1.11.0 source root is bats-unresholved-1.11.0 @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "installPhase" } Running phase: installPhase @nix { "action": "setPhase", "phase": "fixupPhase" } Running phase: fixupPhase [resholve context] : invoking resholve with PWD=/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0 [resholve context] RESHOLVE_LORE=/nix/store/2npp8ryp1z2jj8ijmg1pdqaq7r66zmym-more-binlore [resholve context] RESHOLVE_EXECER='cannot:/nix/store/2a0xwcw5k9bxxps7pwrbrgfba6an6a3l-parallel-20240222/bin/parallel cannot:/nix/store/a4bfm8yj8mki4vzcx0gxzd5zyjgskx34-flock-0.4.0/bin/flock cannot:libexec/bats-core/bats-preprocess cannot:libexec/bats-core/bats-exec-file cannot:libexec/bats-core/bats-exec-suite' [resholve context] RESHOLVE_FAKE='external:'\''greadlink'\'';'\''shlock'\'';'\''pkill'\''' [resholve context] RESHOLVE_FIX='$BATS_LIBEXEC:'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/libexec/bats-core'\'' $BATS_ROOT:'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0'\''' [resholve context] RESHOLVE_INPUTS=/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin:/nix/store/43dnc4h7x0p8ybaq38aaxkhy722kzrx2-coreutils-9.4/bin:/nix/store/nk45h8dy9zlx4d0b9ghf5xnj9pypyqgh-gnugrep-3.11/bin:/nix/store/1n8dg5f4435qm73m4b9m0479igx7iq7l-ncurses-6.4/bin:/nix/store/6xyv6b1l5zvzd23scbim221rxkcp8g9w-findutils-4.9.0/bin:/nix/store/j5l2c4kvs43php8sq0cm7984ml83g2yv-hostname-net-tools-2.10/bin:/nix/store/2a0xwcw5k9bxxps7pwrbrgfba6an6a3l-parallel-20240222/bin:/nix/store/a4bfm8yj8mki4vzcx0gxzd5zyjgskx34-flock-0.4.0/bin:lib/bats-core:libexec/bats-core:/nix/store/fpsyld4ha99sfv9d1z5z1y3fymjl08a4-procps-3.3.17/bin [resholve context] RESHOLVE_INTERPRETER=/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash [resholve context] RESHOLVE_KEEP='$BATS_LINE_REFERENCE_FORMAT $BATS_LOCKING_IMPLEMENTATION $BATS_TEST_NAME $interpolated_formatter $interpolated_report_formatter $parallel_binary_name $pre_command /nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/libexec/bats-core/bats /nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/libexec/bats-core/bats-exec-test source:'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/validator.bash'\'';'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/preprocessing.bash'\'';'\''$BATS_TEST_SOURCE'\'';'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/tracing.bash'\'';'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/test_functions.bash'\'';'\''$library_load_path'\'';'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/common.bash'\'';'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/semaphore.bash'\'';'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/formatter.bash'\'';'\''/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/lib/bats-core/warnings.bash'\'';'\''$setup_suite_file'\''' [resholve context] /nix/store/l7yc3i2vrnppxg83gckwv0pqn6ax4p2k-resholve-0.9.1/bin/resholve --overwrite bin/bats libexec/bats-core/bats libexec/bats-core/bats-exec-file libexec/bats-core/bats-exec-suite libexec/bats-core/bats-exec-test libexec/bats-core/bats-format-cat libexec/bats-core/bats-format-junit libexec/bats-core/bats-format-pretty libexec/bats-core/bats-format-tap libexec/bats-core/bats-format-tap13 libexec/bats-core/bats-gather-tests libexec/bats-core/bats-preprocess lib/bats-core/common.bash lib/bats-core/formatter.bash lib/bats-core/preprocessing.bash lib/bats-core/semaphore.bash lib/bats-core/test_functions.bash lib/bats-core/tracing.bash lib/bats-core/validator.bash lib/bats-core/warnings.bash source "/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/$BATS_LIBDIR/bats-core/validator.bash" ^ '/nix/store/886bcjl3jlaghxph1k188y0fdbgnjp7h-bats-1.11.0/libexec/bats-core/bats':489: Can't resolve dynamic argument in 'source' /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 131: pop_var_context: head of shell_variables not a function context [result] Failed to update bats 1.10.0 -> 1.11.0 https://repology.org/project/bats/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath emacs, using log file: /var/log/nixpkgs-update/emacs/2024-03-25.log emacs 29.2 -> 29.3 https://repology.org/project/emacs/versions attrpath: emacs Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - emacs: 29.2 -> 29.3 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/298664" [result] Failed to update emacs 29.2 -> 29.3 https://repology.org/project/emacs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hyprlandPlugins.hy3, using log file: /var/log/nixpkgs-update/hyprlandPlugins.hy3/2024-03-25.log hyprlandPlugins.hy3 0.36.0 -> 0.37.1 https://repology.org/project/hy3/versions attrpath: hyprlandPlugins.hy3 Checking auto update branch... No auto update branch exists Old version 0.36.0" not present in master derivation file with contents: { lib , callPackage , pkg-config , stdenv , hyprland }: let mkHyprlandPlugin = hyprland: args@{ pluginName, ... }: stdenv.mkDerivation (args // { pname = "${pluginName}"; nativeBuildInputs = [ pkg-config ] ++ args.nativeBuildInputs or [ ]; buildInputs = [ hyprland ] ++ hyprland.buildInputs ++ (args.buildInputs or [ ]); meta = args.meta // { description = args.meta.description or ""; longDescription = (args.meta.longDescription or "") + "\n\nPlugins can be installed via a plugin entry in the Hyprland NixOS or Home Manager options."; }; }); plugins = { hy3 = { fetchFromGitHub, cmake, hyprland }: mkHyprlandPlugin hyprland { pluginName = "hy3"; version = "0.36.0-unstable-2024-03-06"; src = fetchFromGitHub { owner = "outfoxxed"; repo = "hy3"; rev = "a392bfd13caf865ccf6b9df6917b67cc3a054b82"; hash = "sha256-QuapQR9DJI9+vt7xqULYIXx2QCCX1I/YB50c+7ReexU="; }; nativeBuildInputs = [ cmake ]; dontStrip = true; meta = with lib; { homepage = "https://github.com/outfoxxed/hy3"; description = "Hyprland plugin for an i3 / sway like manual tiling layout"; license = licenses.gpl3; platforms = platforms.linux; maintainers = [ maintainers.aacebedo ]; }; }; }; in (lib.mapAttrs (name: plugin: callPackage plugin { }) plugins) // { inherit mkHyprlandPlugin; } [result] Failed to update hyprlandPlugins.hy3 0.36.0 -> 0.37.1 https://repology.org/project/hy3/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath diswall, using log file: /var/log/nixpkgs-update/diswall/2024-03-25.log diswall 0.5.1 -> 0.5.2 https://github.com/dis-works/diswall-rs/releases attrpath: diswall Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] Replacing cargoHash with sha256-KA2hwaEhY2G+H4+xVgin6xhmRfnGcJBBWj9xWtD0h9I= [rustCrateVersion] Finished updating Crate version and replacing hashes [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/networking/diswall/default.nix b/pkgs/applications/networking/diswall/default.nix index 703b6c7456fa..6afe93fee471 100644 --- a/pkgs/applications/networking/diswall/default.nix +++ b/pkgs/applications/networking/diswall/default.nix @@ -5,20 +5,20 @@ let in rustPlatform.buildRustPackage rec { pname = "diswall"; - version = "0.5.1"; + version = "0.5.2"; src = fetchFromGitHub { owner = "dis-works"; repo = "diswall-rs"; rev = "v${version}"; - sha256 = "sha256-6XMw8fnuM1KyInYCw8DTonsj5gV9d+EuYfO5ggZ3YUU="; + sha256 = "sha256-HoIkozwRV0xz14mOTM4BXDzPShRAp8a3quhvtWwnQ2I="; }; buildInputs = lib.optionals stdenv.isDarwin [ Security ]; - cargoHash = "sha256-So7XBC66y2SKbcjErg4Tnd/NcEpX5zYOEr60RvU9OOU="; + cargoHash = "sha256-KA2hwaEhY2G+H4+xVgin6xhmRfnGcJBBWj9xWtD0h9I="; doCheck = false; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/wigdlb5bl7fycv73brhwx04c8951yjq9-diswall-0.5.2" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/dis-works/diswall-rs/releases. meta.description for diswall is: Distributed firewall meta.homepage for diswall is: https://www.diswall.stream ###### Updates performed - Rust version update ###### To inspect upstream changes - [Release on GitHub](https://github.com/dis-works/diswall-rs/releases/tag/v0.5.2) - [Compare changes on GitHub](https://github.com/dis-works/diswall-rs/compare/v0.5.1...v0.5.2) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.5.2 with grep in /nix/store/wigdlb5bl7fycv73brhwx04c8951yjq9-diswall-0.5.2 - found 0.5.2 in filename of file in /nix/store/wigdlb5bl7fycv73brhwx04c8951yjq9-diswall-0.5.2 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath diswall ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/wigdlb5bl7fycv73brhwx04c8951yjq9-diswall-0.5.2 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A diswall https://github.com/r-ryantm/nixpkgs/archive/d4ac12d5c20c73cc169de663ec8c2f642dcba9c9.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/d4ac12d5c20c73cc169de663ec8c2f642dcba9c9#diswall ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/wigdlb5bl7fycv73brhwx04c8951yjq9-diswall-0.5.2 ls -la /nix/store/wigdlb5bl7fycv73brhwx04c8951yjq9-diswall-0.5.2/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
--- ###### Maintainer pings cc @Izorkin for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298792 [result] Success updating diswall 0.5.1 -> 0.5.2 https://github.com/dis-works/diswall-rs/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pgbackrest, using log file: /var/log/nixpkgs-update/pgbackrest/2024-03-25.log pgbackrest 2.50 -> 2.51 https://github.com/pgbackrest/pgbackrest/releases attrpath: pgbackrest Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/tools/backup/pgbackrest/default.nix b/pkgs/tools/backup/pgbackrest/default.nix index a2c727332554..6450840668f3 100644 --- a/pkgs/tools/backup/pgbackrest/default.nix +++ b/pkgs/tools/backup/pgbackrest/default.nix @@ -13,13 +13,13 @@ }: stdenv.mkDerivation rec { pname = "pgbackrest"; - version = "2.50"; + version = "2.51"; src = fetchFromGitHub { owner = "pgbackrest"; repo = "pgbackrest"; rev = "release/${version}"; - sha256 = "sha256-RjkTg80LAUndSVfTrol9hvgNOG6PMC+OkMVjdtjpdbI="; + sha256 = "sha256-o6UROI+t35lHSFeRMLh0nIkmLMdcclpkKNzjkw/z56Q="; }; nativeBuildInputs = [ pkg-config ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/a9p9dp8rzv52aj381zklawsl2rfr4wbx-pgbackrest-2.51" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/pgbackrest/pgbackrest/releases. meta.description for pgbackrest is: Reliable PostgreSQL backup & restore meta.homepage for pgbackrest is: https://pgbackrest.org/ meta.changelog for pgbackrest is: https://github.com/pgbackrest/pgbackrest/releases ###### Updates performed - Version update ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 2.51 with grep in /nix/store/a9p9dp8rzv52aj381zklawsl2rfr4wbx-pgbackrest-2.51 - found 2.51 in filename of file in /nix/store/a9p9dp8rzv52aj381zklawsl2rfr4wbx-pgbackrest-2.51 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath pgbackrest ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/a9p9dp8rzv52aj381zklawsl2rfr4wbx-pgbackrest-2.51 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A pgbackrest https://github.com/r-ryantm/nixpkgs/archive/4d45074ba3f0619189491908a91a69353a193b03.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/4d45074ba3f0619189491908a91a69353a193b03#pgbackrest ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/a9p9dp8rzv52aj381zklawsl2rfr4wbx-pgbackrest-2.51 ls -la /nix/store/a9p9dp8rzv52aj381zklawsl2rfr4wbx-pgbackrest-2.51/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
--- ###### Maintainer pings cc @zaninime for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298797 [result] Success updating pgbackrest 2.50 -> 2.51 https://github.com/pgbackrest/pgbackrest/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pict-rs, using log file: /var/log/nixpkgs-update/pict-rs/2024-03-25.log pict-rs 0.5.9 -> 0.5.10 https://repology.org/project/pict-rs/versions attrpath: pict-rs Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] Replacing cargoHash with sha256-T8L6geDOF8qBZYABtJX+MBhwYFyZwT7PCMigk0vuuDc= [rustCrateVersion] Finished updating Crate version and replacing hashes [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/servers/web-apps/pict-rs/default.nix b/pkgs/servers/web-apps/pict-rs/default.nix index fdd975e3682c..9d710b6f7895 100644 --- a/pkgs/servers/web-apps/pict-rs/default.nix +++ b/pkgs/servers/web-apps/pict-rs/default.nix @@ -13,17 +13,17 @@ rustPlatform.buildRustPackage rec { pname = "pict-rs"; - version = "0.5.9"; + version = "0.5.10"; src = fetchFromGitea { domain = "git.asonix.dog"; owner = "asonix"; repo = pname; rev = "v${version}"; - sha256 = "sha256-ZRT382ClImnlwvWyA1w7ZIIF4PXr3rWmeIsqJYngkfM="; + sha256 = "sha256-SxGgj4yRtMcRKIQMVhRaeK2NudU581RDYLmAecWyxak="; }; - cargoHash = "sha256-FTb8VoQJFS55CKlQvoWkBQEBUCvUnFaUAxIW22zEIHI="; + cargoHash = "sha256-T8L6geDOF8qBZYABtJX+MBhwYFyZwT7PCMigk0vuuDc="; # needed for internal protobuf c wrapper library PROTOC = "${protobuf}/bin/protoc"; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/frjmxf6zbn97xi3jc4z5bmkwg2ljxckd-pict-rs-0.5.10" Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://repology.org/project/pict-rs/versions. meta.description for pict-rs is: A simple image hosting service meta.homepage for pict-rs is: https://git.asonix.dog/asonix/pict-rs ###### Updates performed - Rust version update ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.5.10 with grep in /nix/store/frjmxf6zbn97xi3jc4z5bmkwg2ljxckd-pict-rs-0.5.10 - found 0.5.10 in filename of file in /nix/store/frjmxf6zbn97xi3jc4z5bmkwg2ljxckd-pict-rs-0.5.10 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath pict-rs ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/frjmxf6zbn97xi3jc4z5bmkwg2ljxckd-pict-rs-0.5.10 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A pict-rs https://github.com/r-ryantm/nixpkgs/archive/5d820591e93462fe2d12d579997bfb7934d5d01d.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/5d820591e93462fe2d12d579997bfb7934d5d01d#pict-rs ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/frjmxf6zbn97xi3jc4z5bmkwg2ljxckd-pict-rs-0.5.10 ls -la /nix/store/frjmxf6zbn97xi3jc4z5bmkwg2ljxckd-pict-rs-0.5.10/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
--- ###### Maintainer pings cc @happysalada for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298810 [result] Success updating pict-rs 0.5.9 -> 0.5.10 https://repology.org/project/pict-rs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.lupa, using log file: /var/log/nixpkgs-update/python312Packages.lupa/2024-03-25.log python312Packages.lupa 2.0 -> 2.1-2 https://github.com/scoder/lupa/releases attrpath: python312Packages.lupa Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6xfs9xhwc258zpxr9y9xjf6y39l5j2z7-packages.json.drv building '/nix/store/6xfs9xhwc258zpxr9y9xjf6y39l5j2z7-packages.json.drv'... Going to be running update for following packages: - python3.12-lupa-2.0 Press Enter key to continue... Running update for: - python3.12-lupa-2.0: UPDATING ... - python3.12-lupa-2.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/lupa/default.nix b/pkgs/development/python-modules/lupa/default.nix index b2123b92eb1f..d1e8f14e46b3 100644 --- a/pkgs/development/python-modules/lupa/default.nix +++ b/pkgs/development/python-modules/lupa/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "lupa"; - version = "2.0"; + version = "2.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-rT/vSGvnrd3TSf6anDk3iQYTEs+Y68UztIm+NPSEy3k="; + hash = "sha256-dgAwcS1SczlvXpY92HMa77WsZdku/4v4/UEkwWMP6VA="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python312Packages.lupa nix build failed. File "setup.py", line 493, in setup( File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/setuptools/__init__.py", line 102, in setup _install_setup_requires(attrs) File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/setuptools/__init__.py", line 75, in _install_setup_requires _fetch_build_eggs(dist) File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/setuptools/__init__.py", line 80, in _fetch_build_eggs dist.fetch_build_eggs(dist.setup_requires) File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/setuptools/dist.py", line 636, in fetch_build_eggs return _fetch_build_eggs(self, requires) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/setuptools/installer.py", line 38, in _fetch_build_eggs resolved_dists = pkg_resources.working_set.resolve( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/pkg_resources/__init__.py", line 813, in resolve dist = self._resolve_dist( ^^^^^^^^^^^^^^^^^^^ File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/pkg_resources/__init__.py", line 849, in _resolve_dist dist = best[req.key] = env.best_match( ^^^^^^^^^^^^^^^ File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/pkg_resources/__init__.py", line 1119, in best_match return self.obtain(req, installer) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/pkg_resources/__init__.py", line 1130, in obtain return installer(requirement) if installer else None ^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/1jlypmh5hcjab20slmk5rhg7r21v5f92-python3.12-setuptools-69.1.1/lib/python3.12/site-packages/setuptools/installer.py", line 103, in _fetch_build_egg_no_warn raise DistutilsError(str(e)) from e distutils.errors.DistutilsError: Command '['/nix/store/7yh2ax34jd7fgf17mjfd3c6niw1h2hsj-python3-3.12.2/bin/python3.12', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', '/build/tmpaga9c77b', '--quiet', 'Cython>=3.0.9']' returned non-zero exit status 1. /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1578: pop_var_context: head of shell_variables not a function context [result] Failed to update python312Packages.lupa 2.0 -> 2.1-2 https://github.com/scoder/lupa/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.nix-kernel, using log file: /var/log/nixpkgs-update/python311Packages.nix-kernel/2024-03-25.log python311Packages.nix-kernel 0 -> 1 attrpath: python311Packages.nix-kernel Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fjmdlxcisymnmwh4kwhfwn40pf40ra6l-packages.json.drv building '/nix/store/fjmdlxcisymnmwh4kwhfwn40pf40ra6l-packages.json.drv'... Going to be running update for following packages: - python3.11-nix-kernel-unstable-2020-04-26 Press Enter key to continue... Running update for: - python3.11-nix-kernel-unstable-2020-04-26: UPDATING ... - python3.11-nix-kernel-unstable-2020-04-26: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nix-kernel 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gotify-server, using log file: /var/log/nixpkgs-update/gotify-server/2024-03-25.log gotify-server 0 -> 1 attrpath: gotify-server Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] skipping because derivation has updateScript [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/kyznghzlcwrr052kyll6498gs7pqngzz-packages.json.drv building '/nix/store/kyznghzlcwrr052kyll6498gs7pqngzz-packages.json.drv'... Going to be running update for following packages: - gotify-server-2.4.0 Press Enter key to continue... Running update for: - gotify-server-2.4.0: UPDATING ... - gotify-server-2.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update gotify-server 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath spacenavd, using log file: /var/log/nixpkgs-update/spacenavd/2024-03-25.log spacenavd 0.8 -> 1.2 https://repology.org/project/spacenavd/versions attrpath: spacenavd Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update spacenavd 0.8 -> 1.2 https://repology.org/project/spacenavd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.ROPGadget, using log file: /var/log/nixpkgs-update/python311Packages.ROPGadget/2024-03-25.log python311Packages.ROPGadget 0 -> 1 attrpath: python311Packages.ROPGadget Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/wq53jzmggmkanprj33lqj2g0h0i6wjj3-packages.json.drv building '/nix/store/wq53jzmggmkanprj33lqj2g0h0i6wjj3-packages.json.drv'... Going to be running update for following packages: - python3.11-ropgadget-7.4 Press Enter key to continue... Running update for: - python3.11-ropgadget-7.4: UPDATING ... - python3.11-ropgadget-7.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ROPGadget 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.py-nightscout, using log file: /var/log/nixpkgs-update/python311Packages.py-nightscout/2024-03-25.log python311Packages.py-nightscout 0 -> 1 attrpath: python311Packages.py-nightscout Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/cc2vbzr1yb5ms96q8k48ylnqm9p2k1j6-packages.json.drv building '/nix/store/cc2vbzr1yb5ms96q8k48ylnqm9p2k1j6-packages.json.drv'... Going to be running update for following packages: - python3.11-py-nightscout-1.3.3 Press Enter key to continue... Running update for: - python3.11-py-nightscout-1.3.3: UPDATING ... - python3.11-py-nightscout-1.3.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.py-nightscout 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lnx, using log file: /var/log/nixpkgs-update/lnx/2024-03-25.log lnx unstable-2022-06-25 -> 0.9.0-master https://github.com/lnx-search/lnx/releases attrpath: lnx Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update lnx unstable-2022-06-25 -> 0.9.0-master https://github.com/lnx-search/lnx/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libaom, using log file: /var/log/nixpkgs-update/libaom/2024-03-25.log libaom 0 -> 1 attrpath: libaom Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/nhiymijkcxb4cwqvmfbk1ma50ggr53xi-packages.json.drv building '/nix/store/nhiymijkcxb4cwqvmfbk1ma50ggr53xi-packages.json.drv'... Going to be running update for following packages: - libaom-3.8.1 Press Enter key to continue... Running update for: - libaom-3.8.1: UPDATING ... - libaom-3.8.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/libraries/libaom/default.nix b/pkgs/development/libraries/libaom/default.nix index a808b62c3a3b..ffac6412ef95 100644 --- a/pkgs/development/libraries/libaom/default.nix +++ b/pkgs/development/libraries/libaom/default.nix @@ -8,11 +8,11 @@ let in stdenv.mkDerivation rec { pname = "libaom"; - version = "3.8.1"; + version = "3.8.2"; src = fetchzip { url = "https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz"; - hash = "sha256-qng9fEbm71HqPnPzfgqswSium9egIgpB6ZLesOQVg6c="; + hash = "sha256-x152jIe7QxeprFEFJnXBfou8yHuW0oHImLIVkSxByWw="; stripRoot = false; }; No auto update branch exists Old version 3.8.1" not present in staging derivation file with contents: { lib, stdenv, fetchzip, yasm, perl, cmake, pkg-config, python3 , enableVmaf ? true, libvmaf , gitUpdater }: let isCross = stdenv.buildPlatform != stdenv.hostPlatform; in stdenv.mkDerivation rec { pname = "libaom"; version = "3.8.2"; src = fetchzip { url = "https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz"; hash = "sha256-x152jIe7QxeprFEFJnXBfou8yHuW0oHImLIVkSxByWw="; stripRoot = false; }; patches = [ ./outputs.patch ]; nativeBuildInputs = [ yasm perl cmake pkg-config python3 ]; propagatedBuildInputs = lib.optional enableVmaf libvmaf; preConfigure = '' # build uses `git describe` to set the build version cat > $NIX_BUILD_TOP/git << "EOF" #!${stdenv.shell} echo v${version} EOF chmod +x $NIX_BUILD_TOP/git export PATH=$NIX_BUILD_TOP:$PATH ''; # Configuration options: # https://aomedia.googlesource.com/aom/+/refs/heads/master/build/cmake/aom_config_defaults.cmake cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" "-DENABLE_TESTS=OFF" ] ++ lib.optionals enableVmaf [ "-DCONFIG_TUNE_VMAF=1" ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ # CPU detection isn't supported on Darwin and breaks the aarch64-darwin build: "-DCONFIG_RUNTIME_CPU_DETECT=0" ] ++ lib.optionals (isCross && !stdenv.hostPlatform.isx86) [ "-DCMAKE_ASM_COMPILER=${stdenv.cc.targetPrefix}as" ] ++ lib.optionals stdenv.isAarch32 [ # armv7l-hf-multiplatform does not support NEON # see lib/systems/platform.nix "-DENABLE_NEON=0" ]; postFixup = '' moveToOutput lib/libaom.a "$static" '' + lib.optionalString stdenv.hostPlatform.isStatic '' ln -s $static $out ''; outputs = [ "out" "bin" "dev" "static" ]; passthru = { updateScript = gitUpdater { url = "https://aomedia.googlesource.com/aom"; rev-prefix = "v"; ignoredVersions = "(alpha|beta|rc).*"; }; }; meta = with lib; { description = "Alliance for Open Media AV1 codec library"; longDescription = '' Libaom is the reference implementation of the AV1 codec from the Alliance for Open Media. It contains an AV1 library as well as applications like an encoder (aomenc) and a decoder (aomdec). ''; homepage = "https://aomedia.org/av1-features/get-started/"; changelog = "https://aomedia.googlesource.com/aom/+/refs/tags/v${version}/CHANGELOG"; maintainers = with maintainers; [ primeos kiloreux dandellion ]; platforms = platforms.all; outputsToInstall = [ "bin" ]; license = licenses.bsd2; }; } [result] Failed to update libaom 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnome-recipes, using log file: /var/log/nixpkgs-update/gnome-recipes/2024-03-25.log gnome-recipes 0 -> 1 attrpath: gnome-recipes Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome-recipes 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.mrsqm, using log file: /var/log/nixpkgs-update/python311Packages.mrsqm/2024-03-25.log python311Packages.mrsqm 0 -> 1 attrpath: python311Packages.mrsqm Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/jvzl7y958w54val3mlb4n88szs65y0pg-packages.json.drv building '/nix/store/jvzl7y958w54val3mlb4n88szs65y0pg-packages.json.drv'... Going to be running update for following packages: - python3.11-mrsqm-0.0.7 Press Enter key to continue... Running update for: - python3.11-mrsqm-0.0.7: UPDATING ... - python3.11-mrsqm-0.0.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mrsqm 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.xstatic-asciinema-player, using log file: /var/log/nixpkgs-update/python311Packages.xstatic-asciinema-player/2024-03-25.log python311Packages.xstatic-asciinema-player 0 -> 1 attrpath: python311Packages.xstatic-asciinema-player Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/cqqgsahp234dfla7x4n352s9k30d8ddq-packages.json.drv building '/nix/store/cqqgsahp234dfla7x4n352s9k30d8ddq-packages.json.drv'... Going to be running update for following packages: - python3.11-xstatic-asciinema-player-2.6.1.1 Press Enter key to continue... Running update for: - python3.11-xstatic-asciinema-player-2.6.1.1: UPDATING ... - python3.11-xstatic-asciinema-player-2.6.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.xstatic-asciinema-player 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO @volth asked to not update xfce [result] Failed to update xfce.xfce4-dev-tools 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pkginfo, using log file: /var/log/nixpkgs-update/python311Packages.pkginfo/2024-03-25.log python311Packages.pkginfo 0 -> 1 attrpath: python311Packages.pkginfo Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/mlfj5r5b6q1jwnqpww2zc5rrbbw5q6lg-packages.json.drv building '/nix/store/mlfj5r5b6q1jwnqpww2zc5rrbbw5q6lg-packages.json.drv'... Going to be running update for following packages: - python3.11-pkginfo-1.10.0 Press Enter key to continue... Running update for: - python3.11-pkginfo-1.10.0: UPDATING ... - python3.11-pkginfo-1.10.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pkginfo 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.dissect-eventlog, using log file: /var/log/nixpkgs-update/python311Packages.dissect-eventlog/2024-03-25.log python311Packages.dissect-eventlog 0 -> 1 attrpath: python311Packages.dissect-eventlog Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6mcfxs7zivngw7hpfv33ggx5xcszby1j-packages.json.drv building '/nix/store/6mcfxs7zivngw7hpfv33ggx5xcszby1j-packages.json.drv'... Going to be running update for following packages: - python3.11-dissect-eventlog-3.7 Press Enter key to continue... Running update for: - python3.11-dissect-eventlog-3.7: UPDATING ... - python3.11-dissect-eventlog-3.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dissect-eventlog 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.xiaomi-ble, using log file: /var/log/nixpkgs-update/python312Packages.xiaomi-ble/2024-03-25.log python312Packages.xiaomi-ble 0.27.1 -> 0.28.0 https://github.com/Bluetooth-Devices/xiaomi-ble/releases attrpath: python312Packages.xiaomi-ble Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/x41qq549khg3wpsaarpp7yik4dhc9f9l-packages.json.drv building '/nix/store/x41qq549khg3wpsaarpp7yik4dhc9f9l-packages.json.drv'... Going to be running update for following packages: - python3.12-xiaomi-ble-0.27.1 Press Enter key to continue... Running update for: - python3.12-xiaomi-ble-0.27.1: UPDATING ... - python3.12-xiaomi-ble-0.27.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/xiaomi-ble/default.nix b/pkgs/development/python-modules/xiaomi-ble/default.nix index 548609caaaa2..68b61443f16e 100644 --- a/pkgs/development/python-modules/xiaomi-ble/default.nix +++ b/pkgs/development/python-modules/xiaomi-ble/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "xiaomi-ble"; - version = "0.27.1"; + version = "0.28.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = "xiaomi-ble"; rev = "refs/tags/v${version}"; - hash = "sha256-/LOq35YrGacXXP1Izl9xoF5rrCQGONPGj/u2zGOqbt0="; + hash = "sha256-Va/fzGDjBR/h1lUN47AixZnDYzEPNXQKTVXILKayhBc="; }; postPatch = '' No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/w7dz55ybjmmp5k30sr42nd8wcl5snixa-python3.12-xiaomi-ble-0.28.0" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
5 packages built:
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for python312Packages.xiaomi-ble is: Library for Xiaomi BLE devices meta.homepage for python312Packages.xiaomi-ble is: https://github.com/Bluetooth-Devices/xiaomi-ble meta.changelog for python312Packages.xiaomi-ble is: https://github.com/Bluetooth-Devices/xiaomi-ble/releases/tag/v0.28.0 ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.28.0 with grep in /nix/store/w7dz55ybjmmp5k30sr42nd8wcl5snixa-python3.12-xiaomi-ble-0.28.0 - found 0.28.0 in filename of file in /nix/store/w7dz55ybjmmp5k30sr42nd8wcl5snixa-python3.12-xiaomi-ble-0.28.0 ---
Rebuild report (if merged into master) (click to expand) ``` 3 total rebuild path(s) 3 package rebuild(s) First fifty rebuilds by attrpath home-assistant-component-tests.xiaomi_ble python311Packages.xiaomi-ble python312Packages.xiaomi-ble ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/w7dz55ybjmmp5k30sr42nd8wcl5snixa-python3.12-xiaomi-ble-0.28.0 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A python312Packages.xiaomi-ble https://github.com/r-ryantm/nixpkgs/archive/5c17f1cc3e91205a7ce37754c3f5dabf6136b001.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/5c17f1cc3e91205a7ce37754c3f5dabf6136b001#python312Packages.xiaomi-ble ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/w7dz55ybjmmp5k30sr42nd8wcl5snixa-python3.12-xiaomi-ble-0.28.0 ls -la /nix/store/w7dz55ybjmmp5k30sr42nd8wcl5snixa-python3.12-xiaomi-ble-0.28.0/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
5 packages built:
--- ###### Maintainer pings cc @fabaff for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298817 [result] Success updating python312Packages.xiaomi-ble 0.27.1 -> 0.28.0 https://github.com/Bluetooth-Devices/xiaomi-ble/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath tidal-hifi, using log file: /var/log/nixpkgs-update/tidal-hifi/2024-03-25.log tidal-hifi 5.9.0 -> 5.10.0 https://github.com/Mastermindzh/tidal-hifi/releases attrpath: tidal-hifi Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/audio/tidal-hifi/default.nix b/pkgs/applications/audio/tidal-hifi/default.nix index bb3986dd88aa..d9d14b9670db 100644 --- a/pkgs/applications/audio/tidal-hifi/default.nix +++ b/pkgs/applications/audio/tidal-hifi/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "tidal-hifi"; - version = "5.9.0"; + version = "5.10.0"; src = fetchurl { url = "https://github.com/Mastermindzh/tidal-hifi/releases/download/${finalAttrs.version}/tidal-hifi_${finalAttrs.version}_amd64.deb"; - sha256 = "sha256-t79GNCqY99JfCT+4wO3CTtLXFdKQudMw4pZNiJzOufo="; + sha256 = "sha256-+sRXpRAtbLpQlyJUhbc1Cuzh6aV8HRvYH/ja9sfvKoA="; }; nativeBuildInputs = [ autoPatchelfHook dpkg makeWrapper ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/8f4vxdfsa7a471w7g5sl2hmqqgm6avyj-tidal-hifi-5.10.0" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/Mastermindzh/tidal-hifi/releases. meta.description for tidal-hifi is: The web version of Tidal running in electron with hifi support thanks to widevine meta.homepage for tidal-hifi is: https://github.com/Mastermindzh/tidal-hifi meta.changelog for tidal-hifi is: https://github.com/Mastermindzh/tidal-hifi/releases/tag/5.10.0 ###### Updates performed - Version update ###### To inspect upstream changes - [Release on GitHub](https://github.com/Mastermindzh/tidal-hifi/releases/tag/5.10.0) - [Compare changes on GitHub](https://github.com/Mastermindzh/tidal-hifi/compare/5.9.0...5.10.0) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 5.10.0 with grep in /nix/store/8f4vxdfsa7a471w7g5sl2hmqqgm6avyj-tidal-hifi-5.10.0 - found 5.10.0 in filename of file in /nix/store/8f4vxdfsa7a471w7g5sl2hmqqgm6avyj-tidal-hifi-5.10.0 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath tidal-hifi ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/8f4vxdfsa7a471w7g5sl2hmqqgm6avyj-tidal-hifi-5.10.0 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A tidal-hifi https://github.com/r-ryantm/nixpkgs/archive/c6a12be6eaad485990e8f77fc3d4c7a375579c39.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/c6a12be6eaad485990e8f77fc3d4c7a375579c39#tidal-hifi ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/8f4vxdfsa7a471w7g5sl2hmqqgm6avyj-tidal-hifi-5.10.0 ls -la /nix/store/8f4vxdfsa7a471w7g5sl2hmqqgm6avyj-tidal-hifi-5.10.0/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
--- ###### Maintainer pings cc @qbit @spikespaz for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298821 [result] Success updating tidal-hifi 5.9.0 -> 5.10.0 https://github.com/Mastermindzh/tidal-hifi/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.tailscale, using log file: /var/log/nixpkgs-update/python311Packages.tailscale/2024-03-25.log python311Packages.tailscale 0 -> 1 attrpath: python311Packages.tailscale Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/zkklbrm4fdlvpyqvmvnwzc83d6z2lhp0-packages.json.drv building '/nix/store/zkklbrm4fdlvpyqvmvnwzc83d6z2lhp0-packages.json.drv'... Going to be running update for following packages: - python3.11-tailscale-0.6.0 Press Enter key to continue... Running update for: - python3.11-tailscale-0.6.0: UPDATING ... - python3.11-tailscale-0.6.0: ERROR --- SHOWING ERROR LOG FOR python3.11-tailscale-0.6.0 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/frenck/python-tailscale/tarball/v0.6.0']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/frenck/python-tailscale/tarball/refs/tags/v0.6.0']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-tailscale-0.6.0 ---------------------- The update script for python3.11-tailscale-0.6.0 failed with exit code 1 [result] Failed to update python311Packages.tailscale 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.djangorestframework-simplejwt, using log file: /var/log/nixpkgs-update/python311Packages.djangorestframework-simplejwt/2024-03-25.log python311Packages.djangorestframework-simplejwt 0 -> 1 attrpath: python311Packages.djangorestframework-simplejwt Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ij18b3k004akrpgxlnk9y9iaz1990d9y-packages.json.drv building '/nix/store/ij18b3k004akrpgxlnk9y9iaz1990d9y-packages.json.drv'... Going to be running update for following packages: - python3.11-djangorestframework-simplejwt-5.3.1 Press Enter key to continue... Running update for: - python3.11-djangorestframework-simplejwt-5.3.1: UPDATING ... - python3.11-djangorestframework-simplejwt-5.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.djangorestframework-simplejwt 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath manuskript, using log file: /var/log/nixpkgs-update/manuskript/2024-03-25.log manuskript 0 -> 1 attrpath: manuskript Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/jr3fy4r74rdrq2vapq87s43v10hhkj73-packages.json.drv building '/nix/store/jr3fy4r74rdrq2vapq87s43v10hhkj73-packages.json.drv'... Going to be running update for following packages: - manuskript-0.16.1 Press Enter key to continue... Running update for: - manuskript-0.16.1: UPDATING ... - manuskript-0.16.1: ERROR --- SHOWING ERROR LOG FOR manuskript-0.16.1 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/olivierkes/manuskript/tarball/0.16.1']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/olivierkes/manuskript/tarball/refs/tags/0.16.1']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR manuskript-0.16.1 ---------------------- The update script for manuskript-0.16.1 failed with exit code 1 [result] Failed to update manuskript 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.lightgbm, using log file: /var/log/nixpkgs-update/python311Packages.lightgbm/2024-03-25.log python311Packages.lightgbm 0 -> 1 attrpath: python311Packages.lightgbm Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2ilnb3h3255h8zpvryprpqj3n5nknbkq-packages.json.drv building '/nix/store/2ilnb3h3255h8zpvryprpqj3n5nknbkq-packages.json.drv'... Going to be running update for following packages: - python3.11-lightgbm-4.3.0 Press Enter key to continue... Running update for: - python3.11-lightgbm-4.3.0: UPDATING ... - python3.11-lightgbm-4.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.lightgbm 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.uharfbuzz, using log file: /var/log/nixpkgs-update/python311Packages.uharfbuzz/2024-03-25.log python311Packages.uharfbuzz 0 -> 1 attrpath: python311Packages.uharfbuzz Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/0ps9gnvgl7agn3fia49vj09gfj6sdwc6-packages.json.drv building '/nix/store/0ps9gnvgl7agn3fia49vj09gfj6sdwc6-packages.json.drv'... Going to be running update for following packages: - python3.11-uharfbuzz-0.39.0 Press Enter key to continue... Running update for: - python3.11-uharfbuzz-0.39.0: UPDATING ... - python3.11-uharfbuzz-0.39.0: ERROR --- SHOWING ERROR LOG FOR python3.11-uharfbuzz-0.39.0 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 294, in _get_latest_version_github response = subprocess.check_output(cmd) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 548, in run with Popen(*popenargs, **kwargs) as process: ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 1026, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 1953, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'nix-prefetch-git' --- SHOWING ERROR LOG FOR python3.11-uharfbuzz-0.39.0 ---------------------- The update script for python3.11-uharfbuzz-0.39.0 failed with exit code 1 [result] Failed to update python311Packages.uharfbuzz 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.requestsexceptions, using log file: /var/log/nixpkgs-update/python311Packages.requestsexceptions/2024-03-25.log python311Packages.requestsexceptions 0 -> 1 attrpath: python311Packages.requestsexceptions Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2f2vjc3cgc52gsbfvwghi1369fdqpp9x-packages.json.drv building '/nix/store/2f2vjc3cgc52gsbfvwghi1369fdqpp9x-packages.json.drv'... Going to be running update for following packages: - python3.11-requestsexceptions-1.4.0 Press Enter key to continue... Running update for: - python3.11-requestsexceptions-1.4.0: UPDATING ... - python3.11-requestsexceptions-1.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.requestsexceptions 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.azure-synapse-artifacts, using log file: /var/log/nixpkgs-update/python311Packages.azure-synapse-artifacts/2024-03-25.log python311Packages.azure-synapse-artifacts 0 -> 1 attrpath: python311Packages.azure-synapse-artifacts Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/sn4vfq8nrcbav1vw6h4avy264lnrc0hf-packages.json.drv building '/nix/store/sn4vfq8nrcbav1vw6h4avy264lnrc0hf-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-synapse-artifacts-0.18.0 Press Enter key to continue... Running update for: - python3.11-azure-synapse-artifacts-0.18.0: UPDATING ... - python3.11-azure-synapse-artifacts-0.18.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-synapse-artifacts 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.transmission-rpc, using log file: /var/log/nixpkgs-update/python311Packages.transmission-rpc/2024-03-25.log python311Packages.transmission-rpc 0 -> 1 attrpath: python311Packages.transmission-rpc Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/54pd2p010367k1d3g7a67qpb40hm0bkq-packages.json.drv building '/nix/store/54pd2p010367k1d3g7a67qpb40hm0bkq-packages.json.drv'... Going to be running update for following packages: - python3.11-transmission-rpc-7.0.3 Press Enter key to continue... Running update for: - python3.11-transmission-rpc-7.0.3: UPDATING ... - python3.11-transmission-rpc-7.0.3: ERROR --- SHOWING ERROR LOG FOR python3.11-transmission-rpc-7.0.3 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/trim21/transmission-rpc/tarball/v7.0.3']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/trim21/transmission-rpc/tarball/refs/tags/v7.0.3']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-transmission-rpc-7.0.3 ---------------------- The update script for python3.11-transmission-rpc-7.0.3 failed with exit code 1 [result] Failed to update python311Packages.transmission-rpc 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath octavePackages.statistics, using log file: /var/log/nixpkgs-update/octavePackages.statistics/2024-03-25.log octavePackages.statistics 0 -> 1 attrpath: octavePackages.statistics Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/vf3rv5phxn0b3vd7s358zl6m1lnqxrcx-packages.json.drv building '/nix/store/vf3rv5phxn0b3vd7s358zl6m1lnqxrcx-packages.json.drv'... Going to be running update for following packages: - octave-8.4.0-statistics-1.6.0 Press Enter key to continue... Running update for: - octave-8.4.0-statistics-1.6.0: UPDATING ... - octave-8.4.0-statistics-1.6.0: ERROR --- SHOWING ERROR LOG FOR octave-8.4.0-statistics-1.6.0 ---------------------- error: getting status of '/run/nixpkgs-update-worker': No such file or directory --- SHOWING ERROR LOG FOR octave-8.4.0-statistics-1.6.0 ---------------------- The update script for octave-8.4.0-statistics-1.6.0 failed with exit code 1 [result] Failed to update octavePackages.statistics 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nomad_1_6, using log file: /var/log/nixpkgs-update/nomad_1_6/2024-03-25.log nomad_1_6 1.6.8 -> 1.7.6 https://github.com/hashicorp/nomad/releases attrpath: nomad_1_6 Checking auto update branch... No auto update branch exists Version in attr path nomad_1_6 not compatible with 1.7.6 [result] Failed to update nomad_1_6 1.6.8 -> 1.7.6 https://github.com/hashicorp/nomad/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.PasteDeploy, using log file: /var/log/nixpkgs-update/python311Packages.PasteDeploy/2024-03-25.log python311Packages.PasteDeploy 0 -> 1 attrpath: python311Packages.PasteDeploy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/hf4c4c9pqxcknxwa5896fxi72rjdgr06-packages.json.drv building '/nix/store/hf4c4c9pqxcknxwa5896fxi72rjdgr06-packages.json.drv'... Going to be running update for following packages: - python3.11-pastedeploy-3.0.1 Press Enter key to continue... Running update for: - python3.11-pastedeploy-3.0.1: UPDATING ... - python3.11-pastedeploy-3.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.PasteDeploy 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pantheon.elementary-photos, using log file: /var/log/nixpkgs-update/pantheon.elementary-photos/2024-03-25.log pantheon.elementary-photos 0 -> 1 attrpath: pantheon.elementary-photos Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/acqyldndjm42z004crgkaswp2rvf2s9f-packages.json.drv building '/nix/store/acqyldndjm42z004crgkaswp2rvf2s9f-packages.json.drv'... Going to be running update for following packages: - elementary-photos-2.8.0 Press Enter key to continue... Running update for: - elementary-photos-2.8.0: UPDATING ... - elementary-photos-2.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pantheon.elementary-photos 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath notejot, using log file: /var/log/nixpkgs-update/notejot/2024-03-25.log notejot 0 -> 1 attrpath: notejot Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/734j72kkrwzjw60iwbgsaqqinxcl8zq5-packages.json.drv building '/nix/store/734j72kkrwzjw60iwbgsaqqinxcl8zq5-packages.json.drv'... Going to be running update for following packages: - notejot-3.5.1 Press Enter key to continue... Running update for: - notejot-3.5.1: UPDATING ... - notejot-3.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update notejot 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnome.atomix, using log file: /var/log/nixpkgs-update/gnome.atomix/2024-03-25.log gnome.atomix 0 -> 1 attrpath: gnome.atomix Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome.atomix 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.editdistance-s, using log file: /var/log/nixpkgs-update/python311Packages.editdistance-s/2024-03-25.log python311Packages.editdistance-s 0 -> 1 attrpath: python311Packages.editdistance-s Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/kwl9cd5br76paf10bjyf60izaa0s28jg-packages.json.drv building '/nix/store/kwl9cd5br76paf10bjyf60izaa0s28jg-packages.json.drv'... Going to be running update for following packages: - python3.11-editdistance-s-1.0.0 Press Enter key to continue... Running update for: - python3.11-editdistance-s-1.0.0: UPDATING ... - python3.11-editdistance-s-1.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.editdistance-s 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.webencodings, using log file: /var/log/nixpkgs-update/python311Packages.webencodings/2024-03-25.log python311Packages.webencodings 0 -> 1 attrpath: python311Packages.webencodings Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/b40s3bxzh9nk5pdfxbdw3vz05l9hbnhd-packages.json.drv building '/nix/store/b40s3bxzh9nk5pdfxbdw3vz05l9hbnhd-packages.json.drv'... Going to be running update for following packages: - python3.11-webencodings-0.5.1 Press Enter key to continue... Running update for: - python3.11-webencodings-0.5.1: UPDATING ... - python3.11-webencodings-0.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.webencodings 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath teams-for-linux, using log file: /var/log/nixpkgs-update/teams-for-linux/2024-03-25.log teams-for-linux 0 -> 1 attrpath: teams-for-linux Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/zhmlxkxr9f6g2ymldfw8y0jqp7afh1zz-packages.json.drv building '/nix/store/zhmlxkxr9f6g2ymldfw8y0jqp7afh1zz-packages.json.drv'... Going to be running update for following packages: - teams-for-linux-1.4.14 Press Enter key to continue... Running update for: - teams-for-linux-1.4.14: UPDATING ... - teams-for-linux-1.4.14: ERROR --- SHOWING ERROR LOG FOR teams-for-linux-1.4.14 ---------------------- error: getting status of '/run/nixpkgs-update-worker': No such file or directory --- SHOWING ERROR LOG FOR teams-for-linux-1.4.14 ---------------------- The update script for teams-for-linux-1.4.14 failed with exit code 1 [result] Failed to update teams-for-linux 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.python-uinput, using log file: /var/log/nixpkgs-update/python311Packages.python-uinput/2024-03-25.log python311Packages.python-uinput 0 -> 1 attrpath: python311Packages.python-uinput Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9fw3s36skj5qx3k94faw2x9ab946ywr7-packages.json.drv building '/nix/store/9fw3s36skj5qx3k94faw2x9ab946ywr7-packages.json.drv'... Going to be running update for following packages: - python3.11-python-uinput-0.11.2 Press Enter key to continue... Running update for: - python3.11-python-uinput-0.11.2: UPDATING ... - python3.11-python-uinput-0.11.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-uinput/default.nix b/pkgs/development/python-modules/python-uinput/default.nix index 12ba28e04e68..f491ab1fe6bb 100644 --- a/pkgs/development/python-modules/python-uinput/default.nix +++ b/pkgs/development/python-modules/python-uinput/default.nix @@ -6,12 +6,12 @@ buildPythonPackage rec { pname = "python-uinput"; - version = "0.11.2"; + version = "1.0.1"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "033zqiypjz0nigav6vz0s57pbzikvds55mxphrdpkdbpdikjnfcr"; + sha256 = "sha256-hTaXNEtk31U31K4yum+88FFdUakBCRD11QGZWQOLbro="; }; buildInputs = [ udev ]; An auto update branch exists with message `python311Packages.python-uinput: 0.11.2 -> 1.0.1`. New version is 1.0.1. An auto update branch exists with an equal or greater version [result] Failed to update python311Packages.python-uinput 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.aioambient, using log file: /var/log/nixpkgs-update/python311Packages.aioambient/2024-03-25.log python311Packages.aioambient 0 -> 1 attrpath: python311Packages.aioambient Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/m062smp98bzzz4i5cfhy0vlkizm8vh76-packages.json.drv building '/nix/store/m062smp98bzzz4i5cfhy0vlkizm8vh76-packages.json.drv'... Going to be running update for following packages: - python3.11-aioambient-2024.01.0 Press Enter key to continue... Running update for: - python3.11-aioambient-2024.01.0: UPDATING ... - python3.11-aioambient-2024.01.0: ERROR --- SHOWING ERROR LOG FOR python3.11-aioambient-2024.01.0 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/bachya/aioambient/tarball/2024.01.0']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/bachya/aioambient/tarball/refs/tags/2024.01.0']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-aioambient-2024.01.0 ---------------------- The update script for python3.11-aioambient-2024.01.0 failed with exit code 1 [result] Failed to update python311Packages.aioambient 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath scala_2_12, using log file: /var/log/nixpkgs-update/scala_2_12/2024-03-25.log scala_2_12 0 -> 1 attrpath: scala_2_12 Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 these 2 derivations will be built: /nix/store/4zzwvb5r86pdm8x58pj3iivbn6pi8hd3-update.sh.drv /nix/store/5sb6rpkxxjxmwsvgr51n2ra1aa0zzzbx-packages.json.drv building '/nix/store/4zzwvb5r86pdm8x58pj3iivbn6pi8hd3-update.sh.drv'... building '/nix/store/5sb6rpkxxjxmwsvgr51n2ra1aa0zzzbx-packages.json.drv'... Going to be running update for following packages: - scala-2.12.18 Press Enter key to continue... Running update for: - scala-2.12.18: UPDATING ... - scala-2.12.18: ERROR --- SHOWING ERROR LOG FOR scala-2.12.18 ---------------------- error: cannot run ssh: No such file or directory fatal: unable to fork error: getting status of '/run/nixpkgs-update-worker': No such file or directory update-source-version: error: Couldn't figure out new hash of 'scala_2_12.src'! --- SHOWING ERROR LOG FOR scala-2.12.18 ---------------------- The update script for scala-2.12.18 failed with exit code 1 [result] Failed to update scala_2_12 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath wine, using log file: /var/log/nixpkgs-update/wine/2024-03-25.log wine 0 -> 1 attrpath: wine Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] these 2 derivations will be built: /nix/store/mnj0jhw042ffpg1xvlk8cngh1s8dl50s-update-wine-stable.drv /nix/store/1n1p22pp0fhdfjvbiqx5vxlls33z0lvh-packages.json.drv building '/nix/store/mnj0jhw042ffpg1xvlk8cngh1s8dl50s-update-wine-stable.drv'... building '/nix/store/1n1p22pp0fhdfjvbiqx5vxlls33z0lvh-packages.json.drv'... Going to be running update for following packages: - wine-9.0 Press Enter key to continue... Running update for: - wine-9.0: UPDATING ... - wine-9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update wine 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pcodedmp, using log file: /var/log/nixpkgs-update/python311Packages.pcodedmp/2024-03-25.log python311Packages.pcodedmp 0 -> 1 attrpath: python311Packages.pcodedmp Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/cadxnii5pb6hncfz60rxznv1wxjxpwq9-packages.json.drv building '/nix/store/cadxnii5pb6hncfz60rxznv1wxjxpwq9-packages.json.drv'... Going to be running update for following packages: - python3.11-pcodedmp-1.2.6 Press Enter key to continue... Running update for: - python3.11-pcodedmp-1.2.6: UPDATING ... - python3.11-pcodedmp-1.2.6: ERROR --- SHOWING ERROR LOG FOR python3.11-pcodedmp-1.2.6 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/bontchev/pcodedmp/tarball/1.2.6']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/bontchev/pcodedmp/tarball/refs/tags/1.2.6']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-pcodedmp-1.2.6 ---------------------- The update script for python3.11-pcodedmp-1.2.6 failed with exit code 1 [result] Failed to update python311Packages.pcodedmp 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.transaction, using log file: /var/log/nixpkgs-update/python311Packages.transaction/2024-03-25.log python311Packages.transaction 0 -> 1 attrpath: python311Packages.transaction Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/w330cjn7hjh7hrb42r4jln99iw6mra2f-packages.json.drv building '/nix/store/w330cjn7hjh7hrb42r4jln99iw6mra2f-packages.json.drv'... Going to be running update for following packages: - python3.11-transaction-4.0 Press Enter key to continue... Running update for: - python3.11-transaction-4.0: UPDATING ... - python3.11-transaction-4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.transaction 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.python-miio, using log file: /var/log/nixpkgs-update/python311Packages.python-miio/2024-03-25.log python311Packages.python-miio 0 -> 1 attrpath: python311Packages.python-miio Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/0767jcl2d405k4m300pcn6d8p2hayhfj-packages.json.drv building '/nix/store/0767jcl2d405k4m300pcn6d8p2hayhfj-packages.json.drv'... Going to be running update for following packages: - python3.11-python-miio-0.5.12 Press Enter key to continue... Running update for: - python3.11-python-miio-0.5.12: UPDATING ... - python3.11-python-miio-0.5.12: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-miio 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.cryptolyzer, using log file: /var/log/nixpkgs-update/python311Packages.cryptolyzer/2024-03-25.log python311Packages.cryptolyzer 0 -> 1 attrpath: python311Packages.cryptolyzer Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/kpnaccgvbr228irl14c0qz2j116dnaky-packages.json.drv building '/nix/store/kpnaccgvbr228irl14c0qz2j116dnaky-packages.json.drv'... Going to be running update for following packages: - python3.11-cryptolyzer-0.12.2 Press Enter key to continue... Running update for: - python3.11-cryptolyzer-0.12.2: UPDATING ... - python3.11-cryptolyzer-0.12.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/cryptolyzer/default.nix b/pkgs/development/python-modules/cryptolyzer/default.nix index 61d5a4a3f664..755f141c7509 100644 --- a/pkgs/development/python-modules/cryptolyzer/default.nix +++ b/pkgs/development/python-modules/cryptolyzer/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "cryptolyzer"; - version = "0.12.2"; + version = "0.12.3"; pyproject = true; disabled = pythonOlder "3.7"; @@ -26,7 +26,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "CryptoLyzer"; inherit version; - hash = "sha256-UffFdQ+MiB8kPzqnmWdnGRwAAM9wJwpUDK2bPvPvH0c="; + hash = "sha256-UdM0+PkO3K4XshcqaDkEKry6Spny9KMZAHiADxxth+c="; }; postPatch = '' No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/v4y2hsgfrn3m3j8shw62351sbzr4bl4h-python3.11-cryptolyzer-0.12.3" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
4 packages built:
  • python311Packages.cryptolyzer
  • python311Packages.cryptolyzer.dist
  • python312Packages.cryptolyzer
  • python312Packages.cryptolyzer.dist
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for python311Packages.cryptolyzer is: Cryptographic protocol analyzer meta.homepage for python311Packages.cryptolyzer is: https://gitlab.com/coroner/cryptolyzer meta.changelog for python311Packages.cryptolyzer is: https://gitlab.com/coroner/cryptolyzer/-/blob/v0.12.3/CHANGELOG.md ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.12.3 with grep in /nix/store/v4y2hsgfrn3m3j8shw62351sbzr4bl4h-python3.11-cryptolyzer-0.12.3 - found 0.12.3 in filename of file in /nix/store/v4y2hsgfrn3m3j8shw62351sbzr4bl4h-python3.11-cryptolyzer-0.12.3 ---
Rebuild report (if merged into master) (click to expand) ``` 2 total rebuild path(s) 2 package rebuild(s) First fifty rebuilds by attrpath python311Packages.cryptolyzer python312Packages.cryptolyzer ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/v4y2hsgfrn3m3j8shw62351sbzr4bl4h-python3.11-cryptolyzer-0.12.3 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A python311Packages.cryptolyzer https://github.com/r-ryantm/nixpkgs/archive/26452b883ea0d63d7668c82b7c2d743fc3a778cd.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/26452b883ea0d63d7668c82b7c2d743fc3a778cd#python311Packages.cryptolyzer ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/v4y2hsgfrn3m3j8shw62351sbzr4bl4h-python3.11-cryptolyzer-0.12.3 ls -la /nix/store/v4y2hsgfrn3m3j8shw62351sbzr4bl4h-python3.11-cryptolyzer-0.12.3/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
4 packages built:
  • python311Packages.cryptolyzer
  • python311Packages.cryptolyzer.dist
  • python312Packages.cryptolyzer
  • python312Packages.cryptolyzer.dist
--- ###### Maintainer pings cc @Kranzes for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298826 [result] Success updating python311Packages.cryptolyzer 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath roadrunner, using log file: /var/log/nixpkgs-update/roadrunner/2024-03-25.log roadrunner 2023.3.10 -> 2023.3.12 https://repology.org/project/roadrunner/versions attrpath: roadrunner Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = "sha256-xAzZdElu0rzoWnEQbhMO7DhQx3P7241yMy/Gvk9jnCA=" [golangModuleVersion] Replaced vendorHash with sha256-GNWd+SFjAeIkIkPSh+UtQwoWfQ9lUATXfnkWbqwQfsY= [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/servers/roadrunner/default.nix b/pkgs/servers/roadrunner/default.nix index 0f47c6ebeb3a..c1754e3ac958 100644 --- a/pkgs/servers/roadrunner/default.nix +++ b/pkgs/servers/roadrunner/default.nix @@ -6,12 +6,12 @@ buildGoModule rec { pname = "roadrunner"; - version = "2023.3.10"; + version = "2023.3.12"; src = fetchFromGitHub { repo = "roadrunner"; owner = "roadrunner-server"; rev = "v${version}"; - hash = "sha256-8wcZWnRi+wIg78VdGV/38Oldwjry7QXxmdacjYfe3sw="; + hash = "sha256-d/GXZ0rQ8prkOgvkx8/TBwP2zwISef5ClMGy1pkW7g4="; }; nativeBuildInputs = [ @@ -44,7 +44,7 @@ buildGoModule rec { --replace "127.0.0.1:0" "127.0.0.1:55554" ''; - vendorHash = "sha256-xAzZdElu0rzoWnEQbhMO7DhQx3P7241yMy/Gvk9jnCA="; + vendorHash = "sha256-GNWd+SFjAeIkIkPSh+UtQwoWfQ9lUATXfnkWbqwQfsY="; meta = { changelog = "https://github.com/roadrunner-server/roadrunner/blob/v${version}/CHANGELOG.md"; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/5q7vfjm6xmxgjyc4dr002qs3lf9pl1hc-roadrunner-2023.3.12" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • roadrunner
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://repology.org/project/roadrunner/versions. meta.description for roadrunner is: High-performance PHP application server, process manager written in Go and powered with plugins meta.homepage for roadrunner is: https://roadrunner.dev meta.changelog for roadrunner is: https://github.com/roadrunner-server/roadrunner/blob/v2023.3.12/CHANGELOG.md ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/roadrunner-server/roadrunner/releases/tag/v2023.3.12) - [Compare changes on GitHub](https://github.com/roadrunner-server/roadrunner/compare/v2023.3.10...v2023.3.12) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 2023.3.12 with grep in /nix/store/5q7vfjm6xmxgjyc4dr002qs3lf9pl1hc-roadrunner-2023.3.12 - found 2023.3.12 in filename of file in /nix/store/5q7vfjm6xmxgjyc4dr002qs3lf9pl1hc-roadrunner-2023.3.12 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath roadrunner ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/5q7vfjm6xmxgjyc4dr002qs3lf9pl1hc-roadrunner-2023.3.12 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A roadrunner https://github.com/r-ryantm/nixpkgs/archive/aba8ce92d0cd268a36a7fdff554477c831f516f3.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/aba8ce92d0cd268a36a7fdff554477c831f516f3#roadrunner ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/5q7vfjm6xmxgjyc4dr002qs3lf9pl1hc-roadrunner-2023.3.12 ls -la /nix/store/5q7vfjm6xmxgjyc4dr002qs3lf9pl1hc-roadrunner-2023.3.12/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • roadrunner
--- ###### Maintainer pings cc @shyim for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298829 [result] Success updating roadrunner 2023.3.10 -> 2023.3.12 https://repology.org/project/roadrunner/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.pymatreader, using log file: /var/log/nixpkgs-update/python312Packages.pymatreader/2024-03-25.log python312Packages.pymatreader 0.0.31 -> 0.0.32 https://repology.org/project/python:pymatreader/versions attrpath: python312Packages.pymatreader Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/65q13mjplcr9x2dgn2p0v3z606kn9nr8-packages.json.drv building '/nix/store/65q13mjplcr9x2dgn2p0v3z606kn9nr8-packages.json.drv'... Going to be running update for following packages: - python3.12-pymatreader-0.0.31 Press Enter key to continue... Running update for: - python3.12-pymatreader-0.0.31: UPDATING ... - python3.12-pymatreader-0.0.31: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.pymatreader 0.0.31 -> 0.0.32 https://repology.org/project/python:pymatreader/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.uranium, using log file: /var/log/nixpkgs-update/python312Packages.uranium/2024-03-25.log python312Packages.uranium 4.12.0 -> 5.6.0 https://repology.org/project/python:uranium/versions attrpath: python312Packages.uranium Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/iasrz7h15m5hk9zgw7kns4i8wqlwnhli-packages.json.drv building '/nix/store/iasrz7h15m5hk9zgw7kns4i8wqlwnhli-packages.json.drv'... Going to be running update for following packages: - python3.12-uranium-4.12.0 Press Enter key to continue... Running update for: - python3.12-uranium-4.12.0: UPDATING ... - python3.12-uranium-4.12.0: ERROR --- SHOWING ERROR LOG FOR python3.12-uranium-4.12.0 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/Ultimaker/Uranium/tarball/3.1.0']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/Ultimaker/Uranium/tarball/refs/tags/3.1.0']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.12-uranium-4.12.0 ---------------------- The update script for python3.12-uranium-4.12.0 failed with exit code 1 [result] Failed to update python312Packages.uranium 4.12.0 -> 5.6.0 https://repology.org/project/python:uranium/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ggside, using log file: /var/log/nixpkgs-update/rPackages.ggside/2024-03-25.log rPackages.ggside 0.2.3 -> 0.3.1 https://repology.org/project/r:ggside/versions attrpath: rPackages.ggside Checking auto update branch... No auto update branch exists Old version 0.2.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ggside 0.2.3 -> 0.3.1 https://repology.org/project/r:ggside/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.txredisapi, using log file: /var/log/nixpkgs-update/python312Packages.txredisapi/2024-03-25.log python312Packages.txredisapi 1.4.9 -> 1.4.10 https://repology.org/project/python:txredisapi/versions attrpath: python312Packages.txredisapi Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/j8f01zkql83qbfi0nbnza45rykvv9hdg-packages.json.drv building '/nix/store/j8f01zkql83qbfi0nbnza45rykvv9hdg-packages.json.drv'... Going to be running update for following packages: - python3.12-txredisapi-1.4.9 Press Enter key to continue... Running update for: - python3.12-txredisapi-1.4.9: UPDATING ... - python3.12-txredisapi-1.4.9: ERROR --- SHOWING ERROR LOG FOR python3.12-txredisapi-1.4.9 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/IlyaSkriblovsky/txredisapi/tarball/1.4.9']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/IlyaSkriblovsky/txredisapi/tarball/refs/tags/1.4.9']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.12-txredisapi-1.4.9 ---------------------- The update script for python3.12-txredisapi-1.4.9 failed with exit code 1 [result] Failed to update python312Packages.txredisapi 1.4.9 -> 1.4.10 https://repology.org/project/python:txredisapi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.gekitchen, using log file: /var/log/nixpkgs-update/python312Packages.gekitchen/2024-03-25.log python312Packages.gekitchen 0.2.19 -> 0.2.20 https://repology.org/project/python:gekitchen/versions attrpath: python312Packages.gekitchen Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/92yqpsa1m4srisrggf9zy3cjm1960az5-packages.json.drv building '/nix/store/92yqpsa1m4srisrggf9zy3cjm1960az5-packages.json.drv'... Going to be running update for following packages: - python3.12-gekitchen-0.2.19 Press Enter key to continue... Running update for: - python3.12-gekitchen-0.2.19: UPDATING ... - python3.12-gekitchen-0.2.19: ERROR --- SHOWING ERROR LOG FOR python3.12-gekitchen-0.2.19 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/ajmarks/gekitchen/tarball/v0.2.19']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/ajmarks/gekitchen/tarball/refs/tags/v0.2.19']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.12-gekitchen-0.2.19 ---------------------- The update script for python3.12-gekitchen-0.2.19 failed with exit code 1 [result] Failed to update python312Packages.gekitchen 0.2.19 -> 0.2.20 https://repology.org/project/python:gekitchen/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua51Packages.markdown, using log file: /var/log/nixpkgs-update/lua51Packages.markdown/2024-03-25.log lua51Packages.markdown 0.33-1 -> 0.331 https://repology.org/project/lua:markdown/versions attrpath: lua51Packages.markdown Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua51Packages.markdown 0.33-1 -> 0.331 https://repology.org/project/lua:markdown/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.RprobitB, using log file: /var/log/nixpkgs-update/rPackages.RprobitB/2024-03-25.log rPackages.RprobitB 1.1.2 -> 1.1.4 https://repology.org/project/r:rprobitb/versions attrpath: rPackages.RprobitB Checking auto update branch... No auto update branch exists Old version 1.1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.RprobitB 1.1.2 -> 1.1.4 https://repology.org/project/r:rprobitb/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.sphinxemoji, using log file: /var/log/nixpkgs-update/python312Packages.sphinxemoji/2024-03-25.log python312Packages.sphinxemoji 0.2.0 -> 0.3.1 https://repology.org/project/python:sphinxemoji/versions attrpath: python312Packages.sphinxemoji Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6rb9phz8ah734317z2zpwdxvsv9qk3sc-packages.json.drv building '/nix/store/6rb9phz8ah734317z2zpwdxvsv9qk3sc-packages.json.drv'... Going to be running update for following packages: - python3.12-sphinxemoji-0.2.0 Press Enter key to continue... Running update for: - python3.12-sphinxemoji-0.2.0: UPDATING ... - python3.12-sphinxemoji-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.sphinxemoji 0.2.0 -> 0.3.1 https://repology.org/project/python:sphinxemoji/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ezquake, using log file: /var/log/nixpkgs-update/ezquake/2024-03-25.log ezquake 3.6.3 -> 3.6.4 https://repology.org/project/ezquake/versions attrpath: ezquake Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/games/ezquake/default.nix b/pkgs/games/ezquake/default.nix index 46efa6c7b982..38a93ac4b34e 100644 --- a/pkgs/games/ezquake/default.nix +++ b/pkgs/games/ezquake/default.nix @@ -5,14 +5,14 @@ stdenv.mkDerivation rec { pname = "ezquake"; - version = "3.6.3"; + version = "3.6.4"; src = fetchFromGitHub { owner = "QW-Group"; repo = pname + "-source"; rev = version; fetchSubmodules = true; - hash = "sha256-ThrsJfj+eP7Lv2ZSNLO6/b98VHrL6/rhwf2p0qMvTF8="; + hash = "sha256-bxuAMWZEg19EmoP7arSWoFGmM4zKlX/lOYLnUzQ4zHA="; }; nativeBuildInputs = [ pkg-config ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A ezquake nix build failed. from src/vfs_doomwad.c:23: src/fs.h:26:10: fatal error: unzip.h: No such file or directory 26 | #include "unzip.h" | ^~~~~~~~~ compilation terminated. make: *** [Makefile:630: .ezquake/src/vfs_doomwad.o] Error 1 In file included from src/common.h:43, from src/quakedef.h:28, from src/hash.c:30: src/fs.h:26:10: fatal error: unzip.h: No such file or directory 26 | #include "unzip.h" | ^~~~~~~~~ compilation terminated. In file included from src/common.h:43, from src/quakedef.h:28, from src/vfs_mmap.c:23: src/fs.h:26:10: fatal error: unzip.h: No such file or directory 26 | #include "unzip.h" | ^~~~~~~~~ compilation terminated. make: *** [Makefile:630: .ezquake/src/hash.o] Error 1 make: *** [Makefile:630: .ezquake/src/vfs_mmap.o] Error 1 In file included from src/common.h:43, from src/quakedef.h:28, from src/vfs_tar.c:21: src/fs.h:26:10: fatal error: unzip.h: No such file or directory 26 | #include "unzip.h" | ^~~~~~~~~ compilation terminated. make: *** [Makefile:630: .ezquake/src/vfs_tar.o] Error 1 [result] Failed to update ezquake 3.6.3 -> 3.6.4 https://repology.org/project/ezquake/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath aspellDicts.hr, using log file: /var/log/nixpkgs-update/aspellDicts.hr/2024-03-25.log aspellDicts.hr 0 -> 1 attrpath: aspellDicts.hr Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 these 2 derivations will be built: /nix/store/mnsl61hzyz9q2aqsgfsxk7w9vg210an7-update-aspellDict-hr.drv /nix/store/2j1fc28r8z564f22g6ihqs8kpgmcxm7h-packages.json.drv building '/nix/store/mnsl61hzyz9q2aqsgfsxk7w9vg210an7-update-aspellDict-hr.drv'... building '/nix/store/2j1fc28r8z564f22g6ihqs8kpgmcxm7h-packages.json.drv'... Going to be running update for following packages: - aspell-dict-hr-0.51-0 Press Enter key to continue... Running update for: - aspell-dict-hr-0.51-0: UPDATING ... - aspell-dict-hr-0.51-0: ERROR --- SHOWING ERROR LOG FOR aspell-dict-hr-0.51-0 ---------------------- error: getting status of '/run/nixpkgs-update-worker': No such file or directory --- SHOWING ERROR LOG FOR aspell-dict-hr-0.51-0 ---------------------- The update script for aspell-dict-hr-0.51-0 failed with exit code 1 [result] Failed to update aspellDicts.hr 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pybravia, using log file: /var/log/nixpkgs-update/python311Packages.pybravia/2024-03-25.log python311Packages.pybravia 0 -> 1 attrpath: python311Packages.pybravia Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/178a5y7aiabfw7k5wwik23lxcyyvijvm-packages.json.drv building '/nix/store/178a5y7aiabfw7k5wwik23lxcyyvijvm-packages.json.drv'... Going to be running update for following packages: - python3.11-pybravia-0.3.3 Press Enter key to continue... Running update for: - python3.11-pybravia-0.3.3: UPDATING ... - python3.11-pybravia-0.3.3: ERROR --- SHOWING ERROR LOG FOR python3.11-pybravia-0.3.3 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/Drafteed/pybravia/tarball/v0.3.3']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/Drafteed/pybravia/tarball/refs/tags/v0.3.3']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-pybravia-0.3.3 ---------------------- The update script for python3.11-pybravia-0.3.3 failed with exit code 1 [result] Failed to update python311Packages.pybravia 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.psd-tools, using log file: /var/log/nixpkgs-update/python311Packages.psd-tools/2024-03-25.log python311Packages.psd-tools 0 -> 1 attrpath: python311Packages.psd-tools Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/wl2fdvhpjshcf2cl5lgd4wv75nhq2a6a-packages.json.drv building '/nix/store/wl2fdvhpjshcf2cl5lgd4wv75nhq2a6a-packages.json.drv'... Going to be running update for following packages: - python3.11-psd-tools-1.9.31 Press Enter key to continue... Running update for: - python3.11-psd-tools-1.9.31: UPDATING ... - python3.11-psd-tools-1.9.31: ERROR --- SHOWING ERROR LOG FOR python3.11-psd-tools-1.9.31 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/psd-tools/psd-tools/tarball/v1.9.31']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/psd-tools/psd-tools/tarball/refs/tags/v1.9.31']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-psd-tools-1.9.31 ---------------------- The update script for python3.11-psd-tools-1.9.31 failed with exit code 1 [result] Failed to update python311Packages.psd-tools 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.wsgiproxy2, using log file: /var/log/nixpkgs-update/python311Packages.wsgiproxy2/2024-03-25.log python311Packages.wsgiproxy2 0 -> 1 attrpath: python311Packages.wsgiproxy2 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/k7x8sx9pgamxd72sl70kaf9ni3zxi58x-packages.json.drv building '/nix/store/k7x8sx9pgamxd72sl70kaf9ni3zxi58x-packages.json.drv'... Going to be running update for following packages: - python3.11-wsgiproxy2-0.5.1 Press Enter key to continue... Running update for: - python3.11-wsgiproxy2-0.5.1: UPDATING ... - python3.11-wsgiproxy2-0.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.wsgiproxy2 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath openshot-qt, using log file: /var/log/nixpkgs-update/openshot-qt/2024-03-25.log openshot-qt 0 -> 1 attrpath: openshot-qt Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/vlw5wrfxxmn7lfd8aq4inyl6a0kdra7p-packages.json.drv building '/nix/store/vlw5wrfxxmn7lfd8aq4inyl6a0kdra7p-packages.json.drv'... Going to be running update for following packages: - openshot-qt-3.1.1 Press Enter key to continue... Running update for: - openshot-qt-3.1.1: UPDATING ... - openshot-qt-3.1.1: ERROR --- SHOWING ERROR LOG FOR openshot-qt-3.1.1 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/OpenShot/openshot-qt/tarball/v3.1.1']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/OpenShot/openshot-qt/tarball/refs/tags/v3.1.1']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR openshot-qt-3.1.1 ---------------------- The update script for openshot-qt-3.1.1 failed with exit code 1 [result] Failed to update openshot-qt 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pantheon.wingpanel-indicator-session, using log file: /var/log/nixpkgs-update/pantheon.wingpanel-indicator-session/2024-03-25.log pantheon.wingpanel-indicator-session 0 -> 1 attrpath: pantheon.wingpanel-indicator-session Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/3kn77js9s5q300d19j1bw2slv3z7wq7z-packages.json.drv building '/nix/store/3kn77js9s5q300d19j1bw2slv3z7wq7z-packages.json.drv'... Going to be running update for following packages: - wingpanel-indicator-session-2.3.1 Press Enter key to continue... Running update for: - wingpanel-indicator-session-2.3.1: UPDATING ... - wingpanel-indicator-session-2.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pantheon.wingpanel-indicator-session 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pytest-testmon, using log file: /var/log/nixpkgs-update/python311Packages.pytest-testmon/2024-03-25.log python311Packages.pytest-testmon 0 -> 1 attrpath: python311Packages.pytest-testmon Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/k91lvn22vs30mkqcq7rz1mxjck0yxlbk-packages.json.drv building '/nix/store/k91lvn22vs30mkqcq7rz1mxjck0yxlbk-packages.json.drv'... Going to be running update for following packages: - python3.11-pytest-testmon-2.1.1 Press Enter key to continue... Running update for: - python3.11-pytest-testmon-2.1.1: UPDATING ... - python3.11-pytest-testmon-2.1.1: ERROR --- SHOWING ERROR LOG FOR python3.11-pytest-testmon-2.1.1 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/tarpas/pytest-testmon/tarball/v2.1.1']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/tarpas/pytest-testmon/tarball/refs/tags/v2.1.1']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-pytest-testmon-2.1.1 ---------------------- The update script for python3.11-pytest-testmon-2.1.1 failed with exit code 1 [result] Failed to update python311Packages.pytest-testmon 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pycairo, using log file: /var/log/nixpkgs-update/python311Packages.pycairo/2024-03-25.log python311Packages.pycairo 0 -> 1 attrpath: python311Packages.pycairo Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/mqzfypfhf36qyh3r1k8lyiaxcbz5q8nv-packages.json.drv building '/nix/store/mqzfypfhf36qyh3r1k8lyiaxcbz5q8nv-packages.json.drv'... Going to be running update for following packages: - python3.11-pycairo-1.26.0 Press Enter key to continue... Running update for: - python3.11-pycairo-1.26.0: UPDATING ... - python3.11-pycairo-1.26.0: ERROR --- SHOWING ERROR LOG FOR python3.11-pycairo-1.26.0 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 300, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/pygobject/pycairo/tarball/v1.26.0']' returned non-zero exit status 1. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 319, in _get_latest_version_github subprocess.check_output( File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix-prefetch-url', '--type', 'sha256', '--unpack', 'https://api.github.com/repos/pygobject/pycairo/tarball/refs/tags/v1.26.0']' returned non-zero exit status 1. --- SHOWING ERROR LOG FOR python3.11-pycairo-1.26.0 ---------------------- The update script for python3.11-pycairo-1.26.0 failed with exit code 1 [result] Failed to update python311Packages.pycairo 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath opencomposite, using log file: /var/log/nixpkgs-update/opencomposite/2024-03-25.log opencomposite 0 -> 1 attrpath: opencomposite Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/cfra0jj8xhinhm7vblxg7zpfgx72aib0-packages.json.drv building '/nix/store/cfra0jj8xhinhm7vblxg7zpfgx72aib0-packages.json.drv'... Going to be running update for following packages: - opencomposite-unstable-2024-03-04 Press Enter key to continue... Running update for: - opencomposite-unstable-2024-03-04: UPDATING ... - opencomposite-unstable-2024-03-04: ERROR --- SHOWING ERROR LOG FOR opencomposite-unstable-2024-03-04 ---------------------- error: getting status of '/run/nixpkgs-update-worker': No such file or directory Traceback (most recent call last): File "/nix/store/lnlgvns1j1pwir5qgva3n0dn4bn0qdiw-nix-update-1.3.0/bin/.nix-update-wrapped", line 9, in sys.exit(main()) ^^^^^^ File "/nix/store/lnlgvns1j1pwir5qgva3n0dn4bn0qdiw-nix-update-1.3.0/lib/python3.11/site-packages/nix_update/__init__.py", line 291, in main package = update(options) ^^^^^^^^^^^^^^^ File "/nix/store/lnlgvns1j1pwir5qgva3n0dn4bn0qdiw-nix-update-1.3.0/lib/python3.11/site-packages/nix_update/update.py", line 366, in update update_src_hash(opts, package.filename, package.hash) File "/nix/store/lnlgvns1j1pwir5qgva3n0dn4bn0qdiw-nix-update-1.3.0/lib/python3.11/site-packages/nix_update/update.py", line 144, in update_src_hash target_hash = nix_prefetch(opts, "src") ^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/lnlgvns1j1pwir5qgva3n0dn4bn0qdiw-nix-update-1.3.0/lib/python3.11/site-packages/nix_update/update.py", line 126, in nix_prefetch raise UpdateError( nix_update.errors.UpdateError: failed to retrieve hash when trying to update opencomposite.src --- SHOWING ERROR LOG FOR opencomposite-unstable-2024-03-04 ---------------------- The update script for opencomposite-unstable-2024-03-04 failed with exit code 1 [result] Failed to update opencomposite 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.jupyterlab-widgets, using log file: /var/log/nixpkgs-update/python311Packages.jupyterlab-widgets/2024-03-25.log python311Packages.jupyterlab-widgets 0 -> 1 attrpath: python311Packages.jupyterlab-widgets Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fflbp35laiwqrr157cinr90bgkz5m4kk-packages.json.drv building '/nix/store/fflbp35laiwqrr157cinr90bgkz5m4kk-packages.json.drv'... Going to be running update for following packages: - python3.11-jupyterlab-widgets-3.0.10 Press Enter key to continue... Running update for: - python3.11-jupyterlab-widgets-3.0.10: UPDATING ... - python3.11-jupyterlab-widgets-3.0.10: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.jupyterlab-widgets 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyperclip, using log file: /var/log/nixpkgs-update/python311Packages.pyperclip/2024-03-25.log python311Packages.pyperclip 0 -> 1 attrpath: python311Packages.pyperclip Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/327yq6dahfvmydrnxydj13s9xkfwgy6s-packages.json.drv building '/nix/store/327yq6dahfvmydrnxydj13s9xkfwgy6s-packages.json.drv'... Going to be running update for following packages: - python3.11-pyperclip-1.8.2 Press Enter key to continue... Running update for: - python3.11-pyperclip-1.8.2: UPDATING ... - python3.11-pyperclip-1.8.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyperclip 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO @volth asked to not update xfce [result] Failed to update xfce.xfce4-datetime-plugin 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath turso-cli, using log file: /var/log/nixpkgs-update/turso-cli/2024-03-25.log turso-cli 0 -> 1 attrpath: turso-cli Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] skipping because derivation has updateScript [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2r6h7gpy00cpignq9j5k1x83ff6m7530-packages.json.drv building '/nix/store/2r6h7gpy00cpignq9j5k1x83ff6m7530-packages.json.drv'... Going to be running update for following packages: - turso-cli-0.89.0 Press Enter key to continue... Running update for: - turso-cli-0.89.0: UPDATING ... - turso-cli-0.89.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/tools/turso-cli/default.nix b/pkgs/development/tools/turso-cli/default.nix index 9414d1114bcb..c68b1a3010a8 100644 --- a/pkgs/development/tools/turso-cli/default.nix +++ b/pkgs/development/tools/turso-cli/default.nix @@ -8,13 +8,13 @@ }: buildGoModule rec { pname = "turso-cli"; - version = "0.89.0"; + version = "0.90.3"; src = fetchFromGitHub { owner = "tursodatabase"; repo = "turso-cli"; rev = "v${version}"; - hash = "sha256-BFL5D4GkcYdHkEc5448jgQflhhncePYfHMTprPynvmU="; + hash = "sha256-NkCkInQLwGwb8bFeRTSk2rpuPBOkMvWBgVx2IFFyRFQ="; }; vendorHash = "sha256-oxlIaSSLZ6JirvUPOIHirp43G5qrDFJhNd6HjA9UYKo="; No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/hl0kjc0fnwpwd6g8qhqncrdi804ypyv6-turso-cli-0.90.3" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • turso-cli
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for turso-cli is: This is the command line interface (CLI) to Turso. meta.homepage for turso-cli is: https://turso.tech ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes - [Compare changes on GitHub](https://github.com/tursodatabase/turso-cli/compare/v0.89.0...v0.90.3) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.90.3 with grep in /nix/store/hl0kjc0fnwpwd6g8qhqncrdi804ypyv6-turso-cli-0.90.3 - found 0.90.3 in filename of file in /nix/store/hl0kjc0fnwpwd6g8qhqncrdi804ypyv6-turso-cli-0.90.3 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath turso-cli ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/hl0kjc0fnwpwd6g8qhqncrdi804ypyv6-turso-cli-0.90.3 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A turso-cli https://github.com/r-ryantm/nixpkgs/archive/a85047967011abbdff0dbabc5b973b6f4c62fe13.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/a85047967011abbdff0dbabc5b973b6f4c62fe13#turso-cli ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/hl0kjc0fnwpwd6g8qhqncrdi804ypyv6-turso-cli-0.90.3 ls -la /nix/store/hl0kjc0fnwpwd6g8qhqncrdi804ypyv6-turso-cli-0.90.3/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • turso-cli
--- ###### Maintainer pings cc @zestsystem @kashw2 @Fryuni for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298836 [result] Success updating turso-cli 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.unicorn, using log file: /var/log/nixpkgs-update/python311Packages.unicorn/2024-03-25.log python311Packages.unicorn 0 -> 1 attrpath: python311Packages.unicorn Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2yzi1wnj0wnm84i1jf1zkzzy3cap29rw-packages.json.drv building '/nix/store/2yzi1wnj0wnm84i1jf1zkzzy3cap29rw-packages.json.drv'... Going to be running update for following packages: - python3.11-unicorn-2.0.1.post1 Press Enter key to continue... Running update for: - python3.11-unicorn-2.0.1.post1: UPDATING ... - python3.11-unicorn-2.0.1.post1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.unicorn 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.nbmerge, using log file: /var/log/nixpkgs-update/python311Packages.nbmerge/2024-03-25.log python311Packages.nbmerge 0 -> 1 attrpath: python311Packages.nbmerge Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/xb21m0vzikq9h89ki9d0wfyiqln0115k-packages.json.drv building '/nix/store/xb21m0vzikq9h89ki9d0wfyiqln0115k-packages.json.drv'... Going to be running update for following packages: - python3.11-nbmerge-0.0.4 Press Enter key to continue... Running update for: - python3.11-nbmerge-0.0.4: UPDATING ... - python3.11-nbmerge-0.0.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nbmerge 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pybalboa, using log file: /var/log/nixpkgs-update/python311Packages.pybalboa/2024-03-25.log python311Packages.pybalboa 0 -> 1 attrpath: python311Packages.pybalboa Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2fnijkx8byvvn5180hhpyhvrqs5prd8r-packages.json.drv building '/nix/store/2fnijkx8byvvn5180hhpyhvrqs5prd8r-packages.json.drv'... Going to be running update for following packages: - python3.11-pybalboa-1.0.1 Press Enter key to continue... Running update for: - python3.11-pybalboa-1.0.1: UPDATING ... - python3.11-pybalboa-1.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pybalboa 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rhythmbox, using log file: /var/log/nixpkgs-update/rhythmbox/2024-03-25.log rhythmbox 0 -> 1 attrpath: rhythmbox Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/hc7hvq4vgrbcpp8hhi6p72ip301jg3kc-packages.json.drv building '/nix/store/hc7hvq4vgrbcpp8hhi6p72ip301jg3kc-packages.json.drv'... Going to be running update for following packages: - rhythmbox-3.4.7 Press Enter key to continue... Running update for: - rhythmbox-3.4.7: UPDATING ... - rhythmbox-3.4.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update rhythmbox 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.boxx, using log file: /var/log/nixpkgs-update/python311Packages.boxx/2024-03-25.log python311Packages.boxx 0 -> 1 attrpath: python311Packages.boxx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/f10l4igfnbf0aiizancj0gjgd5h5jbgh-packages.json.drv building '/nix/store/f10l4igfnbf0aiizancj0gjgd5h5jbgh-packages.json.drv'... Going to be running update for following packages: - python3.11-boxx-0.10.13 Press Enter key to continue... Running update for: - python3.11-boxx-0.10.13: UPDATING ... - python3.11-boxx-0.10.13: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.boxx 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lxqt.lximage-qt, using log file: /var/log/nixpkgs-update/lxqt.lximage-qt/2024-03-25.log lxqt.lximage-qt 0 -> 1 attrpath: lxqt.lximage-qt Packages for lxqt are currently skipped. [result] Failed to update lxqt.lximage-qt 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.sphinxcontrib-mscgen, using log file: /var/log/nixpkgs-update/python311Packages.sphinxcontrib-mscgen/2024-03-25.log python311Packages.sphinxcontrib-mscgen 0 -> 1 attrpath: python311Packages.sphinxcontrib-mscgen Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7rbq8a4fmpjn5v2fz1fvx0zaagmy6pzb-packages.json.drv building '/nix/store/7rbq8a4fmpjn5v2fz1fvx0zaagmy6pzb-packages.json.drv'... Going to be running update for following packages: - python3.11-sphinxcontrib-mscgen-0.6 Press Enter key to continue... Running update for: - python3.11-sphinxcontrib-mscgen-0.6: UPDATING ... - python3.11-sphinxcontrib-mscgen-0.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sphinxcontrib-mscgen 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.sphinxcontrib-spelling, using log file: /var/log/nixpkgs-update/python311Packages.sphinxcontrib-spelling/2024-03-25.log python311Packages.sphinxcontrib-spelling 0 -> 1 attrpath: python311Packages.sphinxcontrib-spelling Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9ys5iisask7xnczz5k6x20i81fv839yr-packages.json.drv building '/nix/store/9ys5iisask7xnczz5k6x20i81fv839yr-packages.json.drv'... Going to be running update for following packages: - python3.11-sphinxcontrib-spelling-8.0.0 Press Enter key to continue... Running update for: - python3.11-sphinxcontrib-spelling-8.0.0: UPDATING ... - python3.11-sphinxcontrib-spelling-8.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sphinxcontrib-spelling 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath spotify-qt, using log file: /var/log/nixpkgs-update/spotify-qt/2024-03-25.log spotify-qt 3.9 -> 3.11 https://repology.org/project/spotify-qt/versions attrpath: spotify-qt Checking auto update branch... An auto update branch exists with message `spotify-qt: 3.9 -> 3.11`. New version is 3.11. An auto update branch exists with an equal or greater version [result] Failed to update spotify-qt 3.9 -> 3.11 https://repology.org/project/spotify-qt/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nanomq, using log file: /var/log/nixpkgs-update/nanomq/2024-03-25.log nanomq 0.20.8 -> 0.21.6 https://github.com/emqx/nanomq/releases attrpath: nanomq Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update nanomq 0.20.8 -> 0.21.6 https://github.com/emqx/nanomq/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath near-cli, using log file: /var/log/nixpkgs-update/near-cli/2024-03-25.log near-cli 3.4.2 -> 4.0.11 https://github.com/near/near-cli/releases attrpath: near-cli Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update near-cli 3.4.2 -> 4.0.11 https://github.com/near/near-cli/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath steamback, using log file: /var/log/nixpkgs-update/steamback/2024-03-25.log steamback 0 -> 1 attrpath: steamback Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9mprcvfqci18hhzsi076jl53w55z725a-packages.json.drv building '/nix/store/9mprcvfqci18hhzsi076jl53w55z725a-packages.json.drv'... Going to be running update for following packages: - steamback-0.3.6 Press Enter key to continue... Running update for: - steamback-0.3.6: UPDATING ... - steamback-0.3.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update steamback 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gtksourceviewmm, using log file: /var/log/nixpkgs-update/gtksourceviewmm/2024-03-25.log gtksourceviewmm 0 -> 1 attrpath: gtksourceviewmm Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/1jn1w9dg5ndx69cnzba1v90bj2ynazzc-packages.json.drv building '/nix/store/1jn1w9dg5ndx69cnzba1v90bj2ynazzc-packages.json.drv'... Going to be running update for following packages: - gtksourceviewmm-3.21.3 Press Enter key to continue... Running update for: - gtksourceviewmm-3.21.3: UPDATING ... - gtksourceviewmm-3.21.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update gtksourceviewmm 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pytz, using log file: /var/log/nixpkgs-update/python311Packages.pytz/2024-03-25.log python311Packages.pytz 0 -> 1 attrpath: python311Packages.pytz Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/99zjw3nfdcjq2b4cr8a19bxjwafx9r5n-packages.json.drv building '/nix/store/99zjw3nfdcjq2b4cr8a19bxjwafx9r5n-packages.json.drv'... Going to be running update for following packages: - python3.11-pytz-2024.1 Press Enter key to continue... Running update for: - python3.11-pytz-2024.1: UPDATING ... - python3.11-pytz-2024.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytz 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath immer, using log file: /var/log/nixpkgs-update/immer/2024-03-25.log immer 0.8.0 -> 0.8.1 https://repology.org/project/immer/versions attrpath: immer Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/immer/default.nix b/pkgs/development/libraries/immer/default.nix index 1e82c6ad1d5d..9d7e1bdca4c2 100644 --- a/pkgs/development/libraries/immer/default.nix +++ b/pkgs/development/libraries/immer/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "immer"; - version = "0.8.0"; + version = "0.8.1"; src = fetchFromGitHub { owner = "arximboldi"; repo = "immer"; rev = "v${version}"; - hash = "sha256-R0C6hN50eyFSv10L/Q0tRdnUrRvze+eRXPrlAQsddYY="; + hash = "sha256-Tyj2mNyLhrcFNQEn4xHC8Gz7/jtA4Dnkjtk8AAXJEw8="; }; nativeBuildInputs = [ cmake ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A immer nix build failed. The package name passed to `find_package_handle_standard_args` (Boehm_GC) does not match the name of the calling package (BoehmGC). This can lead to problems in calling code that expects `find_package` result variables (e.g., `_FOUND`) to follow a certain pattern. Call Stack (most recent call first): cmake/FindBoehmGC.cmake:105 (FIND_PACKAGE_HANDLE_STANDARD_ARGS) CMakeLists.txt:73 (find_package) This warning is for project developers. Use -Wno-dev to suppress it.  -- Could NOT find Boehm_GC (missing: BOEHM_GC_LIBRARIES BOEHM_GC_INCLUDE_DIR) -- Could NOT find Boost (missing: Boost_INCLUDE_DIR) (Required is at least version "1.56") -- Could not find ccache CMake Error at CMakeLists.txt:142 (find_package): By not providing "FindCatch2.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Catch2", but CMake did not find one. Could not find a package configuration file provided by "Catch2" with any of the following names: Catch2Config.cmake catch2-config.cmake Add the installation prefix of "Catch2" to CMAKE_PREFIX_PATH or set "Catch2_DIR" to a directory containing one of the above files. If "Catch2" provides a separate development package or SDK, be sure it has been installed.  -- Configuring incomplete, errors occurred! [result] Failed to update immer 0.8.0 -> 0.8.1 https://repology.org/project/immer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pianotrans, using log file: /var/log/nixpkgs-update/pianotrans/2024-03-25.log pianotrans 0 -> 1 attrpath: pianotrans Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/yfncx44ajy9cqgc7c1205k0rhh7cg97k-packages.json.drv building '/nix/store/yfncx44ajy9cqgc7c1205k0rhh7cg97k-packages.json.drv'... Going to be running update for following packages: - pianotrans-1.0.1 Press Enter key to continue... Running update for: - pianotrans-1.0.1: UPDATING ... - pianotrans-1.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pianotrans 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pytorch-pfn-extras, using log file: /var/log/nixpkgs-update/python311Packages.pytorch-pfn-extras/2024-03-25.log python311Packages.pytorch-pfn-extras 0 -> 1 attrpath: python311Packages.pytorch-pfn-extras Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/sab15hxiridabnhr8r1hsplc28505wvf-packages.json.drv building '/nix/store/sab15hxiridabnhr8r1hsplc28505wvf-packages.json.drv'... Going to be running update for following packages: - python3.11-pytorch-pfn-extras-0.7.6 Press Enter key to continue... Running update for: - python3.11-pytorch-pfn-extras-0.7.6: UPDATING ... - python3.11-pytorch-pfn-extras-0.7.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytorch-pfn-extras 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.python-jenkins, using log file: /var/log/nixpkgs-update/python311Packages.python-jenkins/2024-03-25.log python311Packages.python-jenkins 0 -> 1 attrpath: python311Packages.python-jenkins Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/m34svbbch661wngkj69ify4431r7mhpq-packages.json.drv building '/nix/store/m34svbbch661wngkj69ify4431r7mhpq-packages.json.drv'... Going to be running update for following packages: - python3.11-python-jenkins-1.8.2 Press Enter key to continue... Running update for: - python3.11-python-jenkins-1.8.2: UPDATING ... - python3.11-python-jenkins-1.8.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-jenkins 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.robotframework-sshlibrary, using log file: /var/log/nixpkgs-update/python311Packages.robotframework-sshlibrary/2024-03-25.log python311Packages.robotframework-sshlibrary 0 -> 1 attrpath: python311Packages.robotframework-sshlibrary Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bhpjzbvqdn9h2qqg2miy05ja8fk6z76k-packages.json.drv building '/nix/store/bhpjzbvqdn9h2qqg2miy05ja8fk6z76k-packages.json.drv'... Going to be running update for following packages: - python3.11-robotframework-sshlibrary-3.8.0 Press Enter key to continue... Running update for: - python3.11-robotframework-sshlibrary-3.8.0: UPDATING ... - python3.11-robotframework-sshlibrary-3.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.robotframework-sshlibrary 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath patchance, using log file: /var/log/nixpkgs-update/patchance/2024-03-25.log patchance 0 -> 1 attrpath: patchance Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/h9lnn8zz1xxdg8bxk4pnknsq7s17kz78-packages.json.drv building '/nix/store/h9lnn8zz1xxdg8bxk4pnknsq7s17kz78-packages.json.drv'... Going to be running update for following packages: - patchance-1.1.0 Press Enter key to continue... Running update for: - patchance-1.1.0: UPDATING ... - patchance-1.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update patchance 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.azure-mgmt-subscription, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-subscription/2024-03-25.log python311Packages.azure-mgmt-subscription 0 -> 1 attrpath: python311Packages.azure-mgmt-subscription Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/mjkq9hmah8rzy71rszn26r7dy3rzrpcs-packages.json.drv building '/nix/store/mjkq9hmah8rzy71rszn26r7dy3rzrpcs-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-mgmt-subscription-3.1.1 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-subscription-3.1.1: UPDATING ... - python3.11-azure-mgmt-subscription-3.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-subscription 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.ipfshttpclient, using log file: /var/log/nixpkgs-update/python311Packages.ipfshttpclient/2024-03-25.log python311Packages.ipfshttpclient 0 -> 1 attrpath: python311Packages.ipfshttpclient Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ygm713abq5ngffxac616cd3g5v9x6a57-packages.json.drv building '/nix/store/ygm713abq5ngffxac616cd3g5v9x6a57-packages.json.drv'... Going to be running update for following packages: - python3.11-ipfshttpclient-0.8.0a2 Press Enter key to continue... Running update for: - python3.11-ipfshttpclient-0.8.0a2: UPDATING ... - python3.11-ipfshttpclient-0.8.0a2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ipfshttpclient 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnome-user-docs, using log file: /var/log/nixpkgs-update/gnome-user-docs/2024-03-25.log gnome-user-docs 0 -> 1 attrpath: gnome-user-docs Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome-user-docs 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pylibmc, using log file: /var/log/nixpkgs-update/python311Packages.pylibmc/2024-03-25.log python311Packages.pylibmc 0 -> 1 attrpath: python311Packages.pylibmc Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/d8vd1l195fvsvj1wslq43cvi22q32nyr-packages.json.drv building '/nix/store/d8vd1l195fvsvj1wslq43cvi22q32nyr-packages.json.drv'... Going to be running update for following packages: - python3.11-pylibmc-1.6.3 Press Enter key to continue... Running update for: - python3.11-pylibmc-1.6.3: UPDATING ... - python3.11-pylibmc-1.6.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pylibmc 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pc, using log file: /var/log/nixpkgs-update/pc/2024-03-25.log pc 0 -> 1 attrpath: pc Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/f00fz274pi4fs4rz04dx99c7s1kr07vw-packages.json.drv building '/nix/store/f00fz274pi4fs4rz04dx99c7s1kr07vw-packages.json.drv'... Going to be running update for following packages: - pc-0.4 Press Enter key to continue... Running update for: - pc-0.4: UPDATING ... - pc-0.4: ERROR --- SHOWING ERROR LOG FOR pc-0.4 ---------------------- + name= + pname= + version= + attr_path= + version_lister='/nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/list-git-tags ' + ignored_versions= + rev_prefix= + odd_unstable= + patchlevel_unstable= + [[ -n '' ]] + name=pc-0.4 + [[ -n '' ]] + pname=pc + [[ -n '' ]] + version=0.4 + [[ -n '' ]] + attr_path=pc + echo '# pc-0.4' ++ sh -c '/nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/list-git-tags --pname=pc --attr-path=pc --file="update-git-commits.txt"' fatal: unable to access 'https://git.sr.ht/~ft/pc/': The requested URL returned error: 500 + tags= + '[' -n '' ']' ++ echo '' ++ /nix/store/nk45h8dy9zlx4d0b9ghf5xnj9pypyqgh-gnugrep-3.11/bin/grep '^[0-9]' + tags= --- SHOWING ERROR LOG FOR pc-0.4 ---------------------- The update script for pc-0.4 failed with exit code 1 [result] Failed to update pc 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.laspy, using log file: /var/log/nixpkgs-update/python311Packages.laspy/2024-03-25.log python311Packages.laspy 0 -> 1 attrpath: python311Packages.laspy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/l85w5fqlc8p00var3pbfw7af10v2nc9a-packages.json.drv building '/nix/store/l85w5fqlc8p00var3pbfw7af10v2nc9a-packages.json.drv'... Going to be running update for following packages: - python3.11-laspy-2.5.3 Press Enter key to continue... Running update for: - python3.11-laspy-2.5.3: UPDATING ... - python3.11-laspy-2.5.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.laspy 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cargo-docset, using log file: /var/log/nixpkgs-update/cargo-docset/2024-03-25.log cargo-docset 0 -> 1 attrpath: cargo-docset Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] skipping because derivation has updateScript [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/s070y1hxsdhllycnyxws2py8mv8xrf4a-packages.json.drv building '/nix/store/s070y1hxsdhllycnyxws2py8mv8xrf4a-packages.json.drv'... Going to be running update for following packages: - cargo-docset-0.3.1 Press Enter key to continue... Running update for: - cargo-docset-0.3.1: UPDATING ... - cargo-docset-0.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update cargo-docset 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath virtio-win, using log file: /var/log/nixpkgs-update/virtio-win/2024-03-25.log virtio-win 0 -> 1 attrpath: virtio-win Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/834nnh2nyz1zxqc44s9npq86g38vaiz1-packages.json.drv building '/nix/store/834nnh2nyz1zxqc44s9npq86g38vaiz1-packages.json.drv'... Going to be running update for following packages: - virtio-win-0.1.248-1 Press Enter key to continue... Running update for: - virtio-win-0.1.248-1: UPDATING ... - virtio-win-0.1.248-1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update virtio-win 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath zfs-replicate, using log file: /var/log/nixpkgs-update/zfs-replicate/2024-03-25.log zfs-replicate 0 -> 1 attrpath: zfs-replicate Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/waajnhynkbl7bnpa2m6wxvk45w2ccwwj-packages.json.drv building '/nix/store/waajnhynkbl7bnpa2m6wxvk45w2ccwwj-packages.json.drv'... Going to be running update for following packages: - zfs_replicate-3.2.10 Press Enter key to continue... Running update for: - zfs_replicate-3.2.10: UPDATING ... - zfs_replicate-3.2.10: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/tools/backup/zfs-replicate/default.nix b/pkgs/tools/backup/zfs-replicate/default.nix index 0c9e2b0998a8..5a377d8cae28 100644 --- a/pkgs/tools/backup/zfs-replicate/default.nix +++ b/pkgs/tools/backup/zfs-replicate/default.nix @@ -11,12 +11,12 @@ buildPythonApplication rec { pname = "zfs_replicate"; - version = "3.2.10"; + version = "3.2.11"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-LEBCdrJZLddJm2nz2JLfwskU8roN/MZlr79exFEWnRI="; + hash = "sha256-8u65Ht7s2RqBYetKf/3erb6B2+/iZgnqHBogYa4J/rs="; }; postPatch = '' No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/dqpimhx32mff9b2f4yw8nqild5d0yy57-zfs_replicate-3.2.11" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
2 packages built:
  • zfs-replicate
  • zfs-replicate.dist
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for zfs-replicate is: ZFS Snapshot Replication meta.homepage for zfs-replicate is: https://github.com/alunduil/zfs-replicate ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 3.2.11 with grep in /nix/store/dqpimhx32mff9b2f4yw8nqild5d0yy57-zfs_replicate-3.2.11 - found 3.2.11 in filename of file in /nix/store/dqpimhx32mff9b2f4yw8nqild5d0yy57-zfs_replicate-3.2.11 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath zfs-replicate ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/dqpimhx32mff9b2f4yw8nqild5d0yy57-zfs_replicate-3.2.11 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A zfs-replicate https://github.com/r-ryantm/nixpkgs/archive/0772542ccac69ca28a59a15523a59be76df2594d.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/0772542ccac69ca28a59a15523a59be76df2594d#zfs-replicate ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/dqpimhx32mff9b2f4yw8nqild5d0yy57-zfs_replicate-3.2.11 ls -la /nix/store/dqpimhx32mff9b2f4yw8nqild5d0yy57-zfs_replicate-3.2.11/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
2 packages built:
  • zfs-replicate
  • zfs-replicate.dist
--- ###### Maintainer pings cc @alunduil for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298841 [result] Success updating zfs-replicate 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.mercadopago, using log file: /var/log/nixpkgs-update/python311Packages.mercadopago/2024-03-25.log python311Packages.mercadopago 0 -> 1 attrpath: python311Packages.mercadopago Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7x3qcm86060vvrrxj66h8apiplcz2njy-packages.json.drv building '/nix/store/7x3qcm86060vvrrxj66h8apiplcz2njy-packages.json.drv'... Going to be running update for following packages: - python3.11-mercadopago-2.2.1 Press Enter key to continue... Running update for: - python3.11-mercadopago-2.2.1: UPDATING ... - python3.11-mercadopago-2.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mercadopago 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath alerta-server, using log file: /var/log/nixpkgs-update/alerta-server/2024-03-25.log alerta-server 0 -> 1 attrpath: alerta-server Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/1bf0wdab8p3kmcwc16c0s187rrz2prai-packages.json.drv building '/nix/store/1bf0wdab8p3kmcwc16c0s187rrz2prai-packages.json.drv'... Going to be running update for following packages: - alerta-server-9.0.1 Press Enter key to continue... Running update for: - alerta-server-9.0.1: UPDATING ... - alerta-server-9.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update alerta-server 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.sumtypes, using log file: /var/log/nixpkgs-update/python311Packages.sumtypes/2024-03-25.log python311Packages.sumtypes 0 -> 1 attrpath: python311Packages.sumtypes Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6x5nn9dqvjxn0hmyihfbz1iryb1byk63-packages.json.drv building '/nix/store/6x5nn9dqvjxn0hmyihfbz1iryb1byk63-packages.json.drv'... Going to be running update for following packages: - python3.11-sumtypes-0.1a6 Press Enter key to continue... Running update for: - python3.11-sumtypes-0.1a6: UPDATING ... - python3.11-sumtypes-0.1a6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sumtypes 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.jupyterlab, using log file: /var/log/nixpkgs-update/python311Packages.jupyterlab/2024-03-25.log python311Packages.jupyterlab 0 -> 1 attrpath: python311Packages.jupyterlab Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/pg697q1kr92zqq1b08z437a6ci23mawl-packages.json.drv building '/nix/store/pg697q1kr92zqq1b08z437a6ci23mawl-packages.json.drv'... Going to be running update for following packages: - python3.11-jupyterlab-4.1.4 Press Enter key to continue... Running update for: - python3.11-jupyterlab-4.1.4: UPDATING ... - python3.11-jupyterlab-4.1.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/jupyterlab/default.nix b/pkgs/development/python-modules/jupyterlab/default.nix index 4be3dc7b1487..768fd085b74b 100644 --- a/pkgs/development/python-modules/jupyterlab/default.nix +++ b/pkgs/development/python-modules/jupyterlab/default.nix @@ -20,14 +20,14 @@ buildPythonPackage rec { pname = "jupyterlab"; - version = "4.1.4"; + version = "4.1.5"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-4DyCwSStigiS5Ji53eecUIaLLCZ4Gayj9VzkfFfr6x0="; + hash = "sha256-ya11KQyxC/r/NiS/P7uFIxm0zOTEVmE/jruqmNA1JNs="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/gpka1ddlrjhmv4lv4s6iwmpkqjsbb48p-python3.11-jupyterlab-4.1.5" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
12 packages marked as broken and skipped:
  • python311Packages.elegy
  • python311Packages.elegy.dist
  • python311Packages.jupyter-contrib-nbextensions
  • python311Packages.jupyter-contrib-nbextensions.dist
  • python311Packages.openllm
  • python311Packages.openllm.dist
  • python311Packages.pynitrokey
  • python311Packages.pynitrokey.dist
  • python311Packages.spsdk
  • python311Packages.spsdk.dist
  • python311Packages.treex
  • python311Packages.treex.dist
59 packages failed to build:
  • manim
  • manim.dist
  • nitrokey-app2
  • nitrokey-app2.dist
  • pynitrokey
  • pynitrokey.dist
  • python311Packages.augmax
  • python311Packages.augmax.dist
  • python311Packages.bambi
  • python311Packages.bambi.dist
  • python311Packages.dalle-mini
  • python311Packages.dalle-mini.dist
  • python311Packages.distrax
  • python311Packages.distrax.dist
  • python311Packages.dm-haiku
  • python311Packages.dm-haiku.dist
  • python311Packages.flax
  • python311Packages.flax.dist
  • python311Packages.jupyterlab-git
  • python311Packages.jupyterlab-git.dist
  • python311Packages.k-diffusion
  • python311Packages.k-diffusion.dist
  • python311Packages.layoutparser
  • python311Packages.layoutparser.dist
  • python311Packages.nbdime
  • python311Packages.nbdime.dist
  • python311Packages.pdfplumber
  • python311Packages.pdfplumber.dist
  • python311Packages.phik
  • python311Packages.phik.dist
  • python311Packages.pytest-notebook
  • python311Packages.pytest-notebook.dist
  • python311Packages.rlax
  • python311Packages.rlax.dist
  • python311Packages.vqgan-jax
  • python311Packages.vqgan-jax.dist
  • python312Packages.experiment-utilities
  • python312Packages.experiment-utilities.dist
  • python312Packages.jupyterlab-git
  • python312Packages.jupyterlab-git.dist
  • python312Packages.layoutparser
  • python312Packages.layoutparser.dist
  • python312Packages.nbdime
  • python312Packages.nbdime.dist
  • python312Packages.nikola
  • python312Packages.nikola.dist
  • python312Packages.pdfplumber
  • python312Packages.pdfplumber.dist
  • python312Packages.pytest-notebook
  • python312Packages.pytest-notebook.dist
  • python312Packages.qgrid
  • python312Packages.qgrid.dist
  • python312Packages.tsfresh
  • python312Packages.tsfresh.dist
  • python312Packages.vector
  • python312Packages.vector.dist
  • tts
  • tts.dist
  • wolfram-notebook
118 packages built:
  • cantor
  • ihaskell
  • jupyter
  • jupyter-all
  • labplot
  • nbqa
  • nbqa.dist
  • python311Packages.ansible-kernel
  • python311Packages.ansible-kernel.dist
  • python311Packages.arviz
  • python311Packages.arviz.dist
  • python311Packages.batchspawner
  • python311Packages.batchspawner.dist
  • python311Packages.bqplot
  • python311Packages.bqplot.dist
  • python311Packages.bqscales
  • python311Packages.bqscales.dist
  • python311Packages.dockerspawner
  • python311Packages.dockerspawner.dist
  • python311Packages.einops
  • python311Packages.einops.dist
  • python311Packages.encodec
  • python311Packages.encodec.dist
  • python311Packages.experiment-utilities
  • python311Packages.experiment-utilities.dist
  • python311Packages.ipytablewidgets
  • python311Packages.ipytablewidgets.dist
  • python311Packages.ipyvuetify
  • python311Packages.ipyvuetify.dist
  • python311Packages.jupyter
  • python311Packages.jupyter-collaboration
  • python311Packages.jupyter-collaboration.dist
  • python311Packages.jupyter-contrib-core
  • python311Packages.jupyter-contrib-core.dist
  • python311Packages.jupyter-nbextensions-configurator
  • python311Packages.jupyter-nbextensions-configurator.dist
  • python311Packages.jupyter.dist
  • python311Packages.jupyterhub
  • python311Packages.jupyterhub-ldapauthenticator
  • python311Packages.jupyterhub-ldapauthenticator.dist
  • python311Packages.jupyterhub-systemdspawner
  • python311Packages.jupyterhub-systemdspawner.dist
  • python311Packages.jupyterhub-tmpauthenticator
  • python311Packages.jupyterhub-tmpauthenticator.dist
  • python311Packages.jupyterhub.dist
  • python311Packages.jupyterlab
  • python311Packages.jupyterlab-lsp
  • python311Packages.jupyterlab-lsp.dist
  • python311Packages.jupyterlab.dist
  • python311Packages.jupytext
  • python311Packages.jupytext.dist
  • python311Packages.mkdocs-jupyter
  • python311Packages.mkdocs-jupyter.dist
  • python311Packages.nbdev
  • python311Packages.nbdev.dist
  • python311Packages.nikola
  • python311Packages.nikola.dist
  • python311Packages.nix-kernel
  • python311Packages.nix-kernel.dist
  • python311Packages.notebook
  • python311Packages.notebook.dist
  • python311Packages.notedown
  • python311Packages.notedown.dist
  • python311Packages.oauthenticator
  • python311Packages.oauthenticator.dist
  • python311Packages.pyannote-audio
  • python311Packages.pyannote-audio.dist
  • python311Packages.pydeck
  • python311Packages.pydeck.dist
  • python311Packages.pymc
  • python311Packages.pymc.dist
  • python311Packages.pymoo
  • python311Packages.pymoo.dist
  • python311Packages.qgrid
  • python311Packages.qgrid.dist
  • python311Packages.rotary-embedding-torch
  • python311Packages.rotary-embedding-torch.dist
  • streamlit (python311Packages.streamlit)
  • streamlit.dist (python311Packages.streamlit.dist)
  • python311Packages.tsfresh
  • python311Packages.tsfresh.dist
  • python311Packages.vector
  • python311Packages.vector.dist
  • python311Packages.vega
  • python311Packages.vega.dist
  • python311Packages.xarray-einstats
  • python311Packages.xarray-einstats.dist
  • python312Packages.ipyvuetify
  • python312Packages.ipyvuetify.dist
  • python312Packages.jupyter-collaboration
  • python312Packages.jupyter-collaboration.dist
  • python312Packages.jupyter-contrib-core
  • python312Packages.jupyter-contrib-core.dist
  • python312Packages.jupyterlab
  • python312Packages.jupyterlab-lsp
  • python312Packages.jupyterlab-lsp.dist
  • python312Packages.jupyterlab.dist
  • python312Packages.jupytext
  • python312Packages.jupytext.dist
  • python312Packages.mkdocs-jupyter
  • python312Packages.mkdocs-jupyter.dist
  • python312Packages.nbdev
  • python312Packages.nbdev.dist
  • python312Packages.nix-kernel
  • python312Packages.nix-kernel.dist
  • python312Packages.notebook
  • python312Packages.notebook.dist
  • python312Packages.notedown
  • python312Packages.notedown.dist
  • python312Packages.pymoo
  • python312Packages.pymoo.dist
  • quarto
  • rstudio
  • rstudio-server
  • rstudioServerWrapper
  • rstudioWrapper
  • sage
  • sageWithDoc
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for python311Packages.jupyterlab is: Jupyter lab environment notebook server extension meta.homepage for python311Packages.jupyterlab is: https://jupyter.org/ meta.changelog for python311Packages.jupyterlab is: https://github.com/jupyterlab/jupyterlab/blob/v4.1.5/CHANGELOG.md ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 4.1.5 with grep in /nix/store/gpka1ddlrjhmv4lv4s6iwmpkqjsbb48p-python3.11-jupyterlab-4.1.5 - found 4.1.5 in filename of file in /nix/store/gpka1ddlrjhmv4lv4s6iwmpkqjsbb48p-python3.11-jupyterlab-4.1.5 ---
Rebuild report (if merged into master) (click to expand) ``` 104 total rebuild path(s) 104 package rebuild(s) First fifty rebuilds by attrpath cantor ihaskell jupyter jupyter-all labplot libsForQt5.cantor manim nbqa nitrokey-app2 plasma5Packages.cantor pynitrokey python311Packages.ansible-kernel python311Packages.arviz python311Packages.augmax python311Packages.bambi python311Packages.batchspawner python311Packages.bqplot python311Packages.bqscales python311Packages.dalle-mini python311Packages.distrax python311Packages.dm-haiku python311Packages.dockerspawner python311Packages.einops python311Packages.elegy python311Packages.encodec python311Packages.experiment-utilities python311Packages.flax python311Packages.ipytablewidgets python311Packages.ipyvuetify python311Packages.jupyter python311Packages.jupyter-collaboration python311Packages.jupyter-contrib-core python311Packages.jupyter-contrib-nbextensions python311Packages.jupyter-nbextensions-configurator python311Packages.jupyterhub python311Packages.jupyterhub-ldapauthenticator python311Packages.jupyterhub-systemdspawner python311Packages.jupyterhub-tmpauthenticator python311Packages.jupyterlab python311Packages.jupyterlab-git python311Packages.jupyterlab-lsp python311Packages.jupytext python311Packages.k-diffusion python311Packages.layoutparser python311Packages.mkdocs-jupyter python311Packages.nbdev python311Packages.nbdime python311Packages.nikola python311Packages.nix-kernel python311Packages.notebook ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/gpka1ddlrjhmv4lv4s6iwmpkqjsbb48p-python3.11-jupyterlab-4.1.5 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A python311Packages.jupyterlab https://github.com/r-ryantm/nixpkgs/archive/7277ed61f3433c5037556633b4a500a61b4e8365.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/7277ed61f3433c5037556633b4a500a61b4e8365#python311Packages.jupyterlab ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/gpka1ddlrjhmv4lv4s6iwmpkqjsbb48p-python3.11-jupyterlab-4.1.5 ls -la /nix/store/gpka1ddlrjhmv4lv4s6iwmpkqjsbb48p-python3.11-jupyterlab-4.1.5/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
12 packages marked as broken and skipped:
  • python311Packages.elegy
  • python311Packages.elegy.dist
  • python311Packages.jupyter-contrib-nbextensions
  • python311Packages.jupyter-contrib-nbextensions.dist
  • python311Packages.openllm
  • python311Packages.openllm.dist
  • python311Packages.pynitrokey
  • python311Packages.pynitrokey.dist
  • python311Packages.spsdk
  • python311Packages.spsdk.dist
  • python311Packages.treex
  • python311Packages.treex.dist
59 packages failed to build:
  • manim
  • manim.dist
  • nitrokey-app2
  • nitrokey-app2.dist
  • pynitrokey
  • pynitrokey.dist
  • python311Packages.augmax
  • python311Packages.augmax.dist
  • python311Packages.bambi
  • python311Packages.bambi.dist
  • python311Packages.dalle-mini
  • python311Packages.dalle-mini.dist
  • python311Packages.distrax
  • python311Packages.distrax.dist
  • python311Packages.dm-haiku
  • python311Packages.dm-haiku.dist
  • python311Packages.flax
  • python311Packages.flax.dist
  • python311Packages.jupyterlab-git
  • python311Packages.jupyterlab-git.dist
  • python311Packages.k-diffusion
  • python311Packages.k-diffusion.dist
  • python311Packages.layoutparser
  • python311Packages.layoutparser.dist
  • python311Packages.nbdime
  • python311Packages.nbdime.dist
  • python311Packages.pdfplumber
  • python311Packages.pdfplumber.dist
  • python311Packages.phik
  • python311Packages.phik.dist
  • python311Packages.pytest-notebook
  • python311Packages.pytest-notebook.dist
  • python311Packages.rlax
  • python311Packages.rlax.dist
  • python311Packages.vqgan-jax
  • python311Packages.vqgan-jax.dist
  • python312Packages.experiment-utilities
  • python312Packages.experiment-utilities.dist
  • python312Packages.jupyterlab-git
  • python312Packages.jupyterlab-git.dist
  • python312Packages.layoutparser
  • python312Packages.layoutparser.dist
  • python312Packages.nbdime
  • python312Packages.nbdime.dist
  • python312Packages.nikola
  • python312Packages.nikola.dist
  • python312Packages.pdfplumber
  • python312Packages.pdfplumber.dist
  • python312Packages.pytest-notebook
  • python312Packages.pytest-notebook.dist
  • python312Packages.qgrid
  • python312Packages.qgrid.dist
  • python312Packages.tsfresh
  • python312Packages.tsfresh.dist
  • python312Packages.vector
  • python312Packages.vector.dist
  • tts
  • tts.dist
  • wolfram-notebook
118 packages built:
  • cantor
  • ihaskell
  • jupyter
  • jupyter-all
  • labplot
  • nbqa
  • nbqa.dist
  • python311Packages.ansible-kernel
  • python311Packages.ansible-kernel.dist
  • python311Packages.arviz
  • python311Packages.arviz.dist
  • python311Packages.batchspawner
  • python311Packages.batchspawner.dist
  • python311Packages.bqplot
  • python311Packages.bqplot.dist
  • python311Packages.bqscales
  • python311Packages.bqscales.dist
  • python311Packages.dockerspawner
  • python311Packages.dockerspawner.dist
  • python311Packages.einops
  • python311Packages.einops.dist
  • python311Packages.encodec
  • python311Packages.encodec.dist
  • python311Packages.experiment-utilities
  • python311Packages.experiment-utilities.dist
  • python311Packages.ipytablewidgets
  • python311Packages.ipytablewidgets.dist
  • python311Packages.ipyvuetify
  • python311Packages.ipyvuetify.dist
  • python311Packages.jupyter
  • python311Packages.jupyter-collaboration
  • python311Packages.jupyter-collaboration.dist
  • python311Packages.jupyter-contrib-core
  • python311Packages.jupyter-contrib-core.dist
  • python311Packages.jupyter-nbextensions-configurator
  • python311Packages.jupyter-nbextensions-configurator.dist
  • python311Packages.jupyter.dist
  • python311Packages.jupyterhub
  • python311Packages.jupyterhub-ldapauthenticator
  • python311Packages.jupyterhub-ldapauthenticator.dist
  • python311Packages.jupyterhub-systemdspawner
  • python311Packages.jupyterhub-systemdspawner.dist
  • python311Packages.jupyterhub-tmpauthenticator
  • python311Packages.jupyterhub-tmpauthenticator.dist
  • python311Packages.jupyterhub.dist
  • python311Packages.jupyterlab
  • python311Packages.jupyterlab-lsp
  • python311Packages.jupyterlab-lsp.dist
  • python311Packages.jupyterlab.dist
  • python311Packages.jupytext
  • python311Packages.jupytext.dist
  • python311Packages.mkdocs-jupyter
  • python311Packages.mkdocs-jupyter.dist
  • python311Packages.nbdev
  • python311Packages.nbdev.dist
  • python311Packages.nikola
  • python311Packages.nikola.dist
  • python311Packages.nix-kernel
  • python311Packages.nix-kernel.dist
  • python311Packages.notebook
  • python311Packages.notebook.dist
  • python311Packages.notedown
  • python311Packages.notedown.dist
  • python311Packages.oauthenticator
  • python311Packages.oauthenticator.dist
  • python311Packages.pyannote-audio
  • python311Packages.pyannote-audio.dist
  • python311Packages.pydeck
  • python311Packages.pydeck.dist
  • python311Packages.pymc
  • python311Packages.pymc.dist
  • python311Packages.pymoo
  • python311Packages.pymoo.dist
  • python311Packages.qgrid
  • python311Packages.qgrid.dist
  • python311Packages.rotary-embedding-torch
  • python311Packages.rotary-embedding-torch.dist
  • streamlit (python311Packages.streamlit)
  • streamlit.dist (python311Packages.streamlit.dist)
  • python311Packages.tsfresh
  • python311Packages.tsfresh.dist
  • python311Packages.vector
  • python311Packages.vector.dist
  • python311Packages.vega
  • python311Packages.vega.dist
  • python311Packages.xarray-einstats
  • python311Packages.xarray-einstats.dist
  • python312Packages.ipyvuetify
  • python312Packages.ipyvuetify.dist
  • python312Packages.jupyter-collaboration
  • python312Packages.jupyter-collaboration.dist
  • python312Packages.jupyter-contrib-core
  • python312Packages.jupyter-contrib-core.dist
  • python312Packages.jupyterlab
  • python312Packages.jupyterlab-lsp
  • python312Packages.jupyterlab-lsp.dist
  • python312Packages.jupyterlab.dist
  • python312Packages.jupytext
  • python312Packages.jupytext.dist
  • python312Packages.mkdocs-jupyter
  • python312Packages.mkdocs-jupyter.dist
  • python312Packages.nbdev
  • python312Packages.nbdev.dist
  • python312Packages.nix-kernel
  • python312Packages.nix-kernel.dist
  • python312Packages.notebook
  • python312Packages.notebook.dist
  • python312Packages.notedown
  • python312Packages.notedown.dist
  • python312Packages.pymoo
  • python312Packages.pymoo.dist
  • quarto
  • rstudio
  • rstudio-server
  • rstudioServerWrapper
  • rstudioWrapper
  • sage
  • sageWithDoc
--- ###### Maintainer pings cc @GaetanLepage @natsukium @thomasjm for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298850 [result] Success updating python311Packages.jupyterlab 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua53Packages.toml-edit, using log file: /var/log/nixpkgs-update/lua53Packages.toml-edit/2024-03-25.log lua53Packages.toml-edit 0.1.5-1 -> 0.2.1 https://github.com/vhyrro/toml-edit.lua/releases attrpath: lua53Packages.toml-edit Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua53Packages.toml-edit 0.1.5-1 -> 0.2.1 https://github.com/vhyrro/toml-edit.lua/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua52Packages.toml-edit, using log file: /var/log/nixpkgs-update/lua52Packages.toml-edit/2024-03-25.log lua52Packages.toml-edit 0.1.5-1 -> 0.2.1 https://github.com/vhyrro/toml-edit.lua/releases attrpath: lua52Packages.toml-edit Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua52Packages.toml-edit 0.1.5-1 -> 0.2.1 https://github.com/vhyrro/toml-edit.lua/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath luajitPackages.telescope-manix, using log file: /var/log/nixpkgs-update/luajitPackages.telescope-manix/2024-03-25.log luajitPackages.telescope-manix 1.0.0-1 -> 1.0.2 https://github.com/mrcjkb/telescope-manix/releases attrpath: luajitPackages.telescope-manix Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update luajitPackages.telescope-manix 1.0.0-1 -> 1.0.2 https://github.com/mrcjkb/telescope-manix/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua53Packages.telescope-manix, using log file: /var/log/nixpkgs-update/lua53Packages.telescope-manix/2024-03-25.log lua53Packages.telescope-manix 1.0.0-1 -> 1.0.2 https://github.com/mrcjkb/telescope-manix/releases attrpath: lua53Packages.telescope-manix Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua53Packages.telescope-manix 1.0.0-1 -> 1.0.2 https://github.com/mrcjkb/telescope-manix/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua51Packages.fzy, using log file: /var/log/nixpkgs-update/lua51Packages.fzy/2024-03-25.log lua51Packages.fzy 1.0-1 -> 1.0.3 https://github.com/swarn/fzy-lua/releases attrpath: lua51Packages.fzy Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua51Packages.fzy 1.0-1 -> 1.0.3 https://github.com/swarn/fzy-lua/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua53Packages.fzy, using log file: /var/log/nixpkgs-update/lua53Packages.fzy/2024-03-25.log lua53Packages.fzy 1.0-1 -> 1.0.3 https://github.com/swarn/fzy-lua/releases attrpath: lua53Packages.fzy Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua53Packages.fzy 1.0-1 -> 1.0.3 https://github.com/swarn/fzy-lua/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua53Packages.http, using log file: /var/log/nixpkgs-update/lua53Packages.http/2024-03-25.log lua53Packages.http 0.3-0 -> 0.4 https://github.com/daurnimator/lua-http/releases attrpath: lua53Packages.http Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua53Packages.http 0.3-0 -> 0.4 https://github.com/daurnimator/lua-http/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_6_1.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_6_1.xone/2024-03-25.log linuxKernel.packages.linux_6_1.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_6_1.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_6_1.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_xanmod.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_xanmod.xone/2024-03-25.log linuxKernel.packages.linux_xanmod.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_xanmod.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_xanmod.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_5_10_hardened.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_5_10_hardened.xone/2024-03-25.log linuxKernel.packages.linux_5_10_hardened.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_5_10_hardened.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_5_10_hardened.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_6_7_hardened.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_6_7_hardened.xone/2024-03-25.log linuxKernel.packages.linux_6_7_hardened.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_6_7_hardened.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_6_7_hardened.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_zen.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_zen.xone/2024-03-25.log linuxKernel.packages.linux_zen.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_zen.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_zen.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_5_4_hardened.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_5_4_hardened.xone/2024-03-25.log linuxKernel.packages.linux_5_4_hardened.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_5_4_hardened.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_5_4_hardened.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_6_6.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_6_6.xone/2024-03-25.log linuxKernel.packages.linux_6_6.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_6_6.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_6_6.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_libre.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_libre.xone/2024-03-25.log linuxKernel.packages.linux_libre.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_libre.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_libre.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_6_8.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_6_8.xone/2024-03-25.log linuxKernel.packages.linux_6_8.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_6_8.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_6_8.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_lqx.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_lqx.xone/2024-03-25.log linuxKernel.packages.linux_lqx.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_lqx.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_lqx.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_5_4.xone, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_5_4.xone/2024-03-25.log linuxKernel.packages.linux_5_4.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases attrpath: linuxKernel.packages.linux_5_4.xone Checking auto update branch... No auto update branch exists 0.3 is not newer than 0.3-unstable-2024-03-16 according to Nix; versionComparison: -1 [result] Failed to update linuxKernel.packages.linux_5_4.xone 0.3-unstable-2024-03-16 -> 0.3 https://github.com/medusalix/xone/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.zfa, using log file: /var/log/nixpkgs-update/rPackages.zfa/2024-03-25.log rPackages.zfa 1.0 -> 1.1.0 https://repology.org/project/r:zfa/versions attrpath: rPackages.zfa Checking auto update branch... No auto update branch exists Old version 1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.zfa 1.0 -> 1.1.0 https://repology.org/project/r:zfa/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath autotrace, using log file: /var/log/nixpkgs-update/autotrace/2024-03-25.log autotrace 0.31.9 -> 0.31.10 https://github.com/autotrace/autotrace/releases attrpath: autotrace Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update autotrace 0.31.9 -> 0.31.10 https://github.com/autotrace/autotrace/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.comf, using log file: /var/log/nixpkgs-update/rPackages.comf/2024-03-25.log rPackages.comf 0.1.11 -> 0.1.12 https://repology.org/project/r:comf/versions attrpath: rPackages.comf Checking auto update branch... No auto update branch exists Old version 0.1.11" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.comf 0.1.11 -> 0.1.12 https://repology.org/project/r:comf/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.iCellR, using log file: /var/log/nixpkgs-update/rPackages.iCellR/2024-03-25.log rPackages.iCellR 1.6.5 -> 1.6.7 https://repology.org/project/r:icellr/versions attrpath: rPackages.iCellR Checking auto update branch... No auto update branch exists Old version 1.6.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.iCellR 1.6.5 -> 1.6.7 https://repology.org/project/r:icellr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.marginalizedRisk, using log file: /var/log/nixpkgs-update/rPackages.marginalizedRisk/2024-03-25.log rPackages.marginalizedRisk 2021.2-4 -> 2024.1-27 https://repology.org/project/r:marginalizedrisk/versions attrpath: rPackages.marginalizedRisk Checking auto update branch... No auto update branch exists Old version 2021.2-4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.marginalizedRisk 2021.2-4 -> 2024.1-27 https://repology.org/project/r:marginalizedrisk/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.CryptPassphraseBcrypt 0.007 -> 0.008 https://repology.org/project/perl:crypt-passphrase-bcrypt/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.awsipranges, using log file: /var/log/nixpkgs-update/python311Packages.awsipranges/2024-03-25.log python311Packages.awsipranges 0 -> 1 attrpath: python311Packages.awsipranges Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bs1wbd4das3fla9pvb7lazxkrkvv8lkg-packages.json.drv building '/nix/store/bs1wbd4das3fla9pvb7lazxkrkvv8lkg-packages.json.drv'... Going to be running update for following packages: - python3.11-awsipranges-0.3.3 Press Enter key to continue... Running update for: - python3.11-awsipranges-0.3.3: UPDATING ... - python3.11-awsipranges-0.3.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.awsipranges 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ASRgenomics, using log file: /var/log/nixpkgs-update/rPackages.ASRgenomics/2024-03-25.log rPackages.ASRgenomics 1.1.3 -> 1.1.4 https://repology.org/project/r:asrgenomics/versions attrpath: rPackages.ASRgenomics Checking auto update branch... No auto update branch exists Old version 1.1.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ASRgenomics 1.1.3 -> 1.1.4 https://repology.org/project/r:asrgenomics/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.cchs, using log file: /var/log/nixpkgs-update/rPackages.cchs/2024-03-25.log rPackages.cchs 0.4.2 -> 0.4.4 https://repology.org/project/r:cchs/versions attrpath: rPackages.cchs Checking auto update branch... No auto update branch exists Old version 0.4.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.cchs 0.4.2 -> 0.4.4 https://repology.org/project/r:cchs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.pxweb, using log file: /var/log/nixpkgs-update/rPackages.pxweb/2024-03-25.log rPackages.pxweb 0.16.2 -> 0.17.0 https://repology.org/project/r:pxweb/versions attrpath: rPackages.pxweb Checking auto update branch... No auto update branch exists Old version 0.16.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.pxweb 0.16.2 -> 0.17.0 https://repology.org/project/r:pxweb/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.hopit, using log file: /var/log/nixpkgs-update/rPackages.hopit/2024-03-25.log rPackages.hopit 0.11.5 -> 0.11.6 https://repology.org/project/r:hopit/versions attrpath: rPackages.hopit Checking auto update branch... No auto update branch exists Old version 0.11.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.hopit 0.11.5 -> 0.11.6 https://repology.org/project/r:hopit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath prowler, using log file: /var/log/nixpkgs-update/prowler/2024-03-25.log prowler 0 -> 1 attrpath: prowler Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/p6bmbavbzsj71mdjyp5ja0bjkamy8vcg-packages.json.drv building '/nix/store/p6bmbavbzsj71mdjyp5ja0bjkamy8vcg-packages.json.drv'... Going to be running update for following packages: - prowler-3.12.1 Press Enter key to continue... Running update for: - prowler-3.12.1: UPDATING ... - prowler-3.12.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/by-name/pr/prowler/package.nix b/pkgs/by-name/pr/prowler/package.nix index 702d78b78a79..6e10fc96affe 100644 --- a/pkgs/by-name/pr/prowler/package.nix +++ b/pkgs/by-name/pr/prowler/package.nix @@ -5,14 +5,14 @@ python3.pkgs.buildPythonApplication rec { pname = "prowler"; - version = "3.12.1"; + version = "3.15.3"; pyproject = true; src = fetchFromGitHub { owner = "prowler-cloud"; repo = "prowler"; rev = "refs/tags/${version}"; - hash = "sha256-QauDqeCa499AcZurGjn2Yv4GH04F/pahAH2ms7gAca4="; + hash = "sha256-aFYmx494mrn4bDLt/xv7tQW4jweIM5xr4KLGbRy2VR0="; }; pythonRelaxDeps = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A prowler nix build failed. no configure script, doing nothing @nix { "action": "setPhase", "phase": "buildPhase" } Running phase: buildPhase Executing pypaBuildPhase Creating a wheel... * Getting build dependencies for wheel... * Building wheel... Successfully built prowler-3.15.3-py3-none-any.whl Finished creating a wheel... /build/source/dist /build/source Unpacking to: unpacked/prowler-3.15.3...OK Repacking wheel as ./prowler-3.15.3-py3-none-any.whl...OK /build/source Finished executing pypaBuildPhase @nix { "action": "setPhase", "phase": "pythonRuntimeDepsCheckHook" } Running phase: pythonRuntimeDepsCheckHook Executing pythonRuntimeDepsCheck Checking runtime dependencies for prowler-3.15.3-py3-none-any.whl - azure-keyvault-keys not installed - azure-mgmt-applicationinsights not installed - azure-mgmt-compute not installed - azure-mgmt-containerservice not installed - azure-mgmt-cosmosdb not installed - azure-mgmt-keyvault not installed - azure-mgmt-monitor not installed - azure-mgmt-network not installed - azure-mgmt-rdbms not installed - azure-mgmt-resource not installed - azure-mgmt-web not installed - msgraph-sdk not installed [result] Failed to update prowler 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ustfd, using log file: /var/log/nixpkgs-update/rPackages.ustfd/2024-03-25.log rPackages.ustfd 0.4.3 -> 0.4.4 https://repology.org/project/r:ustfd/versions attrpath: rPackages.ustfd Checking auto update branch... No auto update branch exists Old version 0.4.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ustfd 0.4.3 -> 0.4.4 https://repology.org/project/r:ustfd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.CohortAlgebra, using log file: /var/log/nixpkgs-update/rPackages.CohortAlgebra/2024-03-25.log rPackages.CohortAlgebra 0.1.0 -> 0.2.0 https://repology.org/project/r:cohortalgebra/versions attrpath: rPackages.CohortAlgebra Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.CohortAlgebra 0.1.0 -> 0.2.0 https://repology.org/project/r:cohortalgebra/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.SAIGEgds, using log file: /var/log/nixpkgs-update/rPackages.SAIGEgds/2024-03-25.log rPackages.SAIGEgds 2.2.0 -> 2.2.1 https://repology.org/project/r:saigegds/versions attrpath: rPackages.SAIGEgds Checking auto update branch... No auto update branch exists Old version 2.2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.SAIGEgds 2.2.0 -> 2.2.1 https://repology.org/project/r:saigegds/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.MozillaCA 20230821 -> 20240313 https://repology.org/project/perl:mozilla-ca/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.kyotil, using log file: /var/log/nixpkgs-update/rPackages.kyotil/2024-03-25.log rPackages.kyotil 2023.11-27 -> 2024.1-30 https://repology.org/project/r:kyotil/versions attrpath: rPackages.kyotil Checking auto update branch... No auto update branch exists Old version 2023.11-27" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.kyotil 2023.11-27 -> 2024.1-30 https://repology.org/project/r:kyotil/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.yulab_utils, using log file: /var/log/nixpkgs-update/rPackages.yulab_utils/2024-03-25.log rPackages.yulab_utils 0.1.3 -> 0.1.4 https://repology.org/project/r:yulab.utils/versions attrpath: rPackages.yulab_utils Checking auto update branch... No auto update branch exists Old version 0.1.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.yulab_utils 0.1.3 -> 0.1.4 https://repology.org/project/r:yulab.utils/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ezplot, using log file: /var/log/nixpkgs-update/rPackages.ezplot/2024-03-25.log rPackages.ezplot 0.7.11 -> 0.7.13 https://repology.org/project/r:ezplot/versions attrpath: rPackages.ezplot Checking auto update branch... No auto update branch exists Old version 0.7.11" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ezplot 0.7.11 -> 0.7.13 https://repology.org/project/r:ezplot/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath shattered-pixel-dungeon, using log file: /var/log/nixpkgs-update/shattered-pixel-dungeon/2024-03-25.log shattered-pixel-dungeon 2.3.0 -> 2.3.2 https://repology.org/project/shattered-pixel-dungeon/versions attrpath: shattered-pixel-dungeon Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/games/shattered-pixel-dungeon/default.nix b/pkgs/games/shattered-pixel-dungeon/default.nix index 47026485e9e6..3a2e1c87dbad 100644 --- a/pkgs/games/shattered-pixel-dungeon/default.nix +++ b/pkgs/games/shattered-pixel-dungeon/default.nix @@ -5,13 +5,13 @@ callPackage ./generic.nix rec { pname = "shattered-pixel-dungeon"; - version = "2.3.0"; + version = "2.3.2"; src = fetchFromGitHub { owner = "00-Evan"; repo = "shattered-pixel-dungeon"; rev = "v${version}"; - hash = "sha256-PUAHsFW8rb4SZlZKCIx6SO3U7I7uJgfUal2VXzUjQNs="; + hash = "sha256-CZOi3kLwYdA4U9LjgK4ukPTLFUodyubSQg9JaJpUB9s="; }; depsHash = "sha256-QfAV6LYD6S/8ptaqqKSDtOe4kStwp6LJp8WVc3sH8yc="; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A shattered-pixel-dungeon Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . shattered-pixel-dungeon Standard output: error: build log of 'shattered-pixel-dungeon' is not available [result] Failed to update shattered-pixel-dungeon 2.3.0 -> 2.3.2 https://repology.org/project/shattered-pixel-dungeon/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath httrack, using log file: /var/log/nixpkgs-update/httrack/2024-03-25.log httrack 3.49.2 -> 3.49.5 https://repology.org/project/httrack/versions attrpath: httrack Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv building '/nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv'... trying https://mirror.httrack.com/httrack-3.49.5.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 269 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download httrack-3.49.5.tar.gz from any mirror error: builder for '/nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://mirror.httrack.com/httrack-3.49.5.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 269 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download httrack-3.49.5.tar.gz from any mirror For full logs, run 'nix log /nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'httrack.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv /nix/store/r84i1qi82i0cg1l7q5kvxfdlkry0kq2x-httrack-3.49.5.drv building '/nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv'... trying https://mirror.httrack.com/httrack-3.49.5.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 269 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download httrack-3.49.5.tar.gz from any mirror error: builder for '/nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://mirror.httrack.com/httrack-3.49.5.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 269 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download httrack-3.49.5.tar.gz from any mirror For full logs, run 'nix log /nix/store/sz02vf5bb57bkpzrg87a2wn58y447gsd-httrack-3.49.5.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/r84i1qi82i0cg1l7q5kvxfdlkry0kq2x-httrack-3.49.5.drv' failed to build [result] Failed to update httrack 3.49.2 -> 3.49.5 https://repology.org/project/httrack/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath astromenace, using log file: /var/log/nixpkgs-update/astromenace/2024-03-25.log astromenace 1.4.1 -> 1.4.2 https://repology.org/project/astromenace/versions attrpath: astromenace Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv building '/nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv'... trying https://downloads.sourceforge.net/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1288 0 --:--:-- --:--:-- --:--:-- 1289 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 327 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download astromenace-src-1.4.2.tar.bz2 from any mirror error: builder for '/nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 327 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download astromenace-src-1.4.2.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'astromenace.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv /nix/store/hw6hzf0xvgsrmrddqqjbmhxwb93xr028-astromenace-1.4.2.drv building '/nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv'... trying https://downloads.sourceforge.net/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1287 0 --:--:-- --:--:-- --:--:-- 1289 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 248 0 --:--:-- --:--:-- --:--:-- 248 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 327 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download astromenace-src-1.4.2.tar.bz2 from any mirror error: builder for '/nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 248 0 --:--:-- --:--:-- --:--:-- 248 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 327 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/openastromenace/astromenace-src-1.4.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download astromenace-src-1.4.2.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/vkr369x2hwn3y0jm0jyz3iv19jbmg4m7-astromenace-src-1.4.2.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/hw6hzf0xvgsrmrddqqjbmhxwb93xr028-astromenace-1.4.2.drv' failed to build [result] Failed to update astromenace 1.4.1 -> 1.4.2 https://repology.org/project/astromenace/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath msp430GccSupport, using log file: /var/log/nixpkgs-update/msp430GccSupport/2024-03-25.log msp430GccSupport 1.207 -> 1.208 https://repology.org/project/msp430-gcc-support-files/versions attrpath: msp430GccSupport Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/6dmqqisknkzdlr1i83bzf1dn5yrmwhak-source.drv waiting for lock on '/nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source'... building '/nix/store/6dmqqisknkzdlr1i83bzf1dn5yrmwhak-source.drv'... trying http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/6_1_1_0/exports/msp430-gcc-support-files-1.208.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 303 100 303 0 0 251 0 0:00:01 0:00:01 --:--:-- 251 0 9065 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/6dmqqisknkzdlr1i83bzf1dn5yrmwhak-source.drv' failed with exit code 1; last 8 log lines: > > trying http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/6_1_1_0/exports/msp430-gcc-support-files-1.208.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 303 100 303 0 0 251 0 0:00:01 0:00:01 --:--:-- 251 > 0 9065 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/6dmqqisknkzdlr1i83bzf1dn5yrmwhak-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'msp430GccSupport.originalSrc' not found stderr did not split as expected full stderr was: error: … in the condition of the assert statement at /var/cache/nixpkgs-update/worker/worktree/msp430GccSupport/lib/customisation.nix:365:17: 364| in commonAttrs // { 365| drvPath = assert condition; drv.drvPath; | ^ 366| outPath = assert condition; drv.outPath; … while evaluating the attribute 'handled' at /var/cache/nixpkgs-update/worker/worktree/msp430GccSupport/pkgs/stdenv/generic/check-meta.nix:490:7: 489| # or, alternatively, just output a warning message. 490| handled = | ^ 491| ( (stack trace truncated; use '--show-trace' to show the full trace) error: Package ‘msp430-gcc-support-files-1.208’ in /var/cache/nixpkgs-update/worker/worktree/msp430GccSupport/pkgs/development/misc/msp430/gcc-support.nix:23 is not available on the requested hostPlatform: hostPlatform.config = "x86_64-unknown-linux-gnu" package.meta.platforms = [ "msp430-none" ] package.meta.badPlatforms = [ ] , refusing to evaluate. a) To temporarily allow packages that are unsupported for this system, you can use an environment variable for a single invocation of the nix tools. $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake, then pass `--impure` in order to allow use of environment variables. b) For `nixos-rebuild` you can set { nixpkgs.config.allowUnsupportedSystem = true; } in configuration.nix to override this. c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add { allowUnsupportedSystem = true; } to ~/.config/nixpkgs/config.nix. [result] Failed to update msp430GccSupport 1.207 -> 1.208 https://repology.org/project/msp430-gcc-support-files/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath x3270, using log file: /var/log/nixpkgs-update/x3270/2024-03-25.log x3270 4.0ga9 -> 4.3ga7 https://repology.org/project/x3270/versions attrpath: x3270 Checking auto update branch... No auto update branch exists Old version 4.0ga9" not present in master derivation file with contents: { lib, stdenv, fetchurl, m4, expat , libX11, libXt, libXaw, libXmu, bdftopcf, mkfontdir , fontadobe100dpi, fontadobeutopia100dpi, fontbh100dpi , fontbhlucidatypewriter100dpi, fontbitstream100dpi , tcl , ncurses }: let majorVersion = "4"; minorVersion = "0"; versionSuffix = "ga9"; in stdenv.mkDerivation rec { pname = "x3270"; version = "${majorVersion}.${minorVersion}${versionSuffix}"; src = fetchurl { url = "http://x3270.bgp.nu/download/0${majorVersion}.0${minorVersion}/suite3270-${version}-src.tgz"; sha256 = "0km24rgll0s4ji6iz8lvy5ra76ds162s95y33w5px6697cwqkp9j"; }; buildFlags = [ "unix" ]; postConfigure = '' pushd c3270 ; ./configure ; popd ''; nativeBuildInputs = [ m4 ]; buildInputs = [ expat libX11 libXt libXaw libXmu bdftopcf mkfontdir fontadobe100dpi fontadobeutopia100dpi fontbh100dpi fontbhlucidatypewriter100dpi fontbitstream100dpi tcl ncurses expat ]; meta = with lib; { description = "IBM 3270 terminal emulator for the X Window System"; homepage = "http://x3270.bgp.nu/index.html"; license = licenses.bsd3; maintainers = [ maintainers.anna328p ]; }; } [result] Failed to update x3270 4.0ga9 -> 4.3ga7 https://repology.org/project/x3270/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ScISI, using log file: /var/log/nixpkgs-update/rPackages.ScISI/2024-03-25.log rPackages.ScISI 1.65.0 -> 1.68.0 https://repology.org/project/r:scisi/versions attrpath: rPackages.ScISI Checking auto update branch... No auto update branch exists Old version 1.65.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ScISI 1.65.0 -> 1.68.0 https://repology.org/project/r:scisi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath coreboot-utils, using log file: /var/log/nixpkgs-update/coreboot-utils/2024-03-25.log coreboot-utils 4.21 -> 4.22.01 https://repology.org/project/coreboot/versions attrpath: coreboot-utils Checking auto update branch... No auto update branch exists Received ExitFailure 1 when running Raw command: env EDITOR=echo /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command edit coreboot-utils -f . Standard error: error: cannot find position information for 'coreboot-utils [result] Failed to update coreboot-utils 4.21 -> 4.22.01 https://repology.org/project/coreboot/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath openjump, using log file: /var/log/nixpkgs-update/openjump/2024-03-25.log openjump 1.15 -> 2.0 https://repology.org/project/openjump/versions attrpath: openjump Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv building '/nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv'... trying https://downloads.sourceforge.net/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1297 0 --:--:-- --:--:-- --:--:-- 1301 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 245 0 --:--:-- --:--:-- --:--:-- 244 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 342 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download OpenJUMP-Portable-2.0-r6241-CORE.zip from any mirror error: builder for '/nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 245 0 --:--:-- --:--:-- --:--:-- 244 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 342 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download OpenJUMP-Portable-2.0-r6241-CORE.zip from any mirror For full logs, run 'nix log /nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'openjump.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv /nix/store/54gxpafgsnnp971xa7wgwnhlm3fl7bgl-openjump-2.0.drv building '/nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv'... trying https://downloads.sourceforge.net/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1292 0 --:--:-- --:--:-- --:--:-- 1301 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 342 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download OpenJUMP-Portable-2.0-r6241-CORE.zip from any mirror error: builder for '/nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 342 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/jump-pilot/OpenJUMP/2.0/OpenJUMP-Portable-2.0-r6241-CORE.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download OpenJUMP-Portable-2.0-r6241-CORE.zip from any mirror For full logs, run 'nix log /nix/store/3cpprw75xp3lij7nmp1f8pyxpx7vb222-OpenJUMP-Portable-2.0-r6241-CORE.zip.drv'. error: 1 dependencies of derivation '/nix/store/54gxpafgsnnp971xa7wgwnhlm3fl7bgl-openjump-2.0.drv' failed to build [result] Failed to update openjump 1.15 -> 2.0 https://repology.org/project/openjump/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ddd, using log file: /var/log/nixpkgs-update/ddd/2024-03-25.log ddd 3.3.12 -> 3.4.0 https://repology.org/project/ddd/versions attrpath: ddd Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - ddd: 3.3.12 -> 3.4.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/297360" [result] Failed to update ddd 3.3.12 -> 3.4.0 https://repology.org/project/ddd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cudaPackages.cutensor, using log file: /var/log/nixpkgs-update/cudaPackages.cutensor/2024-03-25.log cudaPackages.cutensor 1.7.0.1 -> 2.0.0.7 https://repology.org/project/libcutensor/versions attrpath: cudaPackages.cutensor Checking auto update branch... No auto update branch exists Old version 1.7.0.1" not present in master derivation file with contents: # Support matrix can be found at # https://docs.nvidia.com/deeplearning/cudnn/archives/cudnn-880/support-matrix/index.html # # TODO(@connorbaker): # This is a very similar strategy to CUDA/CUDNN: # # - Get all versions supported by the current release of CUDA # - Build all of them # - Make the newest the default # # Unique twists: # # - Instead of providing different releases for each version of CUDA, CuTensor has multiple subdirectories in `lib` # -- one for each version of CUDA. { cudaVersion, flags, hostPlatform, lib, mkVersionedPackageName, }: let inherit (lib) attrsets lists modules versions strings trivial ; redistName = "cutensor"; pname = "libcutensor"; cutensorVersions = [ "1.3.3" "1.4.0" "1.5.0" "1.6.2" "1.7.0" ]; # Manifests :: { redistrib, feature } # Each release of cutensor gets mapped to an evaluated module for that release. # From there, we can get the min/max CUDA versions supported by that release. # listOfManifests :: List Manifests listOfManifests = let configEvaluator = fullCutensorVersion: modules.evalModules { modules = [ ../modules # We need to nest the manifests in a config.cutensor.manifests attribute so the # module system can evaluate them. { cutensor.manifests = { redistrib = trivial.importJSON (./manifests + "/redistrib_${fullCutensorVersion}.json"); feature = trivial.importJSON (./manifests + "/feature_${fullCutensorVersion}.json"); }; } ]; }; # Un-nest the manifests attribute set. releaseGrabber = evaluatedModules: evaluatedModules.config.cutensor.manifests; in lists.map (trivial.flip trivial.pipe [ configEvaluator releaseGrabber ]) cutensorVersions; # Our cudaVersion tells us which version of CUDA we're building against. # The subdirectories in lib/ tell us which versions of CUDA are supported. # Typically the names will look like this: # # - 10.2 # - 11 # - 11.0 # - 12 # libPath :: String libPath = let cudaMajorMinor = versions.majorMinor cudaVersion; cudaMajor = versions.major cudaVersion; in if cudaMajorMinor == "10.2" then cudaMajorMinor else cudaMajor; # A release is supported if it has a libPath that matches our CUDA version for our platform. # LibPath are not constant across the same release -- one platform may support fewer # CUDA versions than another. # redistArch :: String redistArch = flags.getRedistArch hostPlatform.system; # platformIsSupported :: Manifests -> Boolean platformIsSupported = {feature, ...}: (attrsets.attrByPath [ pname redistArch ] null feature ) != null; # TODO(@connorbaker): With an auxilliary file keeping track of the CUDA versions each release supports, # we could filter out releases that don't support our CUDA version. # However, we don't have that currently, so we make a best-effort to try to build TensorRT with whatever # libPath corresponds to our CUDA version. # supportedManifests :: List Manifests supportedManifests = builtins.filter platformIsSupported listOfManifests; # Compute versioned attribute name to be used in this package set # Patch version changes should not break the build, so we only use major and minor # computeName :: RedistribRelease -> String computeName = {version, ...}: mkVersionedPackageName redistName version; in final: _: let # buildCutensorPackage :: Manifests -> AttrSet Derivation buildCutensorPackage = {redistrib, feature}: let drv = final.callPackage ../generic-builders/manifest.nix { inherit pname redistName libPath; redistribRelease = redistrib.${pname}; featureRelease = feature.${pname}; }; fixedDrv = drv.overrideAttrs ( prevAttrs: { buildInputs = prevAttrs.buildInputs ++ lists.optionals (strings.versionOlder cudaVersion "11.4") [final.cudatoolkit] ++ lists.optionals (strings.versionAtLeast cudaVersion "11.4") ( [final.libcublas.lib] # For some reason, the 1.4.x release of cuTENSOR requires the cudart library. ++ lists.optionals (strings.hasPrefix "1.4" redistrib.${pname}.version) [final.cuda_cudart.lib] ); meta = prevAttrs.meta // { description = "cuTENSOR: A High-Performance CUDA Library For Tensor Primitives"; homepage = "https://developer.nvidia.com/cutensor"; maintainers = prevAttrs.meta.maintainers ++ [lib.maintainers.obsidian-systems-maintenance]; license = lib.licenses.unfreeRedistributable // { shortName = "cuTENSOR EULA"; name = "cuTENSOR SUPPLEMENT TO SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS"; url = "https://docs.nvidia.com/cuda/cutensor/license.html"; }; }; } ); in attrsets.nameValuePair (computeName redistrib.${pname}) fixedDrv; extension = let nameOfNewest = computeName (lists.last supportedManifests).redistrib.${pname}; drvs = builtins.listToAttrs (lists.map buildCutensorPackage supportedManifests); containsDefault = attrsets.optionalAttrs (drvs != {}) {cutensor = drvs.${nameOfNewest};}; in drvs // containsDefault; in extension [result] Failed to update cudaPackages.cutensor 1.7.0.1 -> 2.0.0.7 https://repology.org/project/libcutensor/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath powerline-symbols, using log file: /var/log/nixpkgs-update/powerline-symbols/2024-03-25.log powerline-symbols 2.8.3 -> 20170508 https://repology.org/project/powerline-symbols/versions attrpath: powerline-symbols Checking auto update branch... No auto update branch exists Old version 2.8.3" not present in master derivation file with contents: { lib, config, stdenv, stdenvNoCC, jq, lndir, runtimeShell, shellcheck-minimal }: let inherit (lib) optionalAttrs warn ; in rec { # Docs in doc/build-helpers/trivial-build-helpers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-runCommand runCommand = name: env: runCommandWith { stdenv = stdenvNoCC; runLocal = false; inherit name; derivationArgs = env; }; # Docs in doc/build-helpers/trivial-build-helpers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-runCommandLocal runCommandLocal = name: env: runCommandWith { stdenv = stdenvNoCC; runLocal = true; inherit name; derivationArgs = env; }; # Docs in doc/build-helpers/trivial-build-helpers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-runCommandCC runCommandCC = name: env: runCommandWith { stdenv = stdenv; runLocal = false; inherit name; derivationArgs = env; }; # `runCommandCCLocal` left out on purpose. # We shouldn’t force the user to have a cc in scope. # TODO: Move documentation for runCommandWith to the Nixpkgs manual /* Generalized version of the `runCommand`-variants which does customized behavior via a single attribute set passed as the first argument instead of having a lot of variants like `runCommand*`. Additionally it allows changing the used `stdenv` freely and has a more explicit approach to changing the arguments passed to `stdenv.mkDerivation`. */ runCommandWith = let # prevent infinite recursion for the default stdenv value defaultStdenv = stdenv; in { # which stdenv to use, defaults to a stdenv with a C compiler, pkgs.stdenv stdenv ? defaultStdenv # whether to build this derivation locally instead of substituting , runLocal ? false # extra arguments to pass to stdenv.mkDerivation , derivationArgs ? { } # name of the resulting derivation , name # TODO(@Artturin): enable strictDeps always }: buildCommand: stdenv.mkDerivation ({ enableParallelBuilding = true; inherit buildCommand name; passAsFile = [ "buildCommand" ] ++ (derivationArgs.passAsFile or [ ]); } // lib.optionalAttrs (! derivationArgs?meta) { pos = let args = builtins.attrNames derivationArgs; in if builtins.length args > 0 then builtins.unsafeGetAttrPos (builtins.head args) derivationArgs else null; } // (lib.optionalAttrs runLocal { preferLocalBuild = true; allowSubstitutes = false; }) // builtins.removeAttrs derivationArgs [ "passAsFile" ]); # Docs in doc/build-helpers/trivial-build-helpers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-writeTextFile writeTextFile = { name , text , executable ? false , destination ? "" , checkPhase ? "" , meta ? { } , allowSubstitutes ? false , preferLocalBuild ? true , derivationArgs ? { } }: let matches = builtins.match "/bin/([^/]+)" destination; in runCommand name ({ inherit text executable checkPhase allowSubstitutes preferLocalBuild; passAsFile = [ "text" ] ++ derivationArgs.passAsFile or [ ]; meta = lib.optionalAttrs (executable && matches != null) { mainProgram = lib.head matches; } // meta // derivationArgs.meta or {}; } // removeAttrs derivationArgs [ "passAsFile" "meta" ]) '' target=$out${lib.escapeShellArg destination} mkdir -p "$(dirname "$target")" if [ -e "$textPath" ]; then mv "$textPath" "$target" else echo -n "$text" > "$target" fi if [ -n "$executable" ]; then chmod +x "$target" fi eval "$checkPhase" ''; # See doc/build-helpers/trivial-build-helpers.chapter.md # or https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-text-writing writeText = name: text: writeTextFile { inherit name text; }; # See doc/build-helpers/trivial-build-helpers.chapter.md # or https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-text-writing writeTextDir = path: text: writeTextFile { inherit text; name = builtins.baseNameOf path; destination = "/${path}"; }; # See doc/build-helpers/trivial-build-helpers.chapter.md # or https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-text-writing writeScript = name: text: writeTextFile { inherit name text; executable = true; }; # See doc/build-helpers/trivial-build-helpers.chapter.md # or https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-text-writing writeScriptBin = name: text: writeTextFile { inherit name text; executable = true; destination = "/bin/${name}"; }; # See doc/build-helpers/trivial-build-helpers.chapter.md # or https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-text-writing writeShellScript = name: text: writeTextFile { inherit name; executable = true; text = '' #!${runtimeShell} ${text} ''; checkPhase = '' ${stdenv.shellDryRun} "$target" ''; }; # See doc/build-helpers/trivial-build-helpers.chapter.md # or https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-text-writing writeShellScriptBin = name: text: writeTextFile { inherit name; executable = true; destination = "/bin/${name}"; text = '' #!${runtimeShell} ${text} ''; checkPhase = '' ${stdenv.shellDryRun} "$target" ''; meta.mainProgram = name; }; # TODO: move parameter documentation to the Nixpkgs manual # See doc/build-helpers/trivial-build-helpers.chapter.md # or https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-writeShellApplication writeShellApplication = { /* The name of the script to write. Type: String */ name, /* The shell script's text, not including a shebang. Type: String */ text, /* Inputs to add to the shell script's `$PATH` at runtime. Type: [String|Derivation] */ runtimeInputs ? [ ], /* Extra environment variables to set at runtime. Type: AttrSet */ runtimeEnv ? null, /* `stdenv.mkDerivation`'s `meta` argument. Type: AttrSet */ meta ? { }, /* The `checkPhase` to run. Defaults to `shellcheck` on supported platforms and `bash -n`. The script path will be given as `$target` in the `checkPhase`. Type: String */ checkPhase ? null, /* Checks to exclude when running `shellcheck`, e.g. `[ "SC2016" ]`. See for a list of checks. Type: [String] */ excludeShellChecks ? [ ], /* Bash options to activate with `set -o` at the start of the script. Defaults to `[ "errexit" "nounset" "pipefail" ]`. Type: [String] */ bashOptions ? [ "errexit" "nounset" "pipefail" ], /* Extra arguments to pass to `stdenv.mkDerivation`. :::{.caution} Certain derivation attributes are used internally, overriding those could cause problems. ::: Type: AttrSet */ derivationArgs ? { }, }: writeTextFile { inherit name meta derivationArgs; executable = true; destination = "/bin/${name}"; allowSubstitutes = true; preferLocalBuild = false; text = '' #!${runtimeShell} ${lib.concatMapStringsSep "\n" (option: "set -o ${option}") bashOptions} '' + lib.optionalString (runtimeEnv != null) (lib.concatStrings (lib.mapAttrsToList (name: value: '' ${lib.toShellVar name value} export ${name} '') runtimeEnv)) + lib.optionalString (runtimeInputs != [ ]) '' export PATH="${lib.makeBinPath runtimeInputs}:$PATH" '' + '' ${text} ''; checkPhase = # GHC (=> shellcheck) isn't supported on some platforms (such as risc-v) # but we still want to use writeShellApplication on those platforms let shellcheckSupported = lib.meta.availableOn stdenv.buildPlatform shellcheck-minimal.compiler; excludeOption = lib.optionalString (excludeShellChecks != [ ]) "--exclude '${lib.concatStringsSep "," excludeShellChecks}'"; shellcheckCommand = lib.optionalString shellcheckSupported '' # use shellcheck which does not include docs # pandoc takes long to build and documentation isn't needed for just running the cli ${lib.getExe shellcheck-minimal} ${excludeOption} "$target" ''; in if checkPhase == null then '' runHook preCheck ${stdenv.shellDryRun} "$target" ${shellcheckCommand} runHook postCheck '' else checkPhase; }; # Create a C binary # TODO: add to writers? pkgs/build-support/writers writeCBin = pname: code: runCommandCC pname { inherit pname code; executable = true; passAsFile = [ "code" ]; # Pointless to do this on a remote machine. preferLocalBuild = true; allowSubstitutes = false; meta = { mainProgram = pname; }; } '' n=$out/bin/${pname} mkdir -p "$(dirname "$n")" mv "$codePath" code.c $CC -x c code.c -o "$n" ''; # TODO: deduplicate with documentation in doc/build-helpers/trivial-build-helpers.chapter.md # see also https://github.com/NixOS/nixpkgs/pull/249721 # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-concatText /* concat a list of files to the nix store. The contents of files are added to the file in the store. Example: # Writes my-file to /nix/store/ concatTextFile { name = "my-file"; files = [ drv1 "${drv2}/path/to/file" ]; } See also the `concatText` helper function below. # Writes executable my-file to /nix/store//bin/my-file concatTextFile { name = "my-file"; files = [ drv1 "${drv2}/path/to/file" ]; executable = true; destination = "/bin/my-file"; } */ concatTextFile = { name # the name of the derivation , files , executable ? false # run chmod +x ? , destination ? "" # relative path appended to $out eg "/bin/foo" , checkPhase ? "" # syntax checks, e.g. for scripts , meta ? { } }: runCommandLocal name { inherit files executable checkPhase meta destination; } '' file=$out$destination mkdir -p "$(dirname "$file")" cat $files > "$file" if [ -n "$executable" ]; then chmod +x "$file" fi eval "$checkPhase" ''; # TODO: deduplicate with documentation in doc/build-helpers/trivial-build-helpers.chapter.md # see also https://github.com/NixOS/nixpkgs/pull/249721 # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-concatText /* Writes a text file to nix store with no optional parameters available. Example: # Writes contents of files to /nix/store/ concatText "my-file" [ file1 file2 ] */ concatText = name: files: concatTextFile { inherit name files; }; # TODO: deduplicate with documentation in doc/build-helpers/trivial-build-helpers.chapter.md # see also https://github.com/NixOS/nixpkgs/pull/249721 # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-concatText /* Writes a text file to nix store with and mark it as executable. Example: # Writes contents of files to /nix/store/ concatScript "my-file" [ file1 file2 ] */ concatScript = name: files: concatTextFile { inherit name files; executable = true; }; /* TODO: Deduplicate this documentation. More docs in doc/build-helpers/trivial-build-helpers.chapter.md See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-symlinkJoin Create a forest of symlinks to the files in `paths`. This creates a single derivation that replicates the directory structure of all the input paths. BEWARE: it may not "work right" when the passed paths contain symlinks to directories. Example: # adds symlinks of hello to current build. symlinkJoin { name = "myhello"; paths = [ pkgs.hello ]; } # adds symlinks of hello and stack to current build and prints "links added" symlinkJoin { name = "myexample"; paths = [ pkgs.hello pkgs.stack ]; postBuild = "echo links added"; } This creates a derivation with a directory structure like the following: /nix/store/sglsr5g079a5235hy29da3mq3hv8sjmm-myexample |-- bin | |-- hello -> /nix/store/qy93dp4a3rqyn2mz63fbxjg228hffwyw-hello-2.10/bin/hello | `-- stack -> /nix/store/6lzdpxshx78281vy056lbk553ijsdr44-stack-2.1.3.1/bin/stack `-- share |-- bash-completion | `-- completions | `-- stack -> /nix/store/6lzdpxshx78281vy056lbk553ijsdr44-stack-2.1.3.1/share/bash-completion/completions/stack |-- fish | `-- vendor_completions.d | `-- stack.fish -> /nix/store/6lzdpxshx78281vy056lbk553ijsdr44-stack-2.1.3.1/share/fish/vendor_completions.d/stack.fish ... symlinkJoin and linkFarm are similar functions, but they output derivations with different structure. symlinkJoin is used to create a derivation with a familiar directory structure (top-level bin/, share/, etc), but with all actual files being symlinks to the files in the input derivations. symlinkJoin is used many places in nixpkgs to create a single derivation that appears to contain binaries, libraries, documentation, etc from multiple input derivations. linkFarm is instead used to create a simple derivation with symlinks to other derivations. A derivation created with linkFarm is often used in CI as a easy way to build multiple derivations at once. */ symlinkJoin = args_@{ name , paths , preferLocalBuild ? true , allowSubstitutes ? false , postBuild ? "" , ... }: let args = removeAttrs args_ [ "name" "postBuild" ] // { inherit preferLocalBuild allowSubstitutes; passAsFile = [ "paths" ]; }; # pass the defaults in runCommand name args '' mkdir -p $out for i in $(cat $pathsPath); do ${lndir}/bin/lndir -silent $i $out done ${postBuild} ''; # TODO: move linkFarm docs to the Nixpkgs manual /* Quickly create a set of symlinks to derivations. This creates a simple derivation with symlinks to all inputs. entries can be a list of attribute sets like [ { name = "name" ; path = "/nix/store/..."; } ] or an attribute set name -> path like: { name = "/nix/store/..."; other = "/nix/store/..."; } Example: # Symlinks hello and stack paths in store to current $out/hello-test and # $out/foobar. linkFarm "myexample" [ { name = "hello-test"; path = pkgs.hello; } { name = "foobar"; path = pkgs.stack; } ] This creates a derivation with a directory structure like the following: /nix/store/qc5728m4sa344mbks99r3q05mymwm4rw-myexample |-- foobar -> /nix/store/6lzdpxshx78281vy056lbk553ijsdr44-stack-2.1.3.1 `-- hello-test -> /nix/store/qy93dp4a3rqyn2mz63fbxjg228hffwyw-hello-2.10 See the note on symlinkJoin for the difference between linkFarm and symlinkJoin. */ linkFarm = name: entries: let entries' = if (lib.isAttrs entries) then entries # We do this foldl to have last-wins semantics in case of repeated entries else if (lib.isList entries) then lib.foldl (a: b: a // { "${b.name}" = b.path; }) { } entries else throw "linkFarm entries must be either attrs or a list!"; linkCommands = lib.mapAttrsToList (name: path: '' mkdir -p "$(dirname ${lib.escapeShellArg "${name}"})" ln -s ${lib.escapeShellArg "${path}"} ${lib.escapeShellArg "${name}"} '') entries'; in runCommand name { preferLocalBuild = true; allowSubstitutes = false; passthru.entries = entries'; } '' mkdir -p $out cd $out ${lib.concatStrings linkCommands} ''; # TODO: move linkFarmFromDrvs docs to the Nixpkgs manual /* Easily create a linkFarm from a set of derivations. This calls linkFarm with a list of entries created from the list of input derivations. It turns each input derivation into an attribute set like { name = drv.name ; path = drv }, and passes this to linkFarm. Example: # Symlinks the hello, gcc, and ghc derivations in $out linkFarmFromDrvs "myexample" [ pkgs.hello pkgs.gcc pkgs.ghc ] This creates a derivation with a directory structure like the following: /nix/store/m3s6wkjy9c3wy830201bqsb91nk2yj8c-myexample |-- gcc-wrapper-9.2.0 -> /nix/store/fqhjxf9ii4w4gqcsx59fyw2vvj91486a-gcc-wrapper-9.2.0 |-- ghc-8.6.5 -> /nix/store/gnf3s07bglhbbk4y6m76sbh42siym0s6-ghc-8.6.5 `-- hello-2.10 -> /nix/store/k0ll91c4npk4lg8lqhx00glg2m735g74-hello-2.10 */ linkFarmFromDrvs = name: drvs: let mkEntryFromDrv = drv: { name = drv.name; path = drv; }; in linkFarm name (map mkEntryFromDrv drvs); # TODO: move onlyBin docs to the Nixpkgs manual /* Produce a derivation that links to the target derivation's `/bin`, and *only* `/bin`. This is useful when your favourite package doesn't have a separate bin output and other contents of the package's output (e.g. setup hooks) cause trouble when used in your environment. */ onlyBin = drv: runCommand "${drv.name}-only-bin" { } '' mkdir -p $out ln -s ${lib.getBin drv}/bin $out/bin ''; # Docs in doc/builders/special/makesetuphook.section.md # See https://nixos.org/manual/nixpkgs/unstable/#sec-pkgs.makeSetupHook makeSetupHook = { name ? lib.warn "calling makeSetupHook without passing a name is deprecated." "hook" , deps ? [ ] # hooks go in nativeBuildInput so these will be nativeBuildInput , propagatedBuildInputs ? [ ] # these will be buildInputs , depsTargetTargetPropagated ? [ ] , meta ? { } , passthru ? { } , substitutions ? { } }: script: runCommand name (substitutions // { # TODO(@Artturin:) substitutions should be inside the env attrset # but users are likely passing non-substitution arguments through substitutions # turn off __structuredAttrs to unbreak substituteAll __structuredAttrs = false; inherit meta; inherit depsTargetTargetPropagated; propagatedBuildInputs = # remove list conditionals before 23.11 lib.warnIf (!lib.isList deps) "'deps' argument to makeSetupHook must be a list. content of deps: ${toString deps}" (lib.warnIf (deps != [ ]) "'deps' argument to makeSetupHook is deprecated and will be removed in release 23.11., Please use propagatedBuildInputs instead. content of deps: ${toString deps}" propagatedBuildInputs ++ (if lib.isList deps then deps else [ deps ])); strictDeps = true; # TODO 2023-01, no backport: simplify to inherit passthru; passthru = passthru // optionalAttrs (substitutions?passthru) (warn "makeSetupHook (name = ${lib.strings.escapeNixString name}): `substitutions.passthru` is deprecated. Please set `passthru` directly." substitutions.passthru); }) ('' mkdir -p $out/nix-support cp ${script} $out/nix-support/setup-hook recordPropagatedDependencies '' + lib.optionalString (substitutions != { }) '' substituteAll ${script} $out/nix-support/setup-hook ''); # Docs in doc/build-helpers/trivial-build-helpers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-writeReferencesToFile # TODO: Convert to throw after Nixpkgs 24.05 branch-off. writeReferencesToFile = (if config.allowAliases then lib.warn else throw) "writeReferencesToFile is deprecated in favour of writeClosure" (path: writeClosure [ path ]); # Docs in doc/build-helpers/trivial-build-helpers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-writeClosure writeClosure = paths: runCommand "runtime-deps" { # Get the cleaner exportReferencesGraph interface __structuredAttrs = true; exportReferencesGraph.graph = paths; nativeBuildInputs = [ jq ]; } '' jq -r ".graph | map(.path) | sort | .[]" "$NIX_ATTRS_JSON_FILE" > "$out" ''; # Docs in doc/build-helpers/trivial-build-helpers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-writeDirectReferencesToFile writeDirectReferencesToFile = path: runCommand "runtime-references" { exportReferencesGraph = [ "graph" path ]; inherit path; } '' touch ./references while read p; do read dummy read nrRefs if [[ $p == $path ]]; then for ((i = 0; i < nrRefs; i++)); do read ref; echo $ref >>./references done else for ((i = 0; i < nrRefs; i++)); do read ref; done fi done < graph sort ./references >$out ''; # TODO: move writeStringReferencesToFile docs to the Nixpkgs manual /* Extract a string's references to derivations and paths (its context) and write them to a text file, removing the input string itself from the dependency graph. This is useful when you want to make a derivation depend on the string's references, but not its contents (to avoid unnecessary rebuilds, for example). Note that this only works as intended on Nix >= 2.3. */ writeStringReferencesToFile = string: /* The basic operation this performs is to copy the string context from `string` to a second string and wrap that string in a derivation. However, that alone is not enough, since nothing in the string refers to the output paths of the derivations/paths in its context, meaning they'll be considered build-time dependencies and removed from the wrapper derivation's closure. Putting the necessary output paths in the new string is however not very straightforward - the attrset returned by `getContext` contains only references to derivations' .drv-paths, not their output paths. In order to "convert" them, we try to extract the corresponding paths from the original string using regex. */ let # Taken from https://github.com/NixOS/nix/blob/130284b8508dad3c70e8160b15f3d62042fc730a/src/libutil/hash.cc#L84 nixHashChars = "0123456789abcdfghijklmnpqrsvwxyz"; context = builtins.getContext string; derivations = lib.filterAttrs (n: v: v ? outputs) context; # Objects copied from outside of the store, such as paths and # `builtins.fetch*`ed ones sources = lib.attrNames (lib.filterAttrs (n: v: v ? path) context); packages = lib.mapAttrs' (name: value: { inherit value; name = lib.head (builtins.match "${builtins.storeDir}/[${nixHashChars}]+-(.*)\.drv" name); }) derivations; # The syntax of output paths differs between outputs named `out` # and other, explicitly named ones. For explicitly named ones, # the output name is suffixed as `-name`, but `out` outputs # aren't suffixed at all, and thus aren't easily distinguished # from named output paths. Therefore, we find all the named ones # first so we can use them to remove false matches when looking # for `out` outputs (see the definition of `outputPaths`). namedOutputPaths = lib.flatten (lib.mapAttrsToList (name: value: (map (output: lib.filter lib.isList (builtins.split "(${builtins.storeDir}/[${nixHashChars}]+-${name}-${output})" string)) (lib.remove "out" value.outputs))) packages); # Only `out` outputs outputPaths = lib.flatten (lib.mapAttrsToList (name: value: if lib.elem "out" value.outputs then lib.filter (x: lib.isList x && # If the matched path is in `namedOutputPaths`, # it's a partial match of an output path where # the output name isn't `out` lib.all (o: !lib.hasPrefix (lib.head x) o) namedOutputPaths) (builtins.split "(${builtins.storeDir}/[${nixHashChars}]+-${name})" string) else [ ]) packages); allPaths = lib.concatStringsSep "\n" (lib.unique (sources ++ namedOutputPaths ++ outputPaths)); allPathsWithContext = builtins.appendContext allPaths context; in if builtins ? getContext then writeText "string-references" allPathsWithContext else writeDirectReferencesToFile (writeText "string-file" string); # Docs in doc/build-helpers/fetchers.chapter.md # See https://nixos.org/manual/nixpkgs/unstable/#requirefile requireFile = { name ? null , sha256 ? null , sha1 ? null , hash ? null , url ? null , message ? null , hashMode ? "flat" }: assert (message != null) || (url != null); assert (sha256 != null) || (sha1 != null) || (hash != null); assert (name != null) || (url != null); let msg = if message != null then message else '' Unfortunately, we cannot download file ${name_} automatically. Please go to ${url} to download it yourself, and add it to the Nix store using either nix-store --add-fixed ${hashAlgo} ${name_} or nix-prefetch-url --type ${hashAlgo} file:///path/to/${name_} ''; hashAlgo = if hash != null then (builtins.head (lib.strings.splitString "-" hash)) else if sha256 != null then "sha256" else "sha1"; hashAlgo_ = if hash != null then "" else hashAlgo; hash_ = if hash != null then hash else if sha256 != null then sha256 else sha1; name_ = if name == null then baseNameOf (toString url) else name; in stdenvNoCC.mkDerivation { name = name_; outputHashMode = hashMode; outputHashAlgo = hashAlgo_; outputHash = hash_; preferLocalBuild = true; allowSubstitutes = false; builder = writeScript "restrict-message" '' source ${stdenvNoCC}/setup cat <<_EOF_ *** ${msg} *** _EOF_ exit 1 ''; }; # TODO: move copyPathToStore docs to the Nixpkgs manual /* Copy a path to the Nix store. Nix automatically copies files to the store before stringifying paths. If you need the store path of a file, ${copyPathToStore } can be shortened to ${}. */ copyPathToStore = builtins.filterSource (p: t: true); # TODO: move copyPathsToStore docs to the Nixpkgs manual /* Copy a list of paths to the Nix store. */ copyPathsToStore = builtins.map copyPathToStore; # TODO: move applyPatches docs to the Nixpkgs manual /* Applies a list of patches to a source directory. Example: # Patching nixpkgs: applyPatches { src = pkgs.path; patches = [ (pkgs.fetchpatch { url = "https://github.com/NixOS/nixpkgs/commit/1f770d20550a413e508e081ddc08464e9d08ba3d.patch"; sha256 = "1nlzx171y3r3jbk0qhvnl711kmdk57jlq4na8f8bs8wz2pbffymr"; }) ]; } */ applyPatches = { src , name ? (if builtins.typeOf src == "path" then builtins.baseNameOf src else if builtins.isAttrs src && builtins.hasAttr "name" src then src.name else throw "applyPatches: please supply a `name` argument because a default name can only be computed when the `src` is a path or is an attribute set with a `name` attribute." ) + "-patched" , patches ? [ ] , prePatch ? "" , postPatch ? "" , ... }@args: if patches == [ ] && prePatch == "" && postPatch == "" then src # nothing to do, so use original src to avoid additional drv else stdenvNoCC.mkDerivation ({ inherit name src patches prePatch postPatch; preferLocalBuild = true; allowSubstitutes = false; phases = "unpackPhase patchPhase installPhase"; installPhase = "cp -R ./ $out"; } # Carry `meta` information from the underlying `src` if present. // (optionalAttrs (src?meta) { inherit (src) meta; }) // (removeAttrs args [ "src" "name" "patches" "prePatch" "postPatch" ])); # TODO: move docs to Nixpkgs manual /* An immutable file in the store with a length of 0 bytes. */ emptyFile = runCommand "empty-file" { outputHashAlgo = "sha256"; outputHashMode = "recursive"; outputHash = "0ip26j2h11n1kgkz36rl4akv694yz65hr72q4kv4b3lxcbi65b3p"; preferLocalBuild = true; } "touch $out"; # TODO: move docs to Nixpkgs manual /* An immutable empty directory in the store. */ emptyDirectory = runCommand "empty-directory" { outputHashAlgo = "sha256"; outputHashMode = "recursive"; outputHash = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5"; preferLocalBuild = true; } "mkdir $out"; } [result] Failed to update powerline-symbols 2.8.3 -> 20170508 https://repology.org/project/powerline-symbols/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.comclim, using log file: /var/log/nixpkgs-update/rPackages.comclim/2024-03-25.log rPackages.comclim 0.9.5 -> 0.9.6 https://repology.org/project/r:comclim/versions attrpath: rPackages.comclim Checking auto update branch... No auto update branch exists Old version 0.9.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.comclim 0.9.5 -> 0.9.6 https://repology.org/project/r:comclim/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath flamegraph, using log file: /var/log/nixpkgs-update/flamegraph/2024-03-25.log flamegraph 2019-02-16 -> 2023.11.07 https://repology.org/project/flamegraph/versions attrpath: flamegraph Checking auto update branch... No auto update branch exists [outpaths] eval start [outpaths] eval end [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/tools/flamegraph/default.nix b/pkgs/development/tools/flamegraph/default.nix index 3a64d741de5c..0df8a0838192 100644 --- a/pkgs/development/tools/flamegraph/default.nix +++ b/pkgs/development/tools/flamegraph/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "FlameGraph"; - version = "2019-02-16"; + version = "2023.11.07"; src = fetchFromGitHub { owner = "brendangregg"; repo = pname; rev = "1b1c6deede9c33c5134c920bdb7a44cc5528e9a7"; - sha256 = "1flvkmv2gbb003d51myl7r0wyhyw1bk9p7v19xagb8xjj4ci947b"; + sha256 = "sha256-65AUGZGyo/VUT2Gfm+YK3EPPQT7U11DaAGCtJ3adm7o="; }; buildInputs = [ perl ]; Source url did not change. [result] Failed to update flamegraph 2019-02-16 -> 2023.11.07 https://repology.org/project/flamegraph/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.RBGL, using log file: /var/log/nixpkgs-update/rPackages.RBGL/2024-03-25.log rPackages.RBGL 1.78.0 -> 1.79.0 https://repology.org/project/r:rbgl/versions attrpath: rPackages.RBGL Checking auto update branch... No auto update branch exists Old version 1.78.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.RBGL 1.78.0 -> 1.79.0 https://repology.org/project/r:rbgl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.checkhelper, using log file: /var/log/nixpkgs-update/rPackages.checkhelper/2024-03-25.log rPackages.checkhelper 0.1.0 -> 0.1.1 https://repology.org/project/r:checkhelper/versions attrpath: rPackages.checkhelper Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.checkhelper 0.1.0 -> 0.1.1 https://repology.org/project/r:checkhelper/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath scotch, using log file: /var/log/nixpkgs-update/scotch/2024-03-25.log scotch 6.1.1 -> 7.0.4 https://repology.org/project/scotch/versions attrpath: scotch Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv building '/nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv'... trying https://gforge.inria.fr/frs/download.php/file/34618/scotch_7.0.4.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 178 100 178 0 0 751 0 --:--:-- --:--:-- --:--:-- 751 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download scotch_7.0.4.tar.gz from any mirror error: builder for '/nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv' failed with exit code 1; last 8 log lines: > > trying https://gforge.inria.fr/frs/download.php/file/34618/scotch_7.0.4.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 178 100 178 0 0 751 0 --:--:-- --:--:-- --:--:-- 751 > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download scotch_7.0.4.tar.gz from any mirror For full logs, run 'nix log /nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'scotch.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv /nix/store/a2cgv1xxnvjmz8lgggnm4g6hxyhc60bx-scotch-7.0.4.drv building '/nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv'... trying https://gforge.inria.fr/frs/download.php/file/34618/scotch_7.0.4.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 178 100 178 0 0 1047 0 --:--:-- --:--:-- --:--:-- 1053 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download scotch_7.0.4.tar.gz from any mirror error: builder for '/nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv' failed with exit code 1; last 8 log lines: > > trying https://gforge.inria.fr/frs/download.php/file/34618/scotch_7.0.4.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 178 100 178 0 0 1047 0 --:--:-- --:--:-- --:--:-- 1053 > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download scotch_7.0.4.tar.gz from any mirror For full logs, run 'nix log /nix/store/s3268zrcf0ivlg66hn4i5idlypvk9fg4-scotch_7.0.4.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/a2cgv1xxnvjmz8lgggnm4g6hxyhc60bx-scotch-7.0.4.drv' failed to build [result] Failed to update scotch 6.1.1 -> 7.0.4 https://repology.org/project/scotch/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.paws, using log file: /var/log/nixpkgs-update/rPackages.paws/2024-03-25.log rPackages.paws 0.4.0 -> 0.5.0 https://repology.org/project/r:paws/versions attrpath: rPackages.paws Checking auto update branch... No auto update branch exists Old version 0.4.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.paws 0.4.0 -> 0.5.0 https://repology.org/project/r:paws/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ums, using log file: /var/log/nixpkgs-update/ums/2024-03-25.log ums 10.12.0 -> 13.8.1 https://repology.org/project/ums/versions attrpath: ums Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update ums 10.12.0 -> 13.8.1 https://repology.org/project/ums/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.clustEff, using log file: /var/log/nixpkgs-update/rPackages.clustEff/2024-03-25.log rPackages.clustEff 0.3.0 -> 0.3.1 https://repology.org/project/r:clusteff/versions attrpath: rPackages.clustEff Checking auto update branch... No auto update branch exists Old version 0.3.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.clustEff 0.3.0 -> 0.3.1 https://repology.org/project/r:clusteff/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.QTLEMM, using log file: /var/log/nixpkgs-update/rPackages.QTLEMM/2024-03-25.log rPackages.QTLEMM 1.4.1 -> 1.5.2 https://repology.org/project/r:qtlemm/versions attrpath: rPackages.QTLEMM Checking auto update branch... No auto update branch exists Old version 1.4.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.QTLEMM 1.4.1 -> 1.5.2 https://repology.org/project/r:qtlemm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.DataExplorer, using log file: /var/log/nixpkgs-update/rPackages.DataExplorer/2024-03-25.log rPackages.DataExplorer 0.8.2 -> 0.8.3 https://repology.org/project/r:dataexplorer/versions attrpath: rPackages.DataExplorer Checking auto update branch... No auto update branch exists Old version 0.8.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.DataExplorer 0.8.2 -> 0.8.3 https://repology.org/project/r:dataexplorer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ppseq, using log file: /var/log/nixpkgs-update/rPackages.ppseq/2024-03-25.log rPackages.ppseq 0.2.2 -> 0.2.3 https://repology.org/project/r:ppseq/versions attrpath: rPackages.ppseq Checking auto update branch... No auto update branch exists Old version 0.2.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ppseq 0.2.2 -> 0.2.3 https://repology.org/project/r:ppseq/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.nearfar, using log file: /var/log/nixpkgs-update/rPackages.nearfar/2024-03-25.log rPackages.nearfar 1.2 -> 1.3 https://repology.org/project/r:nearfar/versions attrpath: rPackages.nearfar Checking auto update branch... No auto update branch exists Old version 1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.nearfar 1.2 -> 1.3 https://repology.org/project/r:nearfar/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.plspm, using log file: /var/log/nixpkgs-update/rPackages.plspm/2024-03-25.log rPackages.plspm 0.5.0 -> 0.5.1 https://repology.org/project/r:plspm/versions attrpath: rPackages.plspm Checking auto update branch... No auto update branch exists Old version 0.5.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.plspm 0.5.0 -> 0.5.1 https://repology.org/project/r:plspm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.MultOrdRS, using log file: /var/log/nixpkgs-update/rPackages.MultOrdRS/2024-03-25.log rPackages.MultOrdRS 0.1-2 -> 0.1-3 https://repology.org/project/r:multordrs/versions attrpath: rPackages.MultOrdRS Checking auto update branch... No auto update branch exists Old version 0.1-2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.MultOrdRS 0.1-2 -> 0.1-3 https://repology.org/project/r:multordrs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.crmPack, using log file: /var/log/nixpkgs-update/rPackages.crmPack/2024-03-25.log rPackages.crmPack 1.0.3 -> 1.0.5 https://repology.org/project/r:crmpack/versions attrpath: rPackages.crmPack Checking auto update branch... No auto update branch exists Old version 1.0.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.crmPack 1.0.3 -> 1.0.5 https://repology.org/project/r:crmpack/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath apache-jena, using log file: /var/log/nixpkgs-update/apache-jena/2024-03-25.log apache-jena 4.10.0 -> 5.0.0 https://repology.org/project/jena/versions attrpath: apache-jena Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/servers/nosql/apache-jena/binary.nix b/pkgs/servers/nosql/apache-jena/binary.nix index 2b7e3c04735d..a991f3fa40e7 100644 --- a/pkgs/servers/nosql/apache-jena/binary.nix +++ b/pkgs/servers/nosql/apache-jena/binary.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { pname = "apache-jena"; - version = "4.10.0"; + version = "5.0.0"; src = fetchurl { url = "mirror://apache/jena/binaries/apache-jena-${version}.tar.gz"; - hash = "sha256-G2kCh5F2WfrSOCr+fEO02mlOSVfV2Oy3uZGNEarLR+M="; + hash = "sha256-Se47rsgp8V6Ypv0QHrwjIXrDPchM1nSl/GmUWMEvLIo="; }; nativeBuildInputs = [ makeWrapper [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/d4nrpmzhkbzfkyk7sgwsms460v97519r-apache-jena-5.0.0" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • apache-jena
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://repology.org/project/jena/versions. meta.description for apache-jena is: RDF database meta.homepage for apache-jena is: https://jena.apache.org ###### Updates performed - Version update ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 5.0.0 with grep in /nix/store/d4nrpmzhkbzfkyk7sgwsms460v97519r-apache-jena-5.0.0 - found 5.0.0 in filename of file in /nix/store/d4nrpmzhkbzfkyk7sgwsms460v97519r-apache-jena-5.0.0 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath apache-jena ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/d4nrpmzhkbzfkyk7sgwsms460v97519r-apache-jena-5.0.0 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A apache-jena https://github.com/r-ryantm/nixpkgs/archive/41781200a448110340ae769bc20f2a2d6c18e65d.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/41781200a448110340ae769bc20f2a2d6c18e65d#apache-jena ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/d4nrpmzhkbzfkyk7sgwsms460v97519r-apache-jena-5.0.0 ls -la /nix/store/d4nrpmzhkbzfkyk7sgwsms460v97519r-apache-jena-5.0.0/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • apache-jena
--- ###### Maintainer pings cc @7c6f434c for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298857 [result] Success updating apache-jena 4.10.0 -> 5.0.0 https://repology.org/project/jena/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.tune, using log file: /var/log/nixpkgs-update/rPackages.tune/2024-03-25.log rPackages.tune 1.1.2 -> 1.2.0 https://repology.org/project/r:tune/versions attrpath: rPackages.tune Checking auto update branch... No auto update branch exists Old version 1.1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.tune 1.1.2 -> 1.2.0 https://repology.org/project/r:tune/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.mcmcensemble, using log file: /var/log/nixpkgs-update/rPackages.mcmcensemble/2024-03-25.log rPackages.mcmcensemble 3.0.0 -> 3.1.0 https://repology.org/project/r:mcmcensemble/versions attrpath: rPackages.mcmcensemble Checking auto update branch... No auto update branch exists Old version 3.0.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.mcmcensemble 3.0.0 -> 3.1.0 https://repology.org/project/r:mcmcensemble/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.lexilang, using log file: /var/log/nixpkgs-update/python312Packages.lexilang/2024-03-25.log python312Packages.lexilang 1.0.1 -> 1.0.2 https://repology.org/project/python:lexilang/versions attrpath: python312Packages.lexilang Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/d9h2jjq4x0pmmrf8ywvw2fgagdykf6ms-packages.json.drv building '/nix/store/d9h2jjq4x0pmmrf8ywvw2fgagdykf6ms-packages.json.drv'... Going to be running update for following packages: - python3.12-lexilang-1.0.1 Press Enter key to continue... Running update for: - python3.12-lexilang-1.0.1: UPDATING ... - python3.12-lexilang-1.0.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/lexilang/default.nix b/pkgs/development/python-modules/lexilang/default.nix index 8577cb521196..6e5fb1102f28 100644 --- a/pkgs/development/python-modules/lexilang/default.nix +++ b/pkgs/development/python-modules/lexilang/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "lexilang"; - version = "1.0.1"; + version = "1.0.2"; pyproject = true; src = fetchFromGitHub { owner = "LibreTranslate"; repo = "LexiLang"; - rev = "v${version}"; - hash = "sha256-TLkaqCE9NDjN2XuYOUkeeWIRcqkxrdg31fS4mEnlcEo="; + rev = "refs/tags/v${version}"; + hash = "sha256-/uSoEz/5HJnFVkXZndIlM+K0OJLJaorFQ6+kWYELjrs="; }; nativeBuildInputs = [ An auto update branch exists with message `python312Packages.lexilang: disable on unsupported Python releases`. New version is 1.0.2. The auto update branch does not match or exceed the new version. There might already be an open PR for this update: - python312Packages.lexilang: 1.0.1 -> 1.0.2 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/297584" [result] Failed to update python312Packages.lexilang 1.0.1 -> 1.0.2 https://repology.org/project/python:lexilang/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.RProtoBufLib, using log file: /var/log/nixpkgs-update/rPackages.RProtoBufLib/2024-03-25.log rPackages.RProtoBufLib 2.14.0 -> 2.14.1 https://repology.org/project/r:rprotobuflib/versions attrpath: rPackages.RProtoBufLib Checking auto update branch... No auto update branch exists Old version 2.14.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.RProtoBufLib 2.14.0 -> 2.14.1 https://repology.org/project/r:rprotobuflib/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.phonopy, using log file: /var/log/nixpkgs-update/python312Packages.phonopy/2024-03-25.log python312Packages.phonopy 2.21.2 -> 2.22.0 https://repology.org/project/python:phonopy/versions attrpath: python312Packages.phonopy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/0wdlcgmd7f1d86g1pfmq88pc7shncgwn-packages.json.drv building '/nix/store/0wdlcgmd7f1d86g1pfmq88pc7shncgwn-packages.json.drv'... Going to be running update for following packages: - python3.12-phonopy-2.22.0 Press Enter key to continue... Running update for: - python3.12-phonopy-2.22.0: UPDATING ... - python3.12-phonopy-2.22.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.phonopy 2.21.2 -> 2.22.0 https://repology.org/project/python:phonopy/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath wasmtime, using log file: /var/log/nixpkgs-update/wasmtime/2024-03-25.log wasmtime 18.0.3 -> 19.0.0 https://repology.org/project/wasmtime/versions attrpath: wasmtime Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - wasmtime: 18.0.3 -> 19.0.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/297481" [result] Failed to update wasmtime 18.0.3 -> 19.0.0 https://repology.org/project/wasmtime/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.stack-data, using log file: /var/log/nixpkgs-update/python312Packages.stack-data/2024-03-25.log python312Packages.stack-data 0.2.0 -> 0.6.3 https://repology.org/project/python:stack-data/versions attrpath: python312Packages.stack-data Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bllsy5cy81ibczi6m8rwai3qg2r4m5qc-packages.json.drv building '/nix/store/bllsy5cy81ibczi6m8rwai3qg2r4m5qc-packages.json.drv'... Going to be running update for following packages: - python3.12-stack-data-0.2.0 Press Enter key to continue... Running update for: - python3.12-stack-data-0.2.0: UPDATING ... - python3.12-stack-data-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.stack-data 0.2.0 -> 0.6.3 https://repology.org/project/python:stack-data/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.changepointsVar, using log file: /var/log/nixpkgs-update/rPackages.changepointsVar/2024-03-25.log rPackages.changepointsVar 0.1.0 -> 0.1.1 https://repology.org/project/r:changepointsvar/versions attrpath: rPackages.changepointsVar Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.changepointsVar 0.1.0 -> 0.1.1 https://repology.org/project/r:changepointsvar/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.TTAinterfaceTrendAnalysis, using log file: /var/log/nixpkgs-update/rPackages.TTAinterfaceTrendAnalysis/2024-03-25.log rPackages.TTAinterfaceTrendAnalysis 1.5.9 -> 1.5.10 https://repology.org/project/r:ttainterfacetrendanalysis/versions attrpath: rPackages.TTAinterfaceTrendAnalysis Checking auto update branch... No auto update branch exists Old version 1.5.9" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.TTAinterfaceTrendAnalysis 1.5.9 -> 1.5.10 https://repology.org/project/r:ttainterfacetrendanalysis/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.spmoran, using log file: /var/log/nixpkgs-update/rPackages.spmoran/2024-03-25.log rPackages.spmoran 0.2.2.9 -> 0.2.3 https://repology.org/project/r:spmoran/versions attrpath: rPackages.spmoran Checking auto update branch... No auto update branch exists Old version 0.2.2.9" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.spmoran 0.2.2.9 -> 0.2.3 https://repology.org/project/r:spmoran/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.segmented, using log file: /var/log/nixpkgs-update/rPackages.segmented/2024-03-25.log rPackages.segmented 2.0-1 -> 2.0.3 https://repology.org/project/r:segmented/versions attrpath: rPackages.segmented Checking auto update branch... No auto update branch exists Old version 2.0-1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.segmented 2.0-1 -> 2.0.3 https://repology.org/project/r:segmented/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ModTools, using log file: /var/log/nixpkgs-update/rPackages.ModTools/2024-03-25.log rPackages.ModTools 0.9.4 -> 0.9.6 https://repology.org/project/r:modtools/versions attrpath: rPackages.ModTools Checking auto update branch... No auto update branch exists Old version 0.9.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ModTools 0.9.4 -> 0.9.6 https://repology.org/project/r:modtools/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.msSPChelpR, using log file: /var/log/nixpkgs-update/rPackages.msSPChelpR/2024-03-25.log rPackages.msSPChelpR 0.9.0 -> 0.9.1 https://repology.org/project/r:msspchelpr/versions attrpath: rPackages.msSPChelpR Checking auto update branch... No auto update branch exists Old version 0.9.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.msSPChelpR 0.9.0 -> 0.9.1 https://repology.org/project/r:msspchelpr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.BuyseTest, using log file: /var/log/nixpkgs-update/rPackages.BuyseTest/2024-03-25.log rPackages.BuyseTest 2.4.0 -> 3.0.2 https://repology.org/project/r:buysetest/versions attrpath: rPackages.BuyseTest Checking auto update branch... No auto update branch exists Old version 2.4.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.BuyseTest 2.4.0 -> 3.0.2 https://repology.org/project/r:buysetest/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.openaistream, using log file: /var/log/nixpkgs-update/rPackages.openaistream/2024-03-25.log rPackages.openaistream 0.1.9 -> 0.2.0 https://repology.org/project/r:openaistream/versions attrpath: rPackages.openaistream Checking auto update branch... No auto update branch exists Old version 0.1.9" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.openaistream 0.1.9 -> 0.2.0 https://repology.org/project/r:openaistream/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.gateR, using log file: /var/log/nixpkgs-update/rPackages.gateR/2024-03-25.log rPackages.gateR 0.1.13 -> 0.1.15 https://repology.org/project/r:gater/versions attrpath: rPackages.gateR Checking auto update branch... No auto update branch exists Old version 0.1.13" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.gateR 0.1.13 -> 0.1.15 https://repology.org/project/r:gater/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.jagsUI, using log file: /var/log/nixpkgs-update/rPackages.jagsUI/2024-03-25.log rPackages.jagsUI 1.5.2 -> 1.6.2 https://repology.org/project/r:jagsui/versions attrpath: rPackages.jagsUI Checking auto update branch... No auto update branch exists Old version 1.5.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.jagsUI 1.5.2 -> 1.6.2 https://repology.org/project/r:jagsui/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.sparrpowR, using log file: /var/log/nixpkgs-update/rPackages.sparrpowR/2024-03-25.log rPackages.sparrpowR 0.2.7 -> 0.2.8 https://repology.org/project/r:sparrpowr/versions attrpath: rPackages.sparrpowR Checking auto update branch... No auto update branch exists Old version 0.2.7" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.sparrpowR 0.2.7 -> 0.2.8 https://repology.org/project/r:sparrpowr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ggridges, using log file: /var/log/nixpkgs-update/rPackages.ggridges/2024-03-25.log rPackages.ggridges 0.5.5 -> 0.5.6 https://repology.org/project/r:ggridges/versions attrpath: rPackages.ggridges Checking auto update branch... No auto update branch exists Old version 0.5.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ggridges 0.5.5 -> 0.5.6 https://repology.org/project/r:ggridges/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.GAGAs, using log file: /var/log/nixpkgs-update/rPackages.GAGAs/2024-03-25.log rPackages.GAGAs 0.6.1 -> 0.6.2 https://repology.org/project/r:gagas/versions attrpath: rPackages.GAGAs Checking auto update branch... No auto update branch exists Old version 0.6.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.GAGAs 0.6.1 -> 0.6.2 https://repology.org/project/r:gagas/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.PDE, using log file: /var/log/nixpkgs-update/rPackages.PDE/2024-03-25.log rPackages.PDE 1.4.7 -> 1.4.8 https://repology.org/project/r:pde/versions attrpath: rPackages.PDE Checking auto update branch... No auto update branch exists Old version 1.4.7" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.PDE 1.4.7 -> 1.4.8 https://repology.org/project/r:pde/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath zbackup, using log file: /var/log/nixpkgs-update/zbackup/2024-03-25.log zbackup 1.4.4 -> 1.5 https://repology.org/project/zbackup/versions attrpath: zbackup Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv building '/nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv'... trying https://github.com/zbackup/zbackup/archive/1.5.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/zbackup/zbackup/archive/1.5.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'zbackup.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv /nix/store/kvy1r6lcgl23ifd5acpmg0xi4z08cnmz-zbackup-1.5.drv building '/nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv'... trying https://github.com/zbackup/zbackup/archive/1.5.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/zbackup/zbackup/archive/1.5.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/yaz8zx6vly28nbr5l2ix2lbny9aaf6ch-source.drv'. error: 1 dependencies of derivation '/nix/store/kvy1r6lcgl23ifd5acpmg0xi4z08cnmz-zbackup-1.5.drv' failed to build [result] Failed to update zbackup 1.4.4 -> 1.5 https://repology.org/project/zbackup/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath zabbix.agent, using log file: /var/log/nixpkgs-update/zabbix.agent/2024-03-25.log zabbix.agent 6.0.26 -> 6.4.12 https://repology.org/project/zabbix/versions attrpath: zabbix.agent Checking auto update branch... No auto update branch exists Old version 6.0.26" not present in master derivation file with contents: { lib, stdenv, fetchurl, pkg-config, libiconv, openssl, pcre }: import ./versions.nix ({ version, hash, ... }: stdenv.mkDerivation { pname = "zabbix-agent"; inherit version; src = fetchurl { url = "https://cdn.zabbix.com/zabbix/sources/stable/${lib.versions.majorMinor version}/zabbix-${version}.tar.gz"; inherit hash; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ libiconv openssl pcre ]; configureFlags = [ "--enable-agent" "--enable-ipv6" "--with-iconv" "--with-libpcre" "--with-openssl=${openssl.dev}" ]; makeFlags = [ "AR:=$(AR)" "RANLIB:=$(RANLIB)" ]; postInstall = '' cp conf/zabbix_agentd/*.conf $out/etc/zabbix_agentd.conf.d/ ''; meta = with lib; { description = "An enterprise-class open source distributed monitoring solution (client-side agent)"; homepage = "https://www.zabbix.com/"; license = licenses.gpl2; maintainers = with maintainers; [ mmahut psyanticy ]; platforms = platforms.linux; }; }) [result] Failed to update zabbix.agent 6.0.26 -> 6.4.12 https://repology.org/project/zabbix/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ibd, using log file: /var/log/nixpkgs-update/rPackages.ibd/2024-03-25.log rPackages.ibd 1.5 -> 1.6 https://repology.org/project/r:ibd/versions attrpath: rPackages.ibd Checking auto update branch... No auto update branch exists Old version 1.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ibd 1.5 -> 1.6 https://repology.org/project/r:ibd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.BaSkePro, using log file: /var/log/nixpkgs-update/rPackages.BaSkePro/2024-03-25.log rPackages.BaSkePro 0.1.0 -> 1.1.1 https://repology.org/project/r:baskepro/versions attrpath: rPackages.BaSkePro Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.BaSkePro 0.1.0 -> 1.1.1 https://repology.org/project/r:baskepro/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.Branching, using log file: /var/log/nixpkgs-update/rPackages.Branching/2024-03-25.log rPackages.Branching 0.9.6 -> 0.9.7 https://repology.org/project/r:branching/versions attrpath: rPackages.Branching Checking auto update branch... No auto update branch exists Old version 0.9.6" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.Branching 0.9.6 -> 0.9.7 https://repology.org/project/r:branching/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nsis, using log file: /var/log/nixpkgs-update/nsis/2024-03-25.log nsis 3.06.1 -> 3061 https://repology.org/project/nsis/versions attrpath: nsis Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update nsis 3.06.1 -> 3061 https://repology.org/project/nsis/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.IP, using log file: /var/log/nixpkgs-update/rPackages.IP/2024-03-25.log rPackages.IP 0.1.1 -> 0.1.3 https://repology.org/project/r:ip/versions attrpath: rPackages.IP Checking auto update branch... No auto update branch exists Old version 0.1.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.IP 0.1.1 -> 0.1.3 https://repology.org/project/r:ip/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.tinycodet, using log file: /var/log/nixpkgs-update/rPackages.tinycodet/2024-03-25.log rPackages.tinycodet 0.3.0 -> 0.4.5 https://repology.org/project/r:tinycodet/versions attrpath: rPackages.tinycodet Checking auto update branch... No auto update branch exists Old version 0.3.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.tinycodet 0.3.0 -> 0.4.5 https://repology.org/project/r:tinycodet/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sleek, using log file: /var/log/nixpkgs-update/sleek/2024-03-25.log sleek 0.3.0 -> 2.0.12 https://repology.org/project/sleek/versions attrpath: sleek Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv building '/nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv'... trying https://github.com/nrempel/sleek/archive/v2.0.12.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/nrempel/sleek/archive/v2.0.12.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'sleek.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv /nix/store/13qjpibadaa2fkl9z5r2jw2l04g7kvy2-sleek-2.0.12.drv these 10 paths will be fetched (0.64 MiB download, 5.13 MiB unpacked): /nix/store/rhcmyb7in0vl1zmqiavhm15jsyb4dcbh-anstream-0.3.0 /nix/store/dlvwamyipbx8jdykc20zsgkp6bdxhcb1-anstyle-wincon-1.0.0 /nix/store/zx6zw4l7gqfbwj60l9ks7a643apqkvv5-cargo-vendor-dir /nix/store/ipdj4lr3j73fc9414bzcd01fsifpvkpv-clap-4.3.0 /nix/store/pbzanixkyvw8rdcihm0dzrvhr8pm8bbw-clap_builder-4.3.0 /nix/store/8b421cap87xa4h7b0wdxb196aymhyjs8-clap_derive-4.3.0 /nix/store/w4w00fsxn6qdq82p1d1fylykqjdjnjhd-errno-0.3.0 /nix/store/h660gmcmij92v2jm8df2ilywy2bkw7ki-io-lifetimes-1.0.10 /nix/store/57jpw8jzas7v8bchzy63zd8mshpfcgb1-rustix-0.37.8 /nix/store/zpjd8p04gjgav79x0142m3r2q14j9zxl-syn-2.0.13 copying path '/nix/store/rhcmyb7in0vl1zmqiavhm15jsyb4dcbh-anstream-0.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/dlvwamyipbx8jdykc20zsgkp6bdxhcb1-anstyle-wincon-1.0.0' from 'https://cache.nixos.org'... copying path '/nix/store/ipdj4lr3j73fc9414bzcd01fsifpvkpv-clap-4.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/pbzanixkyvw8rdcihm0dzrvhr8pm8bbw-clap_builder-4.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/8b421cap87xa4h7b0wdxb196aymhyjs8-clap_derive-4.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/w4w00fsxn6qdq82p1d1fylykqjdjnjhd-errno-0.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/h660gmcmij92v2jm8df2ilywy2bkw7ki-io-lifetimes-1.0.10' from 'https://cache.nixos.org'... copying path '/nix/store/57jpw8jzas7v8bchzy63zd8mshpfcgb1-rustix-0.37.8' from 'https://cache.nixos.org'... copying path '/nix/store/zpjd8p04gjgav79x0142m3r2q14j9zxl-syn-2.0.13' from 'https://cache.nixos.org'... building '/nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv'... copying path '/nix/store/zx6zw4l7gqfbwj60l9ks7a643apqkvv5-cargo-vendor-dir' from 'https://cache.nixos.org'... trying https://github.com/nrempel/sleek/archive/v2.0.12.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/nrempel/sleek/archive/v2.0.12.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/sj3az2qggj51n5liyydfl14pyn8vwh0h-source.drv'. error: 1 dependencies of derivation '/nix/store/13qjpibadaa2fkl9z5r2jw2l04g7kvy2-sleek-2.0.12.drv' failed to build [result] Failed to update sleek 0.3.0 -> 2.0.12 https://repology.org/project/sleek/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath duplicati, using log file: /var/log/nixpkgs-update/duplicati/2024-03-25.log duplicati 2.0.7.1 -> 2.0.7.100 https://repology.org/project/duplicati/versions attrpath: duplicati Checking auto update branch... No auto update branch exists [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath icesl, using log file: /var/log/nixpkgs-update/icesl/2024-03-25.log icesl 2.4.1 -> 2.4.4 https://repology.org/project/icesl/versions attrpath: icesl Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update icesl 2.4.1 -> 2.4.4 https://repology.org/project/icesl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath localsend, using log file: /var/log/nixpkgs-update/localsend/2024-03-25.log localsend 0 -> 1 attrpath: localsend Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ifd810fmj0vd4s7vqqf2waaqhnfm8wv6-packages.json.drv building '/nix/store/ifd810fmj0vd4s7vqqf2waaqhnfm8wv6-packages.json.drv'... Going to be running update for following packages: - localsend-1.14.0 Press Enter key to continue... Running update for: - localsend-1.14.0: UPDATING ... - localsend-1.14.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update localsend 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ocamlPackages.spawn, using log file: /var/log/nixpkgs-update/ocamlPackages.spawn/2024-03-25.log ocamlPackages.spawn 0.15.0 -> 0.15.1 https://repology.org/project/ocaml:spawn/versions attrpath: ocamlPackages.spawn Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update ocamlPackages.spawn 0.15.0 -> 0.15.1 https://repology.org/project/ocaml:spawn/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.AnnotationForge, using log file: /var/log/nixpkgs-update/rPackages.AnnotationForge/2024-03-25.log rPackages.AnnotationForge 1.44.0 -> 1.45.0 https://repology.org/project/r:annotationforge/versions attrpath: rPackages.AnnotationForge Checking auto update branch... No auto update branch exists Old version 1.44.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.AnnotationForge 1.44.0 -> 1.45.0 https://repology.org/project/r:annotationforge/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.Tcl 1.27 -> 1.32 https://repology.org/project/perl:tcl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.bellreg, using log file: /var/log/nixpkgs-update/rPackages.bellreg/2024-03-25.log rPackages.bellreg 0.0.1 -> 0.0.2 https://repology.org/project/r:bellreg/versions attrpath: rPackages.bellreg Checking auto update branch... No auto update branch exists Old version 0.0.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.bellreg 0.0.1 -> 0.0.2 https://repology.org/project/r:bellreg/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ant, using log file: /var/log/nixpkgs-update/ant/2024-03-25.log ant 1.10.11 -> 1.10.14 https://repology.org/project/ant/versions attrpath: ant Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update ant 1.10.11 -> 1.10.14 https://repology.org/project/ant/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath transmission-rss, using log file: /var/log/nixpkgs-update/transmission-rss/2024-03-25.log transmission-rss 0.3.1 -> 1.2.2 https://repology.org/project/transmission-rss/versions attrpath: transmission-rss Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] Hashes equal; no update necessary [result] Failed to update transmission-rss 0.3.1 -> 1.2.2 https://repology.org/project/transmission-rss/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hilbish, using log file: /var/log/nixpkgs-update/hilbish/2024-03-25.log hilbish 2.2.1 -> 2023.07.10 https://repology.org/project/hilbish/versions attrpath: hilbish Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv building '/nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv'... exporting https://github.com/Rosettea/Hilbish.git (rev v2023.07.10) into /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source Initialized empty Git repository in /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source/.git/ fatal: couldn't find remote ref refs/tags/v2023.07.10 remote: Enumerating objects: 275, done. remote: Counting objects: 100% (275/275), done. remote: Compressing objects: 100% (257/257), done. remote: Total 275 (delta 6), reused 145 (delta 4), pack-reused 0 Receiving objects: 100% (275/275), 3.49 MiB | 17.28 MiB/s, done. Resolving deltas: 100% (6/6), done. From https://github.com/Rosettea/Hilbish * branch HEAD -> FETCH_HEAD fatal: Not a valid object name Unrecognized git object type: Unable to checkout refs/tags/v2023.07.10 from https://github.com/Rosettea/Hilbish.git. error: builder for '/nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv' failed with exit code 1; last 14 log lines: > exporting https://github.com/Rosettea/Hilbish.git (rev v2023.07.10) into /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source > Initialized empty Git repository in /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source/.git/ > fatal: couldn't find remote ref refs/tags/v2023.07.10 > remote: Enumerating objects: 275, done. > remote: Counting objects: 100% (275/275), done. > remote: Compressing objects: 100% (257/257), done. > remote: Total 275 (delta 6), reused 145 (delta 4), pack-reused 0 > Receiving objects: 100% (275/275), 3.49 MiB | 17.28 MiB/s, done. > Resolving deltas: 100% (6/6), done. > From https://github.com/Rosettea/Hilbish > * branch HEAD -> FETCH_HEAD > fatal: Not a valid object name > Unrecognized git object type: > Unable to checkout refs/tags/v2023.07.10 from https://github.com/Rosettea/Hilbish.git. For full logs, run 'nix log /nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'hilbish.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv /nix/store/gf51j9x801062fmj80ybh26nl3p9rfai-hilbish-2023.07.10-go-modules.drv /nix/store/1b83w5j98q2xip7bar89rzl2vpqdl10y-hilbish-2023.07.10.drv building '/nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv'... exporting https://github.com/Rosettea/Hilbish.git (rev v2023.07.10) into /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source Initialized empty Git repository in /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source/.git/ fatal: couldn't find remote ref refs/tags/v2023.07.10 remote: Enumerating objects: 275, done. remote: Counting objects: 100% (275/275), done. remote: Compressing objects: 100% (257/257), done. remote: Total 275 (delta 6), reused 145 (delta 4), pack-reused 0 Receiving objects: 100% (275/275), 3.49 MiB | 12.86 MiB/s, done. Resolving deltas: 100% (6/6), done. From https://github.com/Rosettea/Hilbish * branch HEAD -> FETCH_HEAD fatal: Not a valid object name Unrecognized git object type: Unable to checkout refs/tags/v2023.07.10 from https://github.com/Rosettea/Hilbish.git. error: builder for '/nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv' failed with exit code 1; last 14 log lines: > exporting https://github.com/Rosettea/Hilbish.git (rev v2023.07.10) into /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source > Initialized empty Git repository in /nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source/.git/ > fatal: couldn't find remote ref refs/tags/v2023.07.10 > remote: Enumerating objects: 275, done. > remote: Counting objects: 100% (275/275), done. > remote: Compressing objects: 100% (257/257), done. > remote: Total 275 (delta 6), reused 145 (delta 4), pack-reused 0 > Receiving objects: 100% (275/275), 3.49 MiB | 12.86 MiB/s, done. > Resolving deltas: 100% (6/6), done. > From https://github.com/Rosettea/Hilbish > * branch HEAD -> FETCH_HEAD > fatal: Not a valid object name > Unrecognized git object type: > Unable to checkout refs/tags/v2023.07.10 from https://github.com/Rosettea/Hilbish.git. For full logs, run 'nix log /nix/store/0bbi3d7hxbavhpg87hjjvpr9qzvgra17-source.drv'. error: 1 dependencies of derivation '/nix/store/1b83w5j98q2xip7bar89rzl2vpqdl10y-hilbish-2023.07.10.drv' failed to build [result] Failed to update hilbish 2.2.1 -> 2023.07.10 https://repology.org/project/hilbish/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mdbook-pdf-outline, using log file: /var/log/nixpkgs-update/mdbook-pdf-outline/2024-03-25.log mdbook-pdf-outline 0 -> 1 attrpath: mdbook-pdf-outline Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/5xjbpsxqc9jylgxbqpqmyyxghkplcpr4-packages.json.drv building '/nix/store/5xjbpsxqc9jylgxbqpqmyyxghkplcpr4-packages.json.drv'... Going to be running update for following packages: - mdbook-pdf-outline-0.1.4 Press Enter key to continue... Running update for: - mdbook-pdf-outline-0.1.4: UPDATING ... - mdbook-pdf-outline-0.1.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update mdbook-pdf-outline 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath oh-my-posh, using log file: /var/log/nixpkgs-update/oh-my-posh/2024-03-25.log oh-my-posh 19.13.0 -> 19.18.1 https://repology.org/project/oh-my-posh/versions attrpath: oh-my-posh Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = "sha256-LIxOlU9YRA3xdHoilOBpo7P68ThVDOdiqXt47du/20g=" [golangModuleVersion] Replaced vendorHash with sha256-WuPEoDmp/SSf3AqHtYTtMb56PnjZLWr3weZQXEF7pbg= [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/tools/oh-my-posh/default.nix b/pkgs/development/tools/oh-my-posh/default.nix index 13a8de6550b2..60e4c3a43c26 100644 --- a/pkgs/development/tools/oh-my-posh/default.nix +++ b/pkgs/development/tools/oh-my-posh/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "oh-my-posh"; - version = "19.13.0"; + version = "19.18.1"; src = fetchFromGitHub { owner = "jandedobbeleer"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-nQJs+Kj0sxEI15QPLVFyVQWcM6HU6KzsSpW0ogYMzpQ="; + hash = "sha256-Y20PsyXSNu6U1v1OhBX0vGtg9UkuTVqZ1KYUYkRMcWg="; }; - vendorHash = "sha256-LIxOlU9YRA3xdHoilOBpo7P68ThVDOdiqXt47du/20g="; + vendorHash = "sha256-WuPEoDmp/SSf3AqHtYTtMb56PnjZLWr3weZQXEF7pbg="; sourceRoot = "${src.name}/src"; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/fwyisd3qizrvyg8fp3r9x0zj2h9sz95l-oh-my-posh-19.18.1" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • oh-my-posh
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://repology.org/project/oh-my-posh/versions. meta.description for oh-my-posh is: A prompt theme engine for any shell meta.homepage for oh-my-posh is: https://ohmyposh.dev meta.changelog for oh-my-posh is: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v19.18.1 ###### Updates performed - Golang update ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 19.18.1 with grep in /nix/store/fwyisd3qizrvyg8fp3r9x0zj2h9sz95l-oh-my-posh-19.18.1 - found 19.18.1 in filename of file in /nix/store/fwyisd3qizrvyg8fp3r9x0zj2h9sz95l-oh-my-posh-19.18.1 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath oh-my-posh ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/fwyisd3qizrvyg8fp3r9x0zj2h9sz95l-oh-my-posh-19.18.1 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A oh-my-posh https://github.com/r-ryantm/nixpkgs/archive/ae2b2e89e46b304ec67202dd1ae8a22648f7d781.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/ae2b2e89e46b304ec67202dd1ae8a22648f7d781#oh-my-posh ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/fwyisd3qizrvyg8fp3r9x0zj2h9sz95l-oh-my-posh-19.18.1 ls -la /nix/store/fwyisd3qizrvyg8fp3r9x0zj2h9sz95l-oh-my-posh-19.18.1/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • oh-my-posh
--- ###### Maintainer pings cc @lucperkins @urandom2 for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298861 [result] Success updating oh-my-posh 19.13.0 -> 19.18.1 https://repology.org/project/oh-my-posh/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.sasLM, using log file: /var/log/nixpkgs-update/rPackages.sasLM/2024-03-25.log rPackages.sasLM 0.10.0 -> 0.10.2 https://repology.org/project/r:saslm/versions attrpath: rPackages.sasLM Checking auto update branch... No auto update branch exists Old version 0.10.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.sasLM 0.10.0 -> 0.10.2 https://repology.org/project/r:saslm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.OPI, using log file: /var/log/nixpkgs-update/rPackages.OPI/2024-03-25.log rPackages.OPI 2.11.1 -> 2.11.2 https://repology.org/project/r:opi/versions attrpath: rPackages.OPI Checking auto update branch... No auto update branch exists Old version 2.11.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.OPI 2.11.1 -> 2.11.2 https://repology.org/project/r:opi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.fdasrvf, using log file: /var/log/nixpkgs-update/rPackages.fdasrvf/2024-03-25.log rPackages.fdasrvf 2.1.2 -> 2.2.0 https://repology.org/project/r:fdasrvf/versions attrpath: rPackages.fdasrvf Checking auto update branch... No auto update branch exists Old version 2.1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.fdasrvf 2.1.2 -> 2.2.0 https://repology.org/project/r:fdasrvf/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.cauchypca, using log file: /var/log/nixpkgs-update/rPackages.cauchypca/2024-03-25.log rPackages.cauchypca 1.2 -> 1.3 https://repology.org/project/r:cauchypca/versions attrpath: rPackages.cauchypca Checking auto update branch... No auto update branch exists Old version 1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.cauchypca 1.2 -> 1.3 https://repology.org/project/r:cauchypca/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.XMLLibXML 2.0209 -> 2.0210 https://repology.org/project/perl:xml-libxml/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.fuzzySim, using log file: /var/log/nixpkgs-update/rPackages.fuzzySim/2024-03-25.log rPackages.fuzzySim 4.10.5 -> 4.10.7 https://repology.org/project/r:fuzzysim/versions attrpath: rPackages.fuzzySim Checking auto update branch... No auto update branch exists Old version 4.10.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.fuzzySim 4.10.5 -> 4.10.7 https://repology.org/project/r:fuzzysim/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.R_oo, using log file: /var/log/nixpkgs-update/rPackages.R_oo/2024-03-25.log rPackages.R_oo 1.25.0 -> 1.26.0 https://repology.org/project/r:r.oo/versions attrpath: rPackages.R_oo Checking auto update branch... No auto update branch exists Old version 1.25.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.R_oo 1.25.0 -> 1.26.0 https://repology.org/project/r:r.oo/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.projmgr, using log file: /var/log/nixpkgs-update/rPackages.projmgr/2024-03-25.log rPackages.projmgr 0.1.0 -> 0.1.1 https://repology.org/project/r:projmgr/versions attrpath: rPackages.projmgr Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.projmgr 0.1.0 -> 0.1.1 https://repology.org/project/r:projmgr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.logitnorm, using log file: /var/log/nixpkgs-update/rPackages.logitnorm/2024-03-25.log rPackages.logitnorm 0.8.38 -> 0.8.39 https://repology.org/project/r:logitnorm/versions attrpath: rPackages.logitnorm Checking auto update branch... No auto update branch exists Old version 0.8.38" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.logitnorm 0.8.38 -> 0.8.39 https://repology.org/project/r:logitnorm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ggdag, using log file: /var/log/nixpkgs-update/rPackages.ggdag/2024-03-25.log rPackages.ggdag 0.2.10 -> 0.2.12 https://repology.org/project/r:ggdag/versions attrpath: rPackages.ggdag Checking auto update branch... No auto update branch exists Old version 0.2.10" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ggdag 0.2.10 -> 0.2.12 https://repology.org/project/r:ggdag/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.LEGIT, using log file: /var/log/nixpkgs-update/rPackages.LEGIT/2024-03-25.log rPackages.LEGIT 1.4.0 -> 1.4.1 https://repology.org/project/r:legit/versions attrpath: rPackages.LEGIT Checking auto update branch... No auto update branch exists Old version 1.4.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.LEGIT 1.4.0 -> 1.4.1 https://repology.org/project/r:legit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.CountClust, using log file: /var/log/nixpkgs-update/rPackages.CountClust/2024-03-25.log rPackages.CountClust 1.21.0 -> 1.23.1 https://repology.org/project/r:countclust/versions attrpath: rPackages.CountClust Checking auto update branch... No auto update branch exists Old version 1.21.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.CountClust 1.21.0 -> 1.23.1 https://repology.org/project/r:countclust/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.DateTime 1.59 -> 1.65 https://repology.org/project/perl:datetime/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath haskellPackages.pandoc-citeproc-preamble, using log file: /var/log/nixpkgs-update/haskellPackages.pandoc-citeproc-preamble/2024-03-25.log haskellPackages.pandoc-citeproc-preamble 1.6 -> 1.7 https://repology.org/project/haskell:pandoc-citeproc-preamble/versions attrpath: haskellPackages.pandoc-citeproc-preamble Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update haskellPackages.pandoc-citeproc-preamble 1.6 -> 1.7 https://repology.org/project/haskell:pandoc-citeproc-preamble/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ImpactEffectsize, using log file: /var/log/nixpkgs-update/rPackages.ImpactEffectsize/2024-03-25.log rPackages.ImpactEffectsize 0.6.2 -> 0.6.3 https://repology.org/project/r:impacteffectsize/versions attrpath: rPackages.ImpactEffectsize Checking auto update branch... No auto update branch exists Old version 0.6.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ImpactEffectsize 0.6.2 -> 0.6.3 https://repology.org/project/r:impacteffectsize/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sysstat, using log file: /var/log/nixpkgs-update/sysstat/2024-03-25.log sysstat 12.7.4 -> 12.6.2 https://repology.org/project/sysstat/versions attrpath: sysstat Checking auto update branch... No auto update branch exists 12.6.2 is not newer than 12.7.4 according to Nix; versionComparison: -1 [result] Failed to update sysstat 12.7.4 -> 12.6.2 https://repology.org/project/sysstat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sdl-jstest, using log file: /var/log/nixpkgs-update/sdl-jstest/2024-03-25.log sdl-jstest 2018-06-15 -> 20180114 https://repology.org/project/sdl-jstest/versions attrpath: sdl-jstest Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update sdl-jstest 2018-06-15 -> 20180114 https://repology.org/project/sdl-jstest/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath s3backer, using log file: /var/log/nixpkgs-update/s3backer/2024-03-25.log s3backer 2.0.2 -> 2.1.1 https://repology.org/project/s3backer/versions attrpath: s3backer Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/tools/filesystems/s3backer/default.nix b/pkgs/tools/filesystems/s3backer/default.nix index 3585408a2f7d..ab63847f8385 100644 --- a/pkgs/tools/filesystems/s3backer/default.nix +++ b/pkgs/tools/filesystems/s3backer/default.nix @@ -4,10 +4,10 @@ stdenv.mkDerivation rec { pname = "s3backer"; - version = "2.0.2"; + version = "2.1.1"; src = fetchFromGitHub { - sha256 = "sha256-xmOtL4v3UxdjrL09sSfXyF5FoMrNerSqG9nvEuwMvNM="; + sha256 = "sha256-D/KJPKuKZIvL24dIiP7lLnAjHJFodprVAP/V6VJ5iTs="; rev = version; repo = "s3backer"; owner = "archiecobbs"; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A s3backer nix build failed. got build log for 's3backer' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/5bv6d19k09snkx55icqr2fd7yqwq8dpl-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/2i4l0hrliny6s8zhkr39y4mixwn408s4-fix-darwin-builds.patch patching file s3backer.h patch unexpectedly ends in middle of line Reversed (or previously applied) patch detected! Assume -R? [n] Apply anyway? [n] Skipping patch. 1 out of 1 hunk ignored -- saving rejects to file s3backer.h.rej [result] Failed to update s3backer 2.0.2 -> 2.1.1 https://repology.org/project/s3backer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ucommon, using log file: /var/log/nixpkgs-update/ucommon/2024-03-25.log ucommon 7.0.0 -> 7.0.1 https://repology.org/project/ucommon/versions attrpath: ucommon Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv building '/nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv'... trying https://ftpmirror.gnu.org/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 153 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.nluug.nl/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 315 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirrors.kernel.org/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 369 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirror.ibcp.fr/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 277 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirror.dogado.de/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirror.tochlab.net/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 153 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.gnu.org/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 286 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying ftp://ftp.funet.fi/pub/mirrors/ftp.gnu.org/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (78) The file does not exist error: cannot download ucommon-7.0.1.tar.gz from any mirror error: builder for '/nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv' failed with exit code 1; last 25 log lines: > > trying https://mirror.dogado.de/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://mirror.tochlab.net/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 153 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://ftp.gnu.org/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 286 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying ftp://ftp.funet.fi/pub/mirrors/ftp.gnu.org/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (78) The file does not exist > error: cannot download ucommon-7.0.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ucommon.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv /nix/store/c0hl7nxbqpirbrashps9m128r7nsd80b-ucommon-7.0.1.drv building '/nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv'... trying https://ftpmirror.gnu.org/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 277 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.nluug.nl/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 315 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirrors.kernel.org/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 369 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirror.ibcp.fr/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 277 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirror.dogado.de/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirror.tochlab.net/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 153 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.gnu.org/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 286 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying ftp://ftp.funet.fi/pub/mirrors/ftp.gnu.org/gnu/commoncpp/ucommon-7.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (78) The file does not exist error: cannot download ucommon-7.0.1.tar.gz from any mirror error: builder for '/nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv' failed with exit code 1; last 25 log lines: > > trying https://mirror.dogado.de/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://mirror.tochlab.net/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 153 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://ftp.gnu.org/pub/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 286 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying ftp://ftp.funet.fi/pub/mirrors/ftp.gnu.org/gnu/commoncpp/ucommon-7.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (78) The file does not exist > error: cannot download ucommon-7.0.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/x1jnsbpcfp3j6cghkd0hipns1xhwpmg4-ucommon-7.0.1.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/c0hl7nxbqpirbrashps9m128r7nsd80b-ucommon-7.0.1.drv' failed to build [result] Failed to update ucommon 7.0.0 -> 7.0.1 https://repology.org/project/ucommon/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath librsb, using log file: /var/log/nixpkgs-update/librsb/2024-03-25.log librsb 1.2.0.10 -> 1.3.0.2 https://repology.org/project/librsb/versions attrpath: librsb Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/librsb/default.nix b/pkgs/development/libraries/librsb/default.nix index d9dc209a7139..43eff1d3e1bc 100644 --- a/pkgs/development/libraries/librsb/default.nix +++ b/pkgs/development/libraries/librsb/default.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { pname = "librsb"; - version = "1.2.0.10"; + version = "1.3.0.2"; src = fetchurl { url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; - sha256 = "sha256-7Enz94p8Q/yeEJdlk9EAqkmxhjMJ7Y+jzLt6rVLS97g="; + sha256 = "sha256-GMb8RD+hz9KoEQ99S4jVu8tJO56Fs6YgFLi7V6hI4E8="; }; # The default configure flags are still present when building [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A librsb nix build failed. gcc -DHAVE_CONFIG_H -I. -I/build/librsb-1.3.0.2 -I/build/librsb-1.3.0.2/librsbpp -I/build/librsb-1.3.0.2/rsblib -I/build/librsb-1.3.0.2 -DRSBPP_HAS_RSB_H=1 -g -O2 -c -o rsbct.o rsbct.c libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/build/librsb-1.3.0.2 -I/build/librsb-1.3.0.2/librsbpp -I/build/librsb-1.3.0.2/rsblib -I/build/librsb-1.3.0.2 -DRSBPP_HAS_RSB_H=1 -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -c rsbpp_coo.cpp -fPIC -DPIC -o .libs/rsbpp_coo.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/build/librsb-1.3.0.2 -I/build/librsb-1.3.0.2/librsbpp -I/build/librsb-1.3.0.2/rsblib -I/build/librsb-1.3.0.2 -DRSBPP_HAS_RSB_H=1 -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -c rsbpp_csr.cpp -fPIC -DPIC -o .libs/rsbpp_csr.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/build/librsb-1.3.0.2 -I/build/librsb-1.3.0.2/librsbpp -I/build/librsb-1.3.0.2/rsblib -I/build/librsb-1.3.0.2 -DRSBPP_HAS_RSB_H=1 -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -c rsbpp_coo.cpp -o rsbpp_coo.o >/dev/null 2>&1 libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/build/librsb-1.3.0.2 -I/build/librsb-1.3.0.2/librsbpp -I/build/librsb-1.3.0.2/rsblib -I/build/librsb-1.3.0.2 -DRSBPP_HAS_RSB_H=1 -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -c rsbpp_csr.cpp -o rsbpp_csr.o >/dev/null 2>&1 /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash ./libtool --tag=CXX --mode=link g++ -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -o librsbpp.la rsbpp_coo.lo rsbpp_csr.lo -lpthread -lstdc++fs libtool: link: ar cru .libs/librsbpp.a .libs/rsbpp_coo.o .libs/rsbpp_csr.o ar: `u' modifier ignored since `D' is the default (see `U') libtool: link: ranlib .libs/librsbpp.a libtool: link: ( cd ".libs" && rm -f "librsbpp.la" && ln -s "../librsbpp.la" "librsbpp.la" ) /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash ./libtool --tag=CXX --mode=link g++ -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -o rsbpp rsbpp.o librsbpp.la -lpthread -lstdc++fs /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash ./libtool --tag=CXX --mode=link g++ -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -o rsbct rsbct.o librsbpp.la -lpthread -lstdc++fs /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash ./libtool --tag=CXX --mode=link g++ -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -o rsbtt rsbtt.o librsbpp.la -lpthread -lstdc++fs libtool: link: g++ -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -o rsbct rsbct.o ./.libs/librsbpp.a /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++.so -lpthread /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++fs.a -fopenmp -Wl,-rpath -Wl,/nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64 -Wl,-rpath -Wl,/nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64 libtool: link: g++ -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -o rsbtt rsbtt.o ./.libs/librsbpp.a /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++.so -lpthread /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++fs.a -fopenmp -Wl,-rpath -Wl,/nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64 -Wl,-rpath -Wl,/nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64 libtool: link: g++ -fopenmp -g -O2 -DRSBPP_HAS_RSB_H=1 -o rsbpp rsbpp.o ./.libs/librsbpp.a /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++.so -lpthread /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++fs.a -fopenmp -Wl,-rpath -Wl,/nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64 -Wl,-rpath -Wl,/nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64 /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: cannot find /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++fs.a: No such file or directory /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: cannot find /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++fs.a: No such file or directory collect2: error: ld returned 1 exit status /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: cannot find /nix/store/agp6lqznayysqvqkx4k1ggr8n1rsyi8c-gcc-13.2.0-lib/lib/../lib64/libstdc++fs.a: No such file or directory make[2]: *** [Makefile:561: rsbct] Error 1 make[2]: *** Waiting for unfinished jobs.... collect2: error: ld returned 1 exit status make[2]: *** [Makefile:569: rsbpp] Error 1 collect2: error: ld returned 1 exit status make[2]: *** [Makefile:573: rsbtt] Error 1 make[2]: Leaving directory '/build/librsb-1.3.0.2/librsbpp' make[1]: *** [Makefile:2259: all-recursive] Error 1 make[1]: Leaving directory '/build/librsb-1.3.0.2' make: *** [Makefile:1115: all] Error 2 [result] Failed to update librsb 1.2.0.10 -> 1.3.0.2 https://repology.org/project/librsb/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath decode-spam-headers, using log file: /var/log/nixpkgs-update/decode-spam-headers/2024-03-25.log decode-spam-headers 0 -> 1 attrpath: decode-spam-headers Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/scpr2rbvllcn0b3v4475dfdiy14j4sy7-packages.json.drv building '/nix/store/scpr2rbvllcn0b3v4475dfdiy14j4sy7-packages.json.drv'... Going to be running update for following packages: - decode-spam-headers-2022-09-22-unreleased Press Enter key to continue... Running update for: - decode-spam-headers-2022-09-22-unreleased: UPDATING ... - decode-spam-headers-2022-09-22-unreleased: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update decode-spam-headers 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath paraview, using log file: /var/log/nixpkgs-update/paraview/2024-03-25.log paraview 5.11.2 -> 5.12.0 https://repology.org/project/paraview/versions attrpath: paraview Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update paraview 5.11.2 -> 5.12.0 https://repology.org/project/paraview/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath keymapp, using log file: /var/log/nixpkgs-update/keymapp/2024-03-25.log keymapp 1.0.8 -> 1.1.0 https://repology.org/project/keymapp/versions attrpath: keymapp Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv building '/nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv'... trying https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 214 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download keymapp-1.1.0.tar.gz from any mirror error: builder for '/nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 214 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download keymapp-1.1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'keymapp.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv /nix/store/3akflb2b860clf606sqg8mnngyqgp8d3-keymapp-1.1.0.drv building '/nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv'... trying https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 214 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download keymapp-1.1.0.tar.gz from any mirror error: builder for '/nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 214 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download keymapp-1.1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/5r14fgzwhh1n9i1kf0xdyf6df23qyh7y-keymapp-1.1.0.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/3akflb2b860clf606sqg8mnngyqgp8d3-keymapp-1.1.0.drv' failed to build [result] Failed to update keymapp 1.0.8 -> 1.1.0 https://repology.org/project/keymapp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nwjs, using log file: /var/log/nixpkgs-update/nwjs/2024-03-25.log nwjs 0.84.0 -> 0.85.0 https://repology.org/project/nwjs/versions attrpath: nwjs Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - nwjs: 0.84.0 -> 0.85.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/295980" [result] Failed to update nwjs 0.84.0 -> 0.85.0 https://repology.org/project/nwjs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cargo-shuttle, using log file: /var/log/nixpkgs-update/cargo-shuttle/2024-03-25.log cargo-shuttle 0.39.0 -> 0.42.0 https://repology.org/project/cargo-shuttle/versions attrpath: cargo-shuttle Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/tools/rust/cargo-shuttle/default.nix b/pkgs/development/tools/rust/cargo-shuttle/default.nix index fcc7ff4756f9..71df1983dc78 100644 --- a/pkgs/development/tools/rust/cargo-shuttle/default.nix +++ b/pkgs/development/tools/rust/cargo-shuttle/default.nix @@ -10,13 +10,13 @@ rustPlatform.buildRustPackage rec { pname = "cargo-shuttle"; - version = "0.39.0"; + version = "0.42.0"; src = fetchFromGitHub { owner = "shuttle-hq"; repo = "shuttle"; rev = "v${version}"; - hash = "sha256-U6C6pUl6Re3fYt5KlBItpErboYXctsotunsUpWmZxiY="; + hash = "sha256-mDDAWEtQafRSXYvNunvOmAWNCDZHnT6BvF8A6bGYIN4="; }; cargoLock = { [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A cargo-shuttle nix build failed. > [[package]] > name = "zstd-safe" > version = "5.0.2+zstd.1.5.2" > source = "registry+https://github.com/rust-lang/crates.io-index" > checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" > dependencies = [ > "libc", > "zstd-sys", > ] > > [[package]] > name = "zstd-sys" > version = "2.0.9+zstd.1.5.5" > source = "registry+https://github.com/rust-lang/crates.io-index" > checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" > dependencies = [ > "cc", > "pkg-config", > ] ERROR: cargoHash or cargoSha256 is out of date Cargo.lock is not the same in /build/cargo-vendor-dir To fix the issue: 1. Set cargoHash/cargoSha256 to an empty string: `cargoHash = "";` 2. Build the derivation and wait for it to fail with a hash mismatch 3. Copy the "got: sha256-..." value back into the cargoHash field You should have: cargoHash = "sha256-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX="; [result] Failed to update cargo-shuttle 0.39.0 -> 0.42.0 https://repology.org/project/cargo-shuttle/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.freegroup, using log file: /var/log/nixpkgs-update/rPackages.freegroup/2024-03-25.log rPackages.freegroup 1.1-6 -> 1.1-8 https://repology.org/project/r:freegroup/versions attrpath: rPackages.freegroup Checking auto update branch... No auto update branch exists Old version 1.1-6" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.freegroup 1.1-6 -> 1.1-8 https://repology.org/project/r:freegroup/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath emacsPackages.ivy-rtags, using log file: /var/log/nixpkgs-update/emacsPackages.ivy-rtags/2024-03-25.log emacsPackages.ivy-rtags 2.38 -> 3.23 https://repology.org/project/emacs:ivy-rtags/versions attrpath: emacsPackages.ivy-rtags Checking auto update branch... No auto update branch exists Old version 2.38" not present in master derivation file with contents: /* # Updating To update the list of packages from MELPA, 1. Run `./update-melpa` 2. Check for evaluation errors: # "../../../../../" points to the default.nix from root of Nixpkgs tree env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaStablePackages env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaPackages 3. Run `git commit -m "melpa-packages $(date -Idate)" recipes-archive-melpa.json` ## Update from overlay Alternatively, run the following command: ./update-from-overlay It will update both melpa and elpa packages using https://github.com/nix-community/emacs-overlay. It's almost instantenous and formats commits for you. */ { lib, pkgs }: variant: self: let dontConfigure = pkg: if pkg != null then pkg.override (args: { melpaBuild = drv: args.melpaBuild (drv // { dontConfigure = true; }); }) else null; markBroken = pkg: if pkg != null then pkg.override (args: { melpaBuild = drv: args.melpaBuild (drv // { meta = (drv.meta or { }) // { broken = true; }; }); }) else null; externalSrc = pkg: epkg: if pkg != null then pkg.override (args: { melpaBuild = drv: args.melpaBuild (drv // { inherit (epkg) src version; propagatedUserEnvPkgs = [ epkg ]; }); }) else null; buildWithGit = pkg: pkg.overrideAttrs (attrs: { nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ [ pkgs.git ]; }); fix-rtags = pkg: if pkg != null then dontConfigure (externalSrc pkg pkgs.rtags) else null; generateMelpa = lib.makeOverridable ({ archiveJson ? ./recipes-archive-melpa.json }: let inherit (import ./libgenerated.nix lib self) melpaDerivation; super = ( lib.listToAttrs (builtins.filter (s: s != null) (map (melpaDerivation variant) (lib.importJSON archiveJson) ) ) ); overrides = lib.optionalAttrs (variant == "stable") { # upstream issue: missing file header abridge-diff = if super.abridge-diff.version == "0.1" then markBroken super.abridge-diff else super.abridge-diff; # upstream issue: missing file header bufshow = markBroken super.bufshow; # upstream issue: missing file header speech-tagger = markBroken super.speech-tagger; # upstream issue: missing file header textmate = markBroken super.textmate; # upstream issue: missing file header window-numbering = markBroken super.window-numbering; # upstream issue: missing file header voca-builder = markBroken super.voca-builder; # upstream issue: missing file header initsplit = markBroken super.initsplit; # upstream issue: missing file header jsfmt = markBroken super.jsfmt; # upstream issue: missing file header maxframe = markBroken super.maxframe; # upstream issue: missing file header connection = markBroken super.connection; # upstream issue: missing file header dictionary = markBroken super.dictionary; # upstream issue: missing file header fold-dwim = if super.fold-dwim.version == "1.2" then markBroken super.fold-dwim else super.fold-dwim; # upstream issue: missing file header gl-conf-mode = if super.gl-conf-mode.version == "0.3" then markBroken super.gl-conf-mode else super.gl-conf-mode; # upstream issue: missing file header ligo-mode = if super.ligo-mode.version == "0.3" then markBroken super.ligo-mode else null; # auto-updater is failing; use manual one # upstream issue: missing file header link = markBroken super.link; # upstream issue: missing file header org-dp = if super.org-dp.version == "1" then markBroken super.org-dp else super.org-dp; # upstream issue: missing file header revbufs = if super.revbufs.version == "1.2" then markBroken super.revbufs else super.revbufs; # upstream issue: missing file header elmine = markBroken super.elmine; # upstream issue: missing file header ido-complete-space-or-hyphen = markBroken super.ido-complete-space-or-hyphen; } // { # Expects bash to be at /bin/bash ac-rtags = fix-rtags super.ac-rtags; airline-themes = super.airline-themes.override { inherit (self.melpaPackages) powerline; }; auto-complete-clang-async = super.auto-complete-clang-async.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.llvmPackages.llvm ]; CFLAGS = "-I${pkgs.llvmPackages.libclang.lib}/include"; LDFLAGS = "-L${pkgs.llvmPackages.libclang.lib}/lib"; }); # part of a larger package caml = dontConfigure super.caml; # part of a larger package # upstream issue: missing package version cmake-mode = dontConfigure super.cmake-mode; company-rtags = fix-rtags super.company-rtags; easy-kill-extras = super.easy-kill-extras.override { inherit (self.melpaPackages) easy-kill; }; dune = dontConfigure super.dune; emacsql = super.emacsql.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.sqlite ]; postBuild = '' cd source/sqlite make cd - ''; postInstall = (old.postInstall or "") + "\n" + '' install -m=755 -D source/sqlite/emacsql-sqlite \ $out/share/emacs/site-lisp/elpa/emacsql-${old.version}/sqlite/emacsql-sqlite ''; stripDebugList = [ "share" ]; }); emacsql-sqlite = super.emacsql-sqlite.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.sqlite ]; postBuild = '' cd source/sqlite make cd - ''; postInstall = (old.postInstall or "") + "\n" + '' install -m=755 -D source/sqlite/emacsql-sqlite \ $out/share/emacs/site-lisp/elpa/emacsql-sqlite-${old.version}/sqlite/emacsql-sqlite ''; stripDebugList = [ "share" ]; }); epkg = super.epkg.overrideAttrs (old: { postPatch = '' substituteInPlace lisp/epkg.el \ --replace '(call-process "sqlite3"' '(call-process "${pkgs.sqlite}/bin/sqlite3"' ''; }); erlang = super.erlang.overrideAttrs (attrs: { buildInputs = attrs.buildInputs ++ [ pkgs.perl pkgs.ncurses ]; }); # https://github.com/syl20bnr/evil-escape/pull/86 evil-escape = super.evil-escape.overrideAttrs (attrs: { postPatch = '' substituteInPlace evil-escape.el \ --replace ' ;;; evil' ';;; evil' ''; packageRequires = with self; [ evil ]; }); ess-R-data-view = super.ess-R-data-view.override { inherit (self.melpaPackages) ess ctable popup; }; flycheck-rtags = fix-rtags super.flycheck-rtags; pdf-tools = super.pdf-tools.overrideAttrs (old: { # Temporary work around for: # - https://github.com/vedang/pdf-tools/issues/102 # - https://github.com/vedang/pdf-tools/issues/103 # - https://github.com/vedang/pdf-tools/issues/109 CXXFLAGS = "-std=c++17"; nativeBuildInputs = [ pkgs.autoconf pkgs.automake pkgs.pkg-config pkgs.removeReferencesTo ]; buildInputs = old.buildInputs ++ [ pkgs.libpng pkgs.zlib pkgs.poppler ]; preBuild = '' make server/epdfinfo remove-references-to ${lib.concatStringsSep " " ( map (output: "-t " + output) ( [ pkgs.glib.dev pkgs.libpng.dev pkgs.poppler.dev pkgs.zlib.dev pkgs.cairo.dev ] ++ lib.optional pkgs.stdenv.isLinux pkgs.stdenv.cc.libc.dev ) )} server/epdfinfo ''; recipe = pkgs.writeText "recipe" '' (pdf-tools :repo "politza/pdf-tools" :fetcher github :files ("lisp/pdf-*.el" "server/epdfinfo")) ''; }); # Build same version as Haskell package hindent = (externalSrc super.hindent pkgs.haskellPackages.hindent).overrideAttrs (attrs: { packageRequires = [ self.haskell-mode ]; }); hotfuzz = super.hotfuzz.overrideAttrs (old: { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.cmake ]; dontUseCmakeBuildDir = true; preBuild = '' make -j$NIX_BUILD_CORES ''; postInstall = (old.postInstall or "") + "\n" + '' install source/hotfuzz-module.so $out/share/emacs/site-lisp/elpa/hotfuzz-* ''; }); irony = super.irony.overrideAttrs (old: { cmakeFlags = old.cmakeFlags or [ ] ++ [ "-DCMAKE_INSTALL_BINDIR=bin" ]; env.NIX_CFLAGS_COMPILE = "-UCLANG_RESOURCE_DIR"; preConfigure = '' cd server ''; preBuild = '' make install -D bin/irony-server $out/bin/irony-server cd .. ''; checkPhase = '' cd source/server make check cd ../.. ''; preFixup = '' rm -rf $out/share/emacs/site-lisp/elpa/*/server ''; dontUseCmakeBuildDir = true; doCheck = pkgs.stdenv.isLinux; packageRequires = [ self.emacs ]; buildInputs = [ pkgs.llvmPackages.libclang self.emacs ]; nativeBuildInputs = [ pkgs.cmake pkgs.llvmPackages.llvm ]; }); # tries to write a log file to $HOME insert-shebang = super.insert-shebang.overrideAttrs (attrs: { HOME = "/tmp"; }); ivy-rtags = fix-rtags super.ivy-rtags; jinx = super.jinx.overrideAttrs (old: let libExt = pkgs.stdenv.hostPlatform.extensions.sharedLibrary; in { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ]; buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.enchant2 ]; postBuild = '' pushd working/jinx NIX_CFLAGS_COMPILE="$($PKG_CONFIG --cflags enchant-2) $NIX_CFLAGS_COMPILE" $CC -shared -o jinx-mod${libExt} jinx-mod.c -lenchant-2 popd ''; postInstall = (old.postInstall or "") + "\n" + '' pushd source outd=$(echo $out/share/emacs/site-lisp/elpa/jinx-*) install -m444 --target-directory=$outd jinx-mod${libExt} rm $outd/jinx-mod.c $outd/emacs-module.h popd ''; meta = old.meta // { maintainers = [ lib.maintainers.DamienCassou ]; }; }); sqlite3 = super.sqlite3.overrideAttrs (old: { buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.sqlite ]; postBuild = '' pushd working/sqlite3 make popd ''; postInstall = (old.postInstall or "") + "\n" + '' pushd source outd=$out/share/emacs/site-lisp/elpa/sqlite3-* install -m444 -t $outd sqlite3-api.so rm $outd/*.c $outd/*.h popd ''; meta = old.meta // { maintainers = [ lib.maintainers.DamienCassou ]; }; }); libgit = super.libgit.overrideAttrs(attrs: { nativeBuildInputs = (attrs.nativeBuildInputs or []) ++ [ pkgs.cmake ]; buildInputs = attrs.buildInputs ++ [ pkgs.libgit2 ]; dontUseCmakeBuildDir = true; postPatch = '' sed -i s/'add_subdirectory(libgit2)'// CMakeLists.txt ''; postBuild = '' pushd working/libgit make popd ''; postInstall = (attrs.postInstall or "") + "\n" + '' outd=$(echo $out/share/emacs/site-lisp/elpa/libgit-**) mkdir $outd/build install -m444 -t $outd/build ./source/src/libegit2.so rm -r $outd/src $outd/Makefile $outd/CMakeLists.txt ''; }); evil-magit = buildWithGit super.evil-magit; eopengrok = buildWithGit super.eopengrok; forge = buildWithGit super.forge; magit = buildWithGit super.magit; magit-find-file = buildWithGit super.magit-find-file; magit-gh-pulls = buildWithGit super.magit-gh-pulls; magit-imerge = buildWithGit super.magit-imerge; magit-lfs = buildWithGit super.magit-lfs; magit-org-todos = buildWithGit super.magit-org-todos; magit-tbdiff = buildWithGit super.magit-tbdiff; magit-topgit = buildWithGit super.magit-topgit; magit-vcsh = buildWithGit super.magit-vcsh; magit-gerrit = buildWithGit super.magit-gerrit; magit-annex = buildWithGit super.magit-annex; magit-todos = buildWithGit super.magit-todos; magit-filenotify = buildWithGit super.magit-filenotify; magit-gitflow = buildWithGit super.magit-gitflow; magithub = buildWithGit super.magithub; magit-svn = buildWithGit super.magit-svn; kubernetes = buildWithGit super.kubernetes; kubernetes-evil = buildWithGit super.kubernetes-evil; egg = buildWithGit super.egg; kapacitor = buildWithGit super.kapacitor; gerrit = buildWithGit super.gerrit; gerrit-download = buildWithGit super.gerrit-download; github-pullrequest = buildWithGit super.github-pullrequest; jist = buildWithGit super.jist; mandoku = buildWithGit super.mandoku; mandoku-tls = buildWithGit super.mandoku-tls; magit-p4 = buildWithGit super.magit-p4; magit-rbr = buildWithGit super.magit-rbr; magit-diff-flycheck = buildWithGit super.magit-diff-flycheck; magit-reviewboard = buildWithGit super.magit-reviewboard; magit-patch-changelog = buildWithGit super.magit-patch-changelog; magit-circleci = buildWithGit super.magit-circleci; magit-delta = buildWithGit super.magit-delta; orgit = buildWithGit super.orgit; orgit-forge = buildWithGit super.orgit-forge; ox-rss = buildWithGit super.ox-rss; python-isort = super.python-isort.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace python-isort.el \ --replace '-isort-command "isort"' '-isort-command "${lib.getExe pkgs.isort}"' ''; }); # upstream issue: missing file header mhc = super.mhc.override { inherit (self.melpaPackages) calfw; }; # missing .NET nemerle = markBroken super.nemerle; # part of a larger package notmuch = dontConfigure super.notmuch; pikchr-mode = super.pikchr-mode.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace pikchr-mode.el \ --replace '"pikchr")' '"${lib.getExe pkgs.pikchr}")' ''; }); rtags = dontConfigure (externalSrc super.rtags pkgs.rtags); rtags-xref = dontConfigure super.rtags; rime = super.rime.overrideAttrs (old: { buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.librime ]; preBuild = (old.preBuild or "") + '' make lib mkdir -p /build/rime-lib cp *.so /build/rime-lib ''; postInstall = (old.postInstall or "") + '' install -m444 -t $out/share/emacs/site-lisp/elpa/rime-* /build/rime-lib/*.so ''; }); shm = super.shm.overrideAttrs (attrs: { propagatedUserEnvPkgs = [ pkgs.haskellPackages.structured-haskell-mode ]; }); # Telega has a server portion for it's network protocol telega = super.telega.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.tdlib ]; nativeBuildInputs = [ pkgs.pkg-config ]; postPatch = '' substituteInPlace telega-customize.el \ --replace 'defcustom telega-server-command "telega-server"' \ "defcustom telega-server-command \"$out/bin/telega-server\"" substituteInPlace telega-sticker.el --replace '"dwebp' '"${pkgs.libwebp}/bin/dwebp' substituteInPlace telega-sticker.el --replace '"ffmpeg' '"${pkgs.ffmpeg}/bin/ffmpeg' substituteInPlace telega-vvnote.el --replace '"ffmpeg' '"${pkgs.ffmpeg}/bin/ffmpeg' ''; postBuild = '' cd source/server make cd - ''; postInstall = (old.postInstall or "") + "\n" + '' mkdir -p $out/bin install -m755 -Dt $out/bin ./source/server/telega-server ''; }); tokei = super.tokei.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace tokei.el \ --replace 'tokei-program "tokei"' 'tokei-program "${lib.getExe pkgs.tokei}"' ''; }); treemacs-magit = super.treemacs-magit.overrideAttrs (attrs: { # searches for Git at build time nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ [ pkgs.git ]; }); typst-mode = super.typst-mode.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace typst-mode.el \ --replace 'typst-executable-location "typst"' 'typst-executable-location "${lib.getExe pkgs.typst}"' ''; }); vdiff-magit = super.vdiff-magit.overrideAttrs (attrs: { nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ [ pkgs.git ]; }); zmq = super.zmq.overrideAttrs (old: { stripDebugList = [ "share" ]; preBuild = '' export EZMQ_LIBDIR=$(mktemp -d) make ''; nativeBuildInputs = [ pkgs.autoconf pkgs.automake pkgs.pkg-config pkgs.libtool (pkgs.zeromq.override { enableDrafts = true; }) ]; postInstall = (old.postInstall or "") + "\n" + '' mv $EZMQ_LIBDIR/emacs-zmq.* $out/share/emacs/site-lisp/elpa/zmq-* rm -r $out/share/emacs/site-lisp/elpa/zmq-*/src rm $out/share/emacs/site-lisp/elpa/zmq-*/Makefile ''; }); # Map legacy renames from emacs2nix since code generation was ported to emacs lisp _0blayout = super."0blayout"; desktop-plus = super."desktop+"; ghub-plus = super."ghub+"; git-gutter-plus = super."git-gutter+"; git-gutter-fringe-plus = super."git-gutter-fringe+"; ido-completing-read-plus = super."ido-completing-read+"; image-plus = super."image+"; image-dired-plus = super."image-dired+"; markdown-mode-plus = super."markdown-mode+"; package-plus = super."package+"; rect-plus = super."rect+"; # upstream issue: missing file header instapaper = markBroken super.instapaper; # upstream issue: doesn't build magit-stgit = markBroken super.magit-stgit; # upstream issue: missing file header melancholy-theme = markBroken super.melancholy-theme; # upstream issue: doesn't build eterm-256color = markBroken super.eterm-256color; # upstream issue: doesn't build per-buffer-theme = markBroken super.per-buffer-theme; # upstream issue: missing file header qiita = markBroken super.qiita; # upstream issue: missing file header sql-presto = markBroken super.sql-presto; editorconfig = super.editorconfig.overrideAttrs (attrs: { propagatedUserEnvPkgs = [ pkgs.editorconfig-core-c ]; }); # missing dependencies evil-search-highlight-persist = super.evil-search-highlight-persist.overrideAttrs (attrs: { packageRequires = with self; [ evil highlight ]; }); hamlet-mode = super.hamlet-mode.overrideAttrs (attrs: { patches = [ # Fix build; maintainer email fails to parse (pkgs.fetchpatch { url = "https://github.com/lightquake/hamlet-mode/commit/253495d1330d6ec88d97fac136c78f57c650aae0.patch"; sha256 = "dSxS5yuXzCW96CUyvJWwjkhf1FMGBfiKKoBxeDVdz9Y="; }) ]; }); helm-rtags = fix-rtags super.helm-rtags; # tries to write to $HOME php-auto-yasnippets = super.php-auto-yasnippets.overrideAttrs (attrs: { HOME = "/tmp"; }); racer = super.racer.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace racer.el \ --replace /usr/local/src/rust/src ${pkgs.rustPlatform.rustcSrc} ''; }); spaceline = super.spaceline.override { inherit (self.melpaPackages) powerline; }; vterm = super.vterm.overrideAttrs (old: { nativeBuildInputs = [ pkgs.cmake ]; buildInputs = old.buildInputs ++ [ self.emacs pkgs.libvterm-neovim ]; cmakeFlags = [ "-DEMACS_SOURCE=${self.emacs.src}" "-DUSE_SYSTEM_LIBVTERM=ON" ]; # we need the proper out directory to exist, so we do this in the # postInstall instead of postBuild postInstall = (old.postInstall or "") + "\n" + '' pushd source/build >/dev/null make install -m444 -t $out/share/emacs/site-lisp/elpa/vterm-** ../*.so popd > /dev/null rm -rf $out/share/emacs/site-lisp/elpa/vterm-**/{CMake*,build,*.c,*.h} ''; }); w3m = super.w3m.override (args: { melpaBuild = drv: args.melpaBuild (drv // { prePatch = let w3m = "${lib.getBin pkgs.w3m}/bin/w3m"; in '' substituteInPlace w3m.el \ --replace 'defcustom w3m-command nil' \ 'defcustom w3m-command "${w3m}"' ''; }); }); wordnut = super.wordnut.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace wordnut.el \ --replace 'wordnut-cmd "wn"' 'wordnut-cmd "${lib.getExe pkgs.wordnet}"' ''; }); mozc = super.mozc.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace src/unix/emacs/mozc.el \ --replace '"mozc_emacs_helper"' '"${pkgs.ibus-engines.mozc}/lib/mozc/mozc_emacs_helper"' ''; }); # Build a helper executable that interacts with the macOS Dictionary.app osx-dictionary = if pkgs.stdenv.isDarwin then super.osx-dictionary.overrideAttrs (old: { buildInputs = old.buildInputs ++ (with pkgs.darwin.apple_sdk.frameworks; [CoreServices Foundation]); dontUnpack = false; buildPhase = (old.buildPhase or "") + '' cd source $CXX -O3 -framework CoreServices -framework Foundation osx-dictionary.m -o osx-dictionary-cli ''; postInstall = (old.postInstall or "") + "\n" + '' outd=$out/share/emacs/site-lisp/elpa/osx-dictionary-* mkdir -p $out/bin install -m444 -t $out/bin osx-dictionary-cli rm $outd/osx-dictionary.m ''; }) else super.osx-dictionary; }; in lib.mapAttrs (n: v: if lib.hasAttr n overrides then overrides.${n} else v) super); in (generateMelpa { }) // { __attrsFailEvaluation = true; } [result] Failed to update emacsPackages.ivy-rtags 2.38 -> 3.23 https://repology.org/project/emacs:ivy-rtags/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath grisbi, using log file: /var/log/nixpkgs-update/grisbi/2024-03-25.log grisbi 2.0.5 -> 3.1.0 https://repology.org/project/grisbi/versions attrpath: grisbi Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv building '/nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv'... trying https://downloads.sourceforge.net/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 893 0 --:--:-- --:--:-- --:--:-- 896 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 243 0 --:--:-- --:--:-- --:--:-- 243 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 309 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download grisbi-3.1.0.tar.bz2 from any mirror error: builder for '/nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 243 0 --:--:-- --:--:-- --:--:-- 243 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 309 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download grisbi-3.1.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'grisbi.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv /nix/store/r0p1a3h7z6h8faiqrh7k5snaf6ffr35b-grisbi-3.1.0.drv building '/nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv'... trying https://downloads.sourceforge.net/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1300 0 --:--:-- --:--:-- --:--:-- 1301 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 249 0 --:--:-- --:--:-- --:--:-- 248 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 309 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download grisbi-3.1.0.tar.bz2 from any mirror error: builder for '/nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 249 0 --:--:-- --:--:-- --:--:-- 248 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 309 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/grisbi/grisbi-3.1.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download grisbi-3.1.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/xyv6xihbh0g6azbqcprn9sxl6rya8cxh-grisbi-3.1.0.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/r0p1a3h7z6h8faiqrh7k5snaf6ffr35b-grisbi-3.1.0.drv' failed to build [result] Failed to update grisbi 2.0.5 -> 3.1.0 https://repology.org/project/grisbi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath vulkan-loader, using log file: /var/log/nixpkgs-update/vulkan-loader/2024-03-25.log vulkan-loader 1.3.275.0 -> 1.3.281 https://repology.org/project/vulkan-loader/versions attrpath: vulkan-loader Checking auto update branch... No auto update branch exists Old version 1.3.275.0" not present in staging derivation file with contents: { lib, stdenv, fetchFromGitHub, cmake, pkg-config, libX11, libxcb , libXrandr, wayland, moltenvk, vulkan-headers, addOpenGLRunpath , testers }: stdenv.mkDerivation (finalAttrs: { pname = "vulkan-loader"; version = "1.3.280.0"; src = fetchFromGitHub { owner = "KhronosGroup"; repo = "Vulkan-Loader"; rev = "vulkan-sdk-${finalAttrs.version}"; hash = "sha256-zkJSPshRaZRDiBvLJbJo8l1MX10KXYZniqtNTNnokT4="; }; patches = [ ./fix-pkgconfig.patch ]; nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ vulkan-headers ] ++ lib.optionals stdenv.isLinux [ libX11 libxcb libXrandr wayland ]; cmakeFlags = [ "-DCMAKE_INSTALL_INCLUDEDIR=${vulkan-headers}/include" ] ++ lib.optional stdenv.isDarwin "-DSYSCONFDIR=${moltenvk}/share" ++ lib.optional stdenv.isLinux "-DSYSCONFDIR=${addOpenGLRunpath.driverLink}/share" ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "-DUSE_GAS=OFF"; outputs = [ "out" "dev" ]; doInstallCheck = true; installCheckPhase = '' grep -q "${vulkan-headers}/include" $dev/lib/pkgconfig/vulkan.pc || { echo vulkan-headers include directory not found in pkg-config file exit 1 } ''; passthru = { tests.pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; }; }; meta = with lib; { description = "LunarG Vulkan loader"; homepage = "https://www.lunarg.com"; platforms = platforms.unix ++ platforms.windows; license = licenses.asl20; maintainers = [ maintainers.ralith ]; broken = finalAttrs.version != vulkan-headers.version; pkgConfigModules = [ "vulkan" ]; }; }) [result] Failed to update vulkan-loader 1.3.275.0 -> 1.3.281 https://repology.org/project/vulkan-loader/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ocamlPackages.lacaml, using log file: /var/log/nixpkgs-update/ocamlPackages.lacaml/2024-03-25.log ocamlPackages.lacaml 11.0.8 -> 11.0.10 https://repology.org/project/ocaml:lacaml/versions attrpath: ocamlPackages.lacaml Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/ocaml-modules/lacaml/default.nix b/pkgs/development/ocaml-modules/lacaml/default.nix index fc2327b736e9..04880bca3ac5 100644 --- a/pkgs/development/ocaml-modules/lacaml/default.nix +++ b/pkgs/development/ocaml-modules/lacaml/default.nix @@ -6,7 +6,7 @@ assert (!blas.isILP64) && (!lapack.isILP64); buildDunePackage rec { pname = "lacaml"; - version = "11.0.8"; + version = "11.0.10"; useDune2 = true; @@ -14,7 +14,7 @@ buildDunePackage rec { src = fetchurl { url = "https://github.com/mmottl/lacaml/releases/download/${version}/lacaml-${version}.tbz"; - sha256 = "1i47wqnd9iy6ndbi9zfahpb592gahp6im26rgpwch13vgzk3kifd"; + sha256 = "sha256-Vg6Hl31u1bvh0hfWU9eqoI8pGZt4YhpGRf3ul3h+SJk="; }; buildInputs = [ dune-configurator ]; [outpaths] eval start [outpaths] eval end Update edits cause no rebuilds. [result] Failed to update ocamlPackages.lacaml 11.0.8 -> 11.0.10 https://repology.org/project/ocaml:lacaml/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.datamods, using log file: /var/log/nixpkgs-update/rPackages.datamods/2024-03-25.log rPackages.datamods 1.4.2 -> 1.4.5 https://repology.org/project/r:datamods/versions attrpath: rPackages.datamods Checking auto update branch... No auto update branch exists Old version 1.4.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.datamods 1.4.2 -> 1.4.5 https://repology.org/project/r:datamods/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ggVennDiagram, using log file: /var/log/nixpkgs-update/rPackages.ggVennDiagram/2024-03-25.log rPackages.ggVennDiagram 1.4.9 -> 1.5.2 https://repology.org/project/r:ggvenndiagram/versions attrpath: rPackages.ggVennDiagram Checking auto update branch... No auto update branch exists Old version 1.4.9" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ggVennDiagram 1.4.9 -> 1.5.2 https://repology.org/project/r:ggvenndiagram/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.tidyhydat, using log file: /var/log/nixpkgs-update/rPackages.tidyhydat/2024-03-25.log rPackages.tidyhydat 0.6.0 -> 0.6.1 https://repology.org/project/r:tidyhydat/versions attrpath: rPackages.tidyhydat Checking auto update branch... No auto update branch exists Old version 0.6.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.tidyhydat 0.6.0 -> 0.6.1 https://repology.org/project/r:tidyhydat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.dde, using log file: /var/log/nixpkgs-update/rPackages.dde/2024-03-25.log rPackages.dde 1.0.4 -> 1.0.5 https://repology.org/project/r:dde/versions attrpath: rPackages.dde Checking auto update branch... No auto update branch exists Old version 1.0.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.dde 1.0.4 -> 1.0.5 https://repology.org/project/r:dde/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.emmeans, using log file: /var/log/nixpkgs-update/rPackages.emmeans/2024-03-25.log rPackages.emmeans 1.9.0 -> 1.10.0 https://repology.org/project/r:emmeans/versions attrpath: rPackages.emmeans Checking auto update branch... No auto update branch exists Old version 1.9.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.emmeans 1.9.0 -> 1.10.0 https://repology.org/project/r:emmeans/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rerddap, using log file: /var/log/nixpkgs-update/rPackages.rerddap/2024-03-25.log rPackages.rerddap 1.0.4 -> 1.1.0 https://repology.org/project/r:rerddap/versions attrpath: rPackages.rerddap Checking auto update branch... No auto update branch exists Old version 1.0.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rerddap 1.0.4 -> 1.1.0 https://repology.org/project/r:rerddap/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mpi, using log file: /var/log/nixpkgs-update/mpi/2024-03-25.log mpi 4.1.6 -> 5.0.2 https://repology.org/project/openmpi/versions attrpath: mpi Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix index 8c54c13c9139..f1319e2e1122 100644 --- a/pkgs/development/libraries/openmpi/default.nix +++ b/pkgs/development/libraries/openmpi/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { pname = "openmpi"; - version = "4.1.6"; + version = "5.0.2"; src = with lib.versions; fetchurl { url = "https://www.open-mpi.org/software/ompi/v${major version}.${minor version}/downloads/${pname}-${version}.tar.bz2"; - sha256 = "sha256-90CZRIVRbetjtTEa8SLCZRefUyig2FelZ7hdsAsR5BU="; + sha256 = "sha256-7katju7iw/9wdyFgv/h3y/OMMwoLw7PdyBFkizOWaY8="; }; postPatch = '' [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A mpi nix build failed. checking for repo version... v5.0.2 checking Open SHMEM version... 5.0.2 checking Open SHMEM release date... Feb 06, 2024 checking Open SHMEM repository version... v5.0.2 checking for repo version... v5.0.2 checking Open Portable Access Layer version... 5.0.2 checking Open Portable Access Layer release date... Feb 06, 2024 checking Open Portable Access Layer repository version... v5.0.2 checking for bootstrap Autoconf version... 2.71 checking for bootstrap Automake version... 1.16 checking for bootstrap Libtool version... 2.4.6 *** Initialization, setup configure: builddir: /build/openmpi-5.0.2 configure: srcdir: /build/openmpi-5.0.2 configure: WARNING: An MPI C++ bindings-related command line option configure: WARNING: was given to "configure". configure: WARNING: configure: WARNING: This command line option will be removed in a future configure: WARNING: version of Open MPI; you should discontinue using it. configure: WARNING: You have been warned! configure: WARNING: configure: WARNING: The MPI C++ bindings were deprecated in the MPI-2.2 configure: WARNING: standard in 2009, and removed from the MPI-3.0 configure: WARNING: standard in 2012. The MPI C++ bindings were then configure: WARNING: removed from Open MPI v5.0.0 in 2022. configure: WARNING: configure: WARNING: If you need support for the MPI C++ bindings, you configure: WARNING: will need to use an older version of Open MPI. configure: error: Build cannot continue. [result] Failed to update mpi 4.1.6 -> 5.0.2 https://repology.org/project/openmpi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath zncModules.playback, using log file: /var/log/nixpkgs-update/zncModules.playback/2024-03-25.log zncModules.playback 2015-08-04 -> 20200510 https://repology.org/project/znc-playback/versions attrpath: zncModules.playback Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update zncModules.playback 2015-08-04 -> 20200510 https://repology.org/project/znc-playback/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath uae, using log file: /var/log/nixpkgs-update/uae/2024-03-25.log uae 0.8.29 -> 3.1.66 https://repology.org/project/uae/versions attrpath: uae Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv building '/nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv'... trying https://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/uae-3.1.66.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download uae-3.1.66.tar.bz2 from any mirror error: builder for '/nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/uae-3.1.66.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download uae-3.1.66.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'uae.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv /nix/store/qyvfrrlpkdpyhbgx6wqc16myphdvxmsv-uae-3.1.66.drv building '/nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv'... trying https://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/uae-3.1.66.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download uae-3.1.66.tar.bz2 from any mirror error: builder for '/nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/uae-3.1.66.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download uae-3.1.66.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/dr6iap3b588ksxw689q7ynwbflblfn23-uae-3.1.66.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/qyvfrrlpkdpyhbgx6wqc16myphdvxmsv-uae-3.1.66.drv' failed to build [result] Failed to update uae 0.8.29 -> 3.1.66 https://repology.org/project/uae/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath vcv-rack, using log file: /var/log/nixpkgs-update/vcv-rack/2024-03-25.log vcv-rack 2.4.0 -> 2.4.1 https://repology.org/project/vcvrack/versions attrpath: vcv-rack Checking auto update branch... No auto update branch exists Old version 2.4.0" not present in master derivation file with contents: { alsa-lib , cmake , copyDesktopItems , curl , fetchFromBitbucket , fetchFromGitHub , ghc_filesystem , glew , glfw , gnome , gtk3-x11 , imagemagick , jansson , jq , lib , libarchive , libicns , libjack2 , libpulseaudio , libsamplerate , makeDesktopItem , makeWrapper , pkg-config , rtmidi , speexdsp , stdenv , wrapGAppsHook , zstd }: let # The package repo vendors some of the package dependencies as submodules. # Unfortunately, they are not pinned, so we have no guarantee that they # will be stable, and therefore, we can't use them directly. Instead # we'll have to fetch them separately ourselves. pffft-source = fetchFromBitbucket { owner = "jpommier"; repo = "pffft"; rev = "38946c766c1afecfa4c5945af77913e38b3cec31"; sha256 = "1w6g9v9fy7bavqacb6qw1nxhcik2w36cvl2d7b0bh68w0pd70j5q"; }; fuzzysearchdatabase-source = fetchFromBitbucket { owner = "j_norberg"; repo = "fuzzysearchdatabase"; rev = "23122d1ff60d936fd766361a30210c954e0c5449"; sha256 = "1s88blx1rn2racmb8n5g0kh1ym7v21573l5m42c4nz266vmrvrvz"; }; nanovg-source = fetchFromGitHub { owner = "VCVRack"; repo = "nanovg"; rev = "0bebdb314aff9cfa28fde4744bcb037a2b3fd756"; sha256 = "HmQhCE/zIKc3f+Zld229s5i5MWzRrBMF9gYrn8JVQzg="; }; nanosvg-source = fetchFromGitHub { owner = "memononen"; repo = "nanosvg"; rev = "9da543e8329fdd81b64eb48742d8ccb09377aed1"; sha256 = "1pkzv75kavkhrbdd2kvq755jyr0vamgrfr7lc33dq3ipkzmqvs2l"; }; osdialog-source = fetchFromGitHub { owner = "AndrewBelt"; repo = "osdialog"; rev = "d0f64f0798c2e47f61d90a5505910ff2d63ca049"; sha256 = "1d3058x6wgzw7b0wai792flk7s6ffw0z4n9sl016v91yjwv7ds3a"; }; oui-blendish-source = fetchFromGitHub { owner = "AndrewBelt"; repo = "oui-blendish"; rev = "2fc6405883f8451944ed080547d073c8f9f31898"; sha256 = "/QZFZuI5kSsEvSfMJlcqB1HiZ9Vcf3vqLqWIMEgxQK8="; }; simde-source = fetchFromGitHub { owner = "simd-everywhere"; repo = "simde"; rev = "b309d8951997201e493380a2fd09198c09ae1b4e"; sha256 = "1hz8mfbhbiafvim4qrkyvh1yndlhydqkxwhls7cfqa48wkpxfip8"; }; tinyexpr-source = fetchFromGitHub { owner = "codeplea"; repo = "tinyexpr"; rev = "74804b8c5d296aad0866bbde6c27e2bc1d85e5f2"; sha256 = "0z3r7wfw7p2wwl6wls2nxacirppr2147yz29whxmjaxy89ic1744"; }; fundamental-source = fetchFromGitHub { owner = "VCVRack"; repo = "Fundamental"; rev = "962547d7651260fb6a04f4d8aafd7c27f0221bee"; # tip of branch v2 sha256 = "066gcjkni8ba98vv0di59x3f9piir0vyy5sb53cqrbrl51x853cg"; }; vcv-rtaudio = stdenv.mkDerivation rec { pname = "vcv-rtaudio"; version = "unstable-2020-01-30"; src = fetchFromGitHub { owner = "VCVRack"; repo = "rtaudio"; rev = "ece277bd839603648c80c8a5f145678e13bc23f3"; # tip of master branch sha256 = "11gpl0ak757ilrq4fi0brj0chmlcr1hihc32yd7qza4fxjw2yx2v"; }; nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ alsa-lib libjack2 libpulseaudio ]; cmakeFlags = [ "-DRTAUDIO_API_ALSA=ON" "-DRTAUDIO_API_PULSE=ON" "-DRTAUDIO_API_JACK=ON" "-DRTAUDIO_API_CORE=OFF" ]; }; in stdenv.mkDerivation rec { pname = "vcv-rack"; version = "2.4.1"; desktopItems = [ (makeDesktopItem { type = "Application"; name = pname; desktopName = "VCV Rack"; genericName = "Eurorack simulator"; comment = "Create music by patching together virtual synthesizer modules"; exec = "Rack"; icon = "Rack"; categories = [ "AudioVideo" "AudioVideoEditing" "Audio" ]; keywords = [ "music" ]; }) ]; src = fetchFromGitHub { owner = "VCVRack"; repo = "Rack"; rev = "v${version}"; hash = "sha256-Gn/sFltLXX2mLv4dDqmr/UPd+JBXVkIZGwMI6Rm0Ih4="; }; patches = [ ./rack-minimize-vendoring.patch ]; prePatch = '' # As we can't use `make dep` to set up the dependencies (as explained # above), we do it here manually mkdir -p dep/include cp -r ${pffft-source}/* dep/pffft cp -r ${fuzzysearchdatabase-source}/* dep/fuzzysearchdatabase cp -r ${nanovg-source}/* dep/nanovg cp -r ${nanosvg-source}/* dep/nanosvg cp -r ${osdialog-source}/* dep/osdialog cp -r ${oui-blendish-source}/* dep/oui-blendish cp -r ${simde-source}/* dep/simde cp -r ${tinyexpr-source}/* dep/tinyexpr cp dep/pffft/*.h dep/include cp dep/fuzzysearchdatabase/src/*.hpp dep/include cp dep/nanosvg/**/*.h dep/include cp dep/nanovg/src/*.h dep/include cp dep/osdialog/*.h dep/include cp dep/oui-blendish/*.h dep/include cp -r dep/simde/simde dep/include cp dep/tinyexpr/tinyexpr.h dep/include # Build and dist the Fundamental plugins cp -r ${fundamental-source} plugins/Fundamental/ chmod -R +rw plugins/Fundamental # will be used as build dir substituteInPlace plugin.mk --replace ":= all" ":= dist" substituteInPlace plugins/Fundamental/src/Logic.cpp \ --replace \ "LightButton>" \ "struct rack::componentlibrary::LightButton>" # Fix reference to zenity substituteInPlace dep/osdialog/osdialog_zenity.c \ --replace 'zenityBin[] = "zenity"' 'zenityBin[] = "${gnome.zenity}/bin/zenity"' ''; nativeBuildInputs = [ copyDesktopItems imagemagick jq libicns makeWrapper pkg-config wrapGAppsHook ]; buildInputs = [ alsa-lib curl ghc_filesystem glew glfw gnome.zenity gtk3-x11 jansson libarchive libjack2 libpulseaudio libsamplerate rtmidi speexdsp vcv-rtaudio zstd ]; makeFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "CROSS_COMPILE=${stdenv.cc.targetPrefix}" ] ++ [ "all" "plugins" ]; installPhase = '' runHook preInstall install -D -m755 -t $out/bin Rack install -D -m755 -t $out/lib libRack.so mkdir -p $out/share/vcv-rack cp -r res cacert.pem Core.json template.vcv LICENSE-GPLv3.txt $out/share/vcv-rack cp -r plugins/Fundamental/dist/Fundamental-*.vcvplugin $out/share/vcv-rack/Fundamental.vcvplugin # Extract pngs from the Apple icon image and create # the missing ones from the 1024x1024 image. icns2png --extract icon.icns for size in 16 24 32 48 64 128 256 512 1024; do mkdir -pv $out/share/icons/hicolor/"$size"x"$size"/apps if [ ! -e icon_"$size"x"$size"x32.png ] ; then convert -resize "$size"x"$size" icon_1024x1024x32.png icon_"$size"x"$size"x32.png fi install -Dm644 icon_"$size"x"$size"x32.png $out/share/icons/hicolor/"$size"x"$size"/apps/Rack.png done; runHook postInstall ''; dontWrapGApps = true; postFixup = '' # Wrap gApp and override the default global resource file directory wrapProgram $out/bin/Rack \ "''${gappsWrapperArgs[@]}" \ --add-flags "-s $out/share/vcv-rack" ''; meta = with lib; { description = "Open-source virtual modular synthesizer"; homepage = "https://vcvrack.com/"; # The source is GPL3+ licensed, some of the art is CC-BY-NC 4.0 or under a # no-derivatives clause license = with licenses; [ gpl3Plus cc-by-nc-40 unfreeRedistributable ]; maintainers = with maintainers; [ nathyong jpotier ddelabru ]; platforms = platforms.linux; }; } [result] Failed to update vcv-rack 2.4.0 -> 2.4.1 https://repology.org/project/vcvrack/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.BeSS, using log file: /var/log/nixpkgs-update/rPackages.BeSS/2024-03-25.log rPackages.BeSS 2.0.3 -> 2.0.4 https://repology.org/project/r:bess/versions attrpath: rPackages.BeSS Checking auto update branch... No auto update branch exists Old version 2.0.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.BeSS 2.0.3 -> 2.0.4 https://repology.org/project/r:bess/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath haskellPackages.network-uri, using log file: /var/log/nixpkgs-update/haskellPackages.network-uri/2024-03-25.log haskellPackages.network-uri 2.6.4.2 -> 2.7.0.0 https://repology.org/project/haskell:network-uri/versions attrpath: haskellPackages.network-uri Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update haskellPackages.network-uri 2.6.4.2 -> 2.7.0.0 https://repology.org/project/haskell:network-uri/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bwbasic, using log file: /var/log/nixpkgs-update/bwbasic/2024-03-25.log bwbasic 3.20 -> 3.22 https://repology.org/project/bwbasic/versions attrpath: bwbasic Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv building '/nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv'... trying https://downloads.sourceforge.net/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 525 0 --:--:-- --:--:-- --:--:-- 526 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 337 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download bwbasic-3.22.zip from any mirror error: builder for '/nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 337 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download bwbasic-3.22.zip from any mirror For full logs, run 'nix log /nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'bwbasic.originalSrc' not found stderr did not split as expected full stderr was: cannot link '/nix/store/.links/1x4q07afmhal80izn5cinglpj4rkpcvnk09bhqv3jsp4y5y3vv5l' to '/nix/store/b02sxrnrzwmwkvbh80glmp8nw73knajq-bwbasic-3.22.drv': No space left on device these 2 derivations will be built: /nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv /nix/store/b02sxrnrzwmwkvbh80glmp8nw73knajq-bwbasic-3.22.drv building '/nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv'... trying https://downloads.sourceforge.net/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 523 0 --:--:-- --:--:-- --:--:-- 524 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 337 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download bwbasic-3.22.zip from any mirror error: builder for '/nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 337 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/project/bwbasic/bwbasic/version%203.22/bwbasic-3.22.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download bwbasic-3.22.zip from any mirror For full logs, run 'nix log /nix/store/l1kijp1iq9h4aaqgs1jlvff0zi2cqybd-bwbasic-3.22.zip.drv'. error: 1 dependencies of derivation '/nix/store/b02sxrnrzwmwkvbh80glmp8nw73knajq-bwbasic-3.22.drv' failed to build [result] Failed to update bwbasic 3.20 -> 3.22 https://repology.org/project/bwbasic/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath postgresql12JitPackages.apache_datasketches, using log file: /var/log/nixpkgs-update/postgresql12JitPackages.apache_datasketches/2024-03-25.log postgresql12JitPackages.apache_datasketches 1.6.0 -> 4.1.0 https://repology.org/project/apache-datasketches/versions attrpath: postgresql12JitPackages.apache_datasketches Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update postgresql12JitPackages.apache_datasketches 1.6.0 -> 4.1.0 https://repology.org/project/apache-datasketches/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ggOceanMaps, using log file: /var/log/nixpkgs-update/rPackages.ggOceanMaps/2024-03-25.log rPackages.ggOceanMaps 2.1.1 -> 2.2.0 https://repology.org/project/r:ggoceanmaps/versions attrpath: rPackages.ggOceanMaps Checking auto update branch... No auto update branch exists Old version 2.1.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ggOceanMaps 2.1.1 -> 2.2.0 https://repology.org/project/r:ggoceanmaps/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ebook2cw, using log file: /var/log/nixpkgs-update/ebook2cw/2024-03-25.log ebook2cw 0.8.4 -> 0.8.5 https://repology.org/project/ebook2cw/versions attrpath: ebook2cw Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update ebook2cw 0.8.4 -> 0.8.5 https://repology.org/project/ebook2cw/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mcrl2, using log file: /var/log/nixpkgs-update/mcrl2/2024-03-25.log mcrl2 202307 -> 202307.1 https://repology.org/project/mcrl2/versions attrpath: mcrl2 Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv building '/nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv'... trying https://www.mcrl2.org/download/release/mcrl2-202307.1.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 1019 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download mcrl2-202307.1.1.tar.gz from any mirror error: builder for '/nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://www.mcrl2.org/download/release/mcrl2-202307.1.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 1019 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download mcrl2-202307.1.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'mcrl2.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv /nix/store/sw997c0sazy944v1ldaj6glyjm4z1f1l-mcrl2-202307.1.drv building '/nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv'... trying https://www.mcrl2.org/download/release/mcrl2-202307.1.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 1019 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download mcrl2-202307.1.1.tar.gz from any mirror error: builder for '/nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://www.mcrl2.org/download/release/mcrl2-202307.1.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 1019 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download mcrl2-202307.1.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/npl1m8lxsq9wba9iyxvnzhgacnib5372-mcrl2-202307.1.1.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/sw997c0sazy944v1ldaj6glyjm4z1f1l-mcrl2-202307.1.drv' failed to build [result] Failed to update mcrl2 202307 -> 202307.1 https://repology.org/project/mcrl2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.JointFPM, using log file: /var/log/nixpkgs-update/rPackages.JointFPM/2024-03-25.log rPackages.JointFPM 1.1.0 -> 1.2.0 https://repology.org/project/r:jointfpm/versions attrpath: rPackages.JointFPM Checking auto update branch... No auto update branch exists Old version 1.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.JointFPM 1.1.0 -> 1.2.0 https://repology.org/project/r:jointfpm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.BarcodeZBar 0.04pre -> 0.23.1 https://repology.org/project/perl:barcode-zbar/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.list, using log file: /var/log/nixpkgs-update/rPackages.list/2024-03-25.log rPackages.list 9.2.4 -> 9.2.6 https://repology.org/project/r:list/versions attrpath: rPackages.list Checking auto update branch... No auto update branch exists Old version 9.2.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.list 9.2.4 -> 9.2.6 https://repology.org/project/r:list/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath samplv1, using log file: /var/log/nixpkgs-update/samplv1/2024-03-25.log samplv1 0.9.23 -> 0.9.34 https://repology.org/project/samplv1/versions attrpath: samplv1 Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/audio/samplv1/default.nix b/pkgs/applications/audio/samplv1/default.nix index 1af25d0d75b5..86d94acf7d4d 100644 --- a/pkgs/applications/audio/samplv1/default.nix +++ b/pkgs/applications/audio/samplv1/default.nix @@ -5,11 +5,11 @@ mkDerivation rec { pname = "samplv1"; - version = "0.9.23"; + version = "0.9.34"; src = fetchurl { url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz"; - sha256 = "sha256-eJA6ixH20Wv+cD2CKGomncyfJ4tfpOL3UrTeCkb5/q0="; + sha256 = "sha256-FpMT6yBDFBzsjUgPr9HpLthKPadbdGaugHenr8sO5FI="; }; nativeBuildInputs = [ qttools pkg-config ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A samplv1 nix build failed. source root is samplv1-0.9.34 setting SOURCE_DATE_EPOCH to timestamp 1706291509 of file samplv1-0.9.34/src/samplv1widget_wave.h @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase no configure script, doing nothing @nix { "action": "setPhase", "phase": "buildPhase" } Running phase: buildPhase no Makefile or custom buildPhase, doing nothing @nix { "action": "setPhase", "phase": "glibPreInstallPhase" } Running phase: glibPreInstallPhase @nix { "action": "setPhase", "phase": "glibPreInstallPhase" } Running phase: glibPreInstallPhase @nix { "action": "setPhase", "phase": "installPhase" } Running phase: installPhase no Makefile or custom installPhase, doing nothing @nix { "action": "setPhase", "phase": "glibPreFixupPhase" } Running phase: glibPreFixupPhase @nix { "action": "setPhase", "phase": "qtOwnPathsHook" } Running phase: qtOwnPathsHook @nix { "action": "setPhase", "phase": "glibPreFixupPhase" } Running phase: glibPreFixupPhase @nix { "action": "setPhase", "phase": "fixupPhase" } Running phase: fixupPhase wrapping Qt applications in /nix/store/yrmf77cq792xibfiks356x9192c8mnlq-samplv1-0.9.34/bin /nix/store/yrmf77cq792xibfiks356x9192c8mnlq-samplv1-0.9.34/sbin /nix/store/yrmf77cq792xibfiks356x9192c8mnlq-samplv1-0.9.34/libexec /nix/store/yrmf77cq792xibfiks356x9192c8mnlq-samplv1-0.9.34/Applications @nix { "action": "setPhase", "phase": "postPatchMkspecs" } Running phase: postPatchMkspecs [result] Failed to update samplv1 0.9.23 -> 0.9.34 https://repology.org/project/samplv1/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ldm, using log file: /var/log/nixpkgs-update/ldm/2024-03-25.log ldm 0.5 -> 0.8 https://repology.org/project/ldm-mounter/versions attrpath: ldm Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/os-specific/linux/ldm/default.nix b/pkgs/os-specific/linux/ldm/default.nix index 0dea0ce4e8b0..960c623615c1 100644 --- a/pkgs/os-specific/linux/ldm/default.nix +++ b/pkgs/os-specific/linux/ldm/default.nix @@ -3,7 +3,7 @@ assert mountPath != ""; let - version = "0.5"; + version = "0.8"; in stdenv.mkDerivation rec { pname = "ldm"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/LemonBoy/ldm"; rev = "refs/tags/v${version}"; - sha256 = "0lxfypnbamfx6p9ar5k9wra20gvwn665l4pp2j4vsx4yi5q7rw2n"; + sha256 = "sha256-7+SuHmGHfr/Lk4qjq+Mij+PcYE7EnmtKpBMM/7arNWU="; }; buildInputs = [ udev util-linux ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A ldm nix build failed. got build log for 'ldm' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/sm81fbyn5k2dydwnm6cqffrsi028v3hp-ldm source root is ldm @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase substituteStream(): WARNING: '--replace' is deprecated, use --replace-{fail,warn,quiet}. (file 'ldm.c') substituteStream(): WARNING: pattern /mnt/ doesn't match anything in file 'ldm.c' @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase no configure script, doing nothing @nix { "action": "setPhase", "phase": "buildPhase" } Running phase: buildPhase build flags: SHELL=/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash ldm gcc -std=c99 -D_GNU_SOURCE -Wall -Wunused-parameter -O2 -DVERSION_STR="\"v0.7\"" `pkg-config --cflags libudev mount glib-2.0` -o ipc.o -c ipc.c /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash: line 1: pkg-config: command not found gcc -std=c99 -D_GNU_SOURCE -Wall -Wunused-parameter -O2 -DVERSION_STR="\"v0.7\"" `pkg-config --cflags libudev mount glib-2.0` -o ldm.o -c ldm.c /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash: line 1: pkg-config: command not found ldm.c:6:10: fatal error: glib.h: No such file or directory 6 | #include  | ^~~~~~~~ compilation terminated. make: *** [Makefile:26: ldm.o] Error 1 [result] Failed to update ldm 0.5 -> 0.8 https://repology.org/project/ldm-mounter/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath fomp, using log file: /var/log/nixpkgs-update/fomp/2024-03-25.log fomp 1.2.2 -> 1.2.4 https://repology.org/project/fomp/versions attrpath: fomp Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv building '/nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv'... trying https://download.drobilla.net/fomp-1.2.4.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 315 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download fomp-1.2.4.tar.bz2 from any mirror error: builder for '/nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://download.drobilla.net/fomp-1.2.4.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 315 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download fomp-1.2.4.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'fomp.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv /nix/store/rq0lvdkc1gnngl53hjx4x54zbr4wy996-fomp-1.2.4.drv building '/nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv'... trying https://download.drobilla.net/fomp-1.2.4.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 315 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download fomp-1.2.4.tar.bz2 from any mirror error: builder for '/nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://download.drobilla.net/fomp-1.2.4.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 315 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download fomp-1.2.4.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/jsc1hqzf0pk3k8l9yg9w4lmg5a598g47-fomp-1.2.4.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/rq0lvdkc1gnngl53hjx4x54zbr4wy996-fomp-1.2.4.drv' failed to build [result] Failed to update fomp 1.2.2 -> 1.2.4 https://repology.org/project/fomp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.LWP 6.72 -> 6.770.0 https://repology.org/project/perl:libwww-perl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ocamlPackages.zmq-lwt, using log file: /var/log/nixpkgs-update/ocamlPackages.zmq-lwt/2024-03-25.log ocamlPackages.zmq-lwt 5.2.1 -> 20180726 https://repology.org/project/ocaml:zmq-lwt/versions attrpath: ocamlPackages.zmq-lwt Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv building '/nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv'... trying https://github.com/issuu/ocaml-zmq/releases/download/20180726/zmq-20180726.tbz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download zmq-20180726.tbz from any mirror error: builder for '/nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv' failed with exit code 1; last 7 log lines: > > trying https://github.com/issuu/ocaml-zmq/releases/download/20180726/zmq-20180726.tbz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download zmq-20180726.tbz from any mirror For full logs, run 'nix log /nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ocamlPackages.zmq-lwt.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv /nix/store/p12hlph791rwfrrlyzv53sy3scqnywjk-ocaml5.1.1-zmq-20180726.drv /nix/store/5ihdz45rwk1y9693kx2mh47q6wrbix5f-ocaml5.1.1-zmq-lwt-20180726.drv building '/nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv'... trying https://github.com/issuu/ocaml-zmq/releases/download/20180726/zmq-20180726.tbz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download zmq-20180726.tbz from any mirror error: builder for '/nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv' failed with exit code 1; last 7 log lines: > > trying https://github.com/issuu/ocaml-zmq/releases/download/20180726/zmq-20180726.tbz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download zmq-20180726.tbz from any mirror For full logs, run 'nix log /nix/store/3fcf1fid5q93gaba80g9cxhwjwa55aks-zmq-20180726.tbz.drv'. error: 1 dependencies of derivation '/nix/store/5ihdz45rwk1y9693kx2mh47q6wrbix5f-ocaml5.1.1-zmq-lwt-20180726.drv' failed to build [result] Failed to update ocamlPackages.zmq-lwt 5.2.1 -> 20180726 https://repology.org/project/ocaml:zmq-lwt/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath openfst, using log file: /var/log/nixpkgs-update/openfst/2024-03-25.log openfst 1.8.2 -> 1.8.3 https://repology.org/project/openfst/versions attrpath: openfst Checking auto update branch... An auto update branch exists with message `openfst: 1.8.2 -> 1.8.3`. New version is 1.8.3. An auto update branch exists with an equal or greater version [result] Failed to update openfst 1.8.2 -> 1.8.3 https://repology.org/project/openfst/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.BiocIO, using log file: /var/log/nixpkgs-update/rPackages.BiocIO/2024-03-25.log rPackages.BiocIO 1.12.0 -> 1.13.0 https://repology.org/project/r:biocio/versions attrpath: rPackages.BiocIO Checking auto update branch... No auto update branch exists Old version 1.12.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.BiocIO 1.12.0 -> 1.13.0 https://repology.org/project/r:biocio/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.matrixset, using log file: /var/log/nixpkgs-update/rPackages.matrixset/2024-03-25.log rPackages.matrixset 0.2.0 -> 0.3.0 https://repology.org/project/r:matrixset/versions attrpath: rPackages.matrixset Checking auto update branch... No auto update branch exists Old version 0.2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.matrixset 0.2.0 -> 0.3.0 https://repology.org/project/r:matrixset/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.paws_analytics, using log file: /var/log/nixpkgs-update/rPackages.paws_analytics/2024-03-25.log rPackages.paws_analytics 0.4.0 -> 0.5.0 https://repology.org/project/r:paws.analytics/versions attrpath: rPackages.paws_analytics Checking auto update branch... No auto update branch exists Old version 0.4.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.paws_analytics 0.4.0 -> 0.5.0 https://repology.org/project/r:paws.analytics/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ceres-solver, using log file: /var/log/nixpkgs-update/ceres-solver/2024-03-25.log ceres-solver 2.1.0 -> 2.2.0 https://repology.org/project/ceres-solver/versions attrpath: ceres-solver Checking auto update branch... An auto update branch exists with message `ceres-solver: 2.1.0 -> 2.2.0`. New version is 2.2.0. An auto update branch exists with an equal or greater version [result] Failed to update ceres-solver 2.1.0 -> 2.2.0 https://repology.org/project/ceres-solver/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.lightgbm, using log file: /var/log/nixpkgs-update/rPackages.lightgbm/2024-03-25.log rPackages.lightgbm 4.2.0 -> 4.3.0 https://repology.org/project/r:lightgbm/versions attrpath: rPackages.lightgbm Checking auto update branch... No auto update branch exists Old version 4.2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.lightgbm 4.2.0 -> 4.3.0 https://repology.org/project/r:lightgbm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.jsonlines, using log file: /var/log/nixpkgs-update/python312Packages.jsonlines/2024-03-25.log python312Packages.jsonlines 3.1.0 -> 4.0.0 https://repology.org/project/python:jsonlines/versions attrpath: python312Packages.jsonlines Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/n3bznlmn79g6q37d3r1yzfhhqhbb52ch-packages.json.drv building '/nix/store/n3bznlmn79g6q37d3r1yzfhhqhbb52ch-packages.json.drv'... Going to be running update for following packages: - python3.12-jsonlines-3.1.0 Press Enter key to continue... Running update for: - python3.12-jsonlines-3.1.0: UPDATING ... - python3.12-jsonlines-3.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.jsonlines 3.1.0 -> 4.0.0 https://repology.org/project/python:jsonlines/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.synchronicity, using log file: /var/log/nixpkgs-update/rPackages.synchronicity/2024-03-25.log rPackages.synchronicity 1.3.5 -> 1.3.10 https://repology.org/project/r:synchronicity/versions attrpath: rPackages.synchronicity Checking auto update branch... No auto update branch exists Old version 1.3.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.synchronicity 1.3.5 -> 1.3.10 https://repology.org/project/r:synchronicity/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gvisor, using log file: /var/log/nixpkgs-update/gvisor/2024-03-25.log gvisor 20231113.0 -> 20240305.0 https://repology.org/project/gvisor/versions attrpath: gvisor Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] Hashes equal; no update necessary [result] Failed to update gvisor 20231113.0 -> 20240305.0 https://repology.org/project/gvisor/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libvpl, using log file: /var/log/nixpkgs-update/libvpl/2024-03-25.log libvpl 2.10.1 -> 2023.0.0 https://repology.org/project/libvpl/versions attrpath: libvpl Checking auto update branch... An auto update branch exists with message `libvpl: 2.10.1 -> 2023.4.0`. New version is 2023.0.0. An auto update branch exists with an equal or greater version [result] Failed to update libvpl 2.10.1 -> 2023.0.0 https://repology.org/project/libvpl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.mypy-boto3-s3, using log file: /var/log/nixpkgs-update/python311Packages.mypy-boto3-s3/2024-03-25.log python311Packages.mypy-boto3-s3 1.34.65 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases attrpath: python311Packages.mypy-boto3-s3 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bp8sgyilfr1n4i8m2rcj5aagkdgh2kls-packages.json.drv building '/nix/store/bp8sgyilfr1n4i8m2rcj5aagkdgh2kls-packages.json.drv'... Going to be running update for following packages: - python3.11-mypy-boto3-s3-1.34.65 Press Enter key to continue... Running update for: - python3.11-mypy-boto3-s3-1.34.65: UPDATING ... - python3.11-mypy-boto3-s3-1.34.65: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mypy-boto3-s3 1.34.65 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath burpsuite, using log file: /var/log/nixpkgs-update/burpsuite/2024-03-25.log burpsuite 2023.10.2.4 -> 2024.2.1.2 https://repology.org/project/burpsuite/versions attrpath: burpsuite Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update burpsuite 2023.10.2.4 -> 2024.2.1.2 https://repology.org/project/burpsuite/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath netcat-openbsd, using log file: /var/log/nixpkgs-update/netcat-openbsd/2024-03-25.log netcat-openbsd 1.219-1 -> 1.226_1 https://repology.org/project/netcat-openbsd-debian/versions attrpath: netcat-openbsd Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv building '/nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv'... trying https://salsa.debian.org/api/v4/projects/debian%2Fnetcat-openbsd/repository/archive.tar.gz?sha=refs%2Ftags%2Fdebian%2F1.226_1 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 32 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv' failed with exit code 1; last 7 log lines: > > trying https://salsa.debian.org/api/v4/projects/debian%2Fnetcat-openbsd/repository/archive.tar.gz?sha=refs%2Ftags%2Fdebian%2F1.226_1 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 32 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'netcat-openbsd.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv /nix/store/2bxh09fkn2s769lmzx2bywvkr2m54hjx-netcat-openbsd-1.226_1.drv building '/nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv'... trying https://salsa.debian.org/api/v4/projects/debian%2Fnetcat-openbsd/repository/archive.tar.gz?sha=refs%2Ftags%2Fdebian%2F1.226_1 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 32 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv' failed with exit code 1; last 7 log lines: > > trying https://salsa.debian.org/api/v4/projects/debian%2Fnetcat-openbsd/repository/archive.tar.gz?sha=refs%2Ftags%2Fdebian%2F1.226_1 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 32 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/x9zvr8klzi6k3wdlbraxgq0n9mc717s0-source.drv'. error: 1 dependencies of derivation '/nix/store/2bxh09fkn2s769lmzx2bywvkr2m54hjx-netcat-openbsd-1.226_1.drv' failed to build [result] Failed to update netcat-openbsd 1.219-1 -> 1.226_1 https://repology.org/project/netcat-openbsd-debian/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.klassR, using log file: /var/log/nixpkgs-update/rPackages.klassR/2024-03-25.log rPackages.klassR 0.2.1 -> 0.2.3 https://repology.org/project/r:klassr/versions attrpath: rPackages.klassR Checking auto update branch... No auto update branch exists Old version 0.2.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.klassR 0.2.1 -> 0.2.3 https://repology.org/project/r:klassr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linssid, using log file: /var/log/nixpkgs-update/linssid/2024-03-25.log linssid 2.7 -> 3.6 https://repology.org/project/linssid/versions attrpath: linssid Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index 000354d1e5c9..8540e6d5577c 100644 --- a/pkgs/applications/networking/linssid/default.nix +++ b/pkgs/applications/networking/linssid/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "linssid"; - version = "2.7"; + version = "3.6"; src = fetchurl { url = "mirror://sourceforge/project/linssid/LinSSID_${version}/linssid_${version}.orig.tar.gz"; - sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl"; + sha256 = "sha256-VzAe6T9wjyUSMWZov05xhQLzfyGl6Tto/GBKkDLj5Jw="; }; nativeBuildInputs = [ pkg-config qmake wrapQtAppsHook ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A linssid nix build failed. got build log for 'linssid' from 'daemon' @nix { "action": "setPhase", "phase": "qmakePrePhase" } Running phase: qmakePrePhase @nix { "action": "setPhase", "phase": "qtPreHook" } Running phase: qtPreHook @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/66f8v5kwfn4zd0xwkbvrjv3j4zwh9sws-linssid_3.6.orig.tar.gz source root is linssid-3.6 setting SOURCE_DATE_EPOCH to timestamp 1529889959 of file linssid-3.6/linssid-app/README_3.6 @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/dc1xdv94cbfbxdfhf8242a4d5cii59a1-0001-unbundled-qwt.patch patching file linssid-app/linssid-app.pro Hunk #1 FAILED at 19. 1 out of 1 hunk FAILED -- saving rejects to file linssid-app/linssid-app.pro.rej patching file linssid.pro Reversed (or previously applied) patch detected! Assume -R? [n] Apply anyway? [n] Skipping patch. 1 out of 1 hunk ignored -- saving rejects to file linssid.pro.rej [result] Failed to update linssid 2.7 -> 3.6 https://repology.org/project/linssid/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.pkgload, using log file: /var/log/nixpkgs-update/rPackages.pkgload/2024-03-25.log rPackages.pkgload 1.3.3 -> 1.3.4 https://repology.org/project/r:pkgload/versions attrpath: rPackages.pkgload Checking auto update branch... No auto update branch exists Old version 1.3.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.pkgload 1.3.3 -> 1.3.4 https://repology.org/project/r:pkgload/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nabi, using log file: /var/log/nixpkgs-update/nabi/2024-03-25.log nabi 1.0.0 -> 1.0.1 https://repology.org/project/nabi/versions attrpath: nabi Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv building '/nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv'... trying https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/nabi/nabi-1.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 298 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download nabi-1.0.1.tar.gz from any mirror error: builder for '/nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/nabi/nabi-1.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 298 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download nabi-1.0.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'nabi.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv /nix/store/qw703vwnl5jj1gh100345x501ljwlrsq-nabi-1.0.1.drv building '/nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv'... trying https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/nabi/nabi-1.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 298 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download nabi-1.0.1.tar.gz from any mirror error: builder for '/nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/nabi/nabi-1.0.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 298 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download nabi-1.0.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/lggvwnjifh9m66p6ba6rwz7n01cf9xz1-nabi-1.0.1.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/qw703vwnl5jj1gh100345x501ljwlrsq-nabi-1.0.1.drv' failed to build [result] Failed to update nabi 1.0.0 -> 1.0.1 https://repology.org/project/nabi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.misty, using log file: /var/log/nixpkgs-update/rPackages.misty/2024-03-25.log rPackages.misty 0.5.4 -> 0.6.2 https://repology.org/project/r:misty/versions attrpath: rPackages.misty Checking auto update branch... No auto update branch exists Old version 0.5.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.misty 0.5.4 -> 0.6.2 https://repology.org/project/r:misty/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath linuxKernel.packages.linux_4_19.system76-power, using log file: /var/log/nixpkgs-update/linuxKernel.packages.linux_4_19.system76-power/2024-03-25.log linuxKernel.packages.linux_4_19.system76-power 1.1.23 -> 1.1.26 https://repology.org/project/system76-power/versions attrpath: linuxKernel.packages.linux_4_19.system76-power Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] build succeeded unexpectedlystderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'linuxKernel.packages.linux_4_19.system76-power.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/aa50z1nk0py7mawbv984q3l8kqc54mb2-system76-power-1.1.26-vendor.tar.gz.drv /nix/store/9lzhxnj1h2r007qgvfi2ysv2vy5z289k-system76-power-1.1.26.drv building '/nix/store/aa50z1nk0py7mawbv984q3l8kqc54mb2-system76-power-1.1.26-vendor.tar.gz.drv'... Running phase: unpackPhase unpacking source archive /nix/store/hagyw75l1dg0m516hnd9a2ny4y1gzip6-source source root is source Running phase: patchPhase Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase no configure script, doing nothing Running phase: buildPhase source = "git+https://github.com/pop-os/sysfs-class#ab63e7f638aadfaf896a02e53cf330343d331337" ERROR: The Cargo.lock contains git dependencies This is currently not supported in the fixed-output derivation fetcher. Use cargoLock.lockFile / importCargoLock instead. error: builder for '/nix/store/aa50z1nk0py7mawbv984q3l8kqc54mb2-system76-power-1.1.26-vendor.tar.gz.drv' failed with exit code 1; last 15 log lines: > Running phase: unpackPhase > unpacking source archive /nix/store/hagyw75l1dg0m516hnd9a2ny4y1gzip6-source > source root is source > Running phase: patchPhase > Running phase: updateAutotoolsGnuConfigScriptsPhase > Running phase: configurePhase > no configure script, doing nothing > Running phase: buildPhase > source = "git+https://github.com/pop-os/sysfs-class#ab63e7f638aadfaf896a02e53cf330343d331337" > > ERROR: The Cargo.lock contains git dependencies > > This is currently not supported in the fixed-output derivation fetcher. > Use cargoLock.lockFile / importCargoLock instead. > For full logs, run 'nix log /nix/store/aa50z1nk0py7mawbv984q3l8kqc54mb2-system76-power-1.1.26-vendor.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/9lzhxnj1h2r007qgvfi2ysv2vy5z289k-system76-power-1.1.26.drv' failed to build [result] Failed to update linuxKernel.packages.linux_4_19.system76-power 1.1.23 -> 1.1.26 https://repology.org/project/system76-power/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath j2cli, using log file: /var/log/nixpkgs-update/j2cli/2024-03-25.log j2cli 0 -> 1 attrpath: j2cli Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/b8gmgi28kir968iigkrxf2al0nchdszh-packages.json.drv building '/nix/store/b8gmgi28kir968iigkrxf2al0nchdszh-packages.json.drv'... Going to be running update for following packages: - j2cli-0.3.10 Press Enter key to continue... Running update for: - j2cli-0.3.10: UPDATING ... - j2cli-0.3.10: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update j2cli 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.glmmPen, using log file: /var/log/nixpkgs-update/rPackages.glmmPen/2024-03-25.log rPackages.glmmPen 1.5.3.4 -> 1.5.4.4 https://repology.org/project/r:glmmpen/versions attrpath: rPackages.glmmPen Checking auto update branch... No auto update branch exists Old version 1.5.3.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.glmmPen 1.5.3.4 -> 1.5.4.4 https://repology.org/project/r:glmmpen/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath flyway, using log file: /var/log/nixpkgs-update/flyway/2024-03-25.log flyway 9.22.3 -> 10.10.0 https://repology.org/project/flyway/versions attrpath: flyway Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/tools/flyway/default.nix b/pkgs/development/tools/flyway/default.nix index cd42388f0f82..697f1eedeea2 100644 --- a/pkgs/development/tools/flyway/default.nix +++ b/pkgs/development/tools/flyway/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation (finalAttrs: { pname = "flyway"; - version = "9.22.3"; + version = "10.10.0"; src = fetchurl { url = "mirror://maven/org/flywaydb/flyway-commandline/${finalAttrs.version}/flyway-commandline-${finalAttrs.version}.tar.gz"; - sha256 = "sha256-utAJpbU5NkKyJyyWB0yfwHZJxQAVJgiKm12wmGK1ojQ="; + sha256 = "sha256-d90K9vhbfKunQSb5iSDQJt3DtWgt5ZAyJYLafulXwzE="; }; nativeBuildInputs = [ makeWrapper ]; dontBuild = true; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A flyway nix build failed. got build log for 'flyway' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/f2jkbqrfm6fn2ka331k9h0qgc2j56hw0-flyway-commandline-10.10.0.tar.gz source root is flyway-10.10.0 setting SOURCE_DATE_EPOCH to timestamp 1710412343 of file flyway-10.10.0/drivers/sqlite-jdbc-3.41.2.2.jar @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase no configure script, doing nothing @nix { "action": "setPhase", "phase": "installPhase" } Running phase: installPhase cp: cannot stat 'sql': No such file or directory cp: cannot stat 'jars': No such file or directory [result] Failed to update flyway 9.22.3 -> 10.10.0 https://repology.org/project/flyway/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath jack1, using log file: /var/log/nixpkgs-update/jack1/2024-03-25.log jack1 0.125.0 -> 1.9.22 https://repology.org/project/jack-audio-connection-kit/versions attrpath: jack1 Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv building '/nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv'... trying https://jackaudio.org/downloads/jack-audio-connection-kit-1.9.22.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9379 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download jack-audio-connection-kit-1.9.22.tar.gz from any mirror error: builder for '/nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://jackaudio.org/downloads/jack-audio-connection-kit-1.9.22.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9379 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download jack-audio-connection-kit-1.9.22.tar.gz from any mirror For full logs, run 'nix log /nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'jack1.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv /nix/store/qzlgqqzlfamfi6yzi8yixf8zas0fb88s-jack1-1.9.22.drv these 5 paths will be fetched (0.31 MiB download, 2.08 MiB unpacked): /nix/store/dmx9xv07y6pfx3v7az07pmwrsr9kvbvd-celt-0.11.3-dev /nix/store/g2afsxq6i4d27chdhh1jh89mjd29g390-dbus-cplusplus-0.9.0 /nix/store/nn2wsd1xnkjbdwp4qyzh0phzz548kpqc-ffado-2.4.8-bin /nix/store/h82qqgzp77wp5x6glrag7nyqx2n7ah61-ffado-2.4.8-dev /nix/store/sfp7idw8zrid2g31kpl3q5ias9cklici-python3-3.11.8-env copying path '/nix/store/dmx9xv07y6pfx3v7az07pmwrsr9kvbvd-celt-0.11.3-dev' from 'https://cache.nixos.org'... copying path '/nix/store/g2afsxq6i4d27chdhh1jh89mjd29g390-dbus-cplusplus-0.9.0' from 'https://cache.nixos.org'... copying path '/nix/store/sfp7idw8zrid2g31kpl3q5ias9cklici-python3-3.11.8-env' from 'https://cache.nixos.org'... building '/nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv'... copying path '/nix/store/nn2wsd1xnkjbdwp4qyzh0phzz548kpqc-ffado-2.4.8-bin' from 'https://cache.nixos.org'... copying path '/nix/store/h82qqgzp77wp5x6glrag7nyqx2n7ah61-ffado-2.4.8-dev' from 'https://cache.nixos.org'... trying https://jackaudio.org/downloads/jack-audio-connection-kit-1.9.22.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9379 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download jack-audio-connection-kit-1.9.22.tar.gz from any mirror error: builder for '/nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://jackaudio.org/downloads/jack-audio-connection-kit-1.9.22.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9379 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download jack-audio-connection-kit-1.9.22.tar.gz from any mirror For full logs, run 'nix log /nix/store/31z9ssqbzig1lnrmbpxkhyy2qm21cshl-jack-audio-connection-kit-1.9.22.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/qzlgqqzlfamfi6yzi8yixf8zas0fb88s-jack1-1.9.22.drv' failed to build [result] Failed to update jack1 0.125.0 -> 1.9.22 https://repology.org/project/jack-audio-connection-kit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ibus-engines.mozc, using log file: /var/log/nixpkgs-update/ibus-engines.mozc/2024-03-25.log ibus-engines.mozc 2.29.5268.102 -> 2.29.5400.102 https://repology.org/project/ibus-mozc/versions attrpath: ibus-engines.mozc Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update ibus-engines.mozc 2.29.5268.102 -> 2.29.5400.102 https://repology.org/project/ibus-mozc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.pywebpush, using log file: /var/log/nixpkgs-update/python312Packages.pywebpush/2024-03-25.log python312Packages.pywebpush 1.14.1 -> 2.0.0 https://repology.org/project/python:pywebpush/versions attrpath: python312Packages.pywebpush Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/k4dr14qdjvcs73cwf23rmch3a9df3j0h-packages.json.drv building '/nix/store/k4dr14qdjvcs73cwf23rmch3a9df3j0h-packages.json.drv'... Going to be running update for following packages: - python3.12-pywebpush-1.14.1 Press Enter key to continue... Running update for: - python3.12-pywebpush-1.14.1: UPDATING ... - python3.12-pywebpush-1.14.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pywebpush/default.nix b/pkgs/development/python-modules/pywebpush/default.nix index 903ad646b8b5..30cd15692d87 100644 --- a/pkgs/development/python-modules/pywebpush/default.nix +++ b/pkgs/development/python-modules/pywebpush/default.nix @@ -14,12 +14,12 @@ buildPythonPackage rec { pname = "pywebpush"; - version = "1.14.1"; + version = "2.0.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-+I1+K/XofGFt+wS4yVwRkjjFEWWbAvc17nfMFoQoVe4="; + hash = "sha256-A8zD6XW2A3S3Y0xJVZVha+Ujvyx9oNl26E/amsjGMwE="; }; propagatedBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python312Packages.pywebpush nix build failed. Rewriting #!/nix/store/7yh2ax34jd7fgf17mjfd3c6niw1h2hsj-python3-3.12.2/bin/python3.12 to #!/nix/store/7yh2ax34jd7fgf17mjfd3c6niw1h2hsj-python3-3.12.2 wrapping `/nix/store/7b34d1ynhbaqgj0v233b7ahr8dasc8zs-python3.12-pywebpush-2.0.0/bin/pywebpush'... Executing pythonRemoveTestsDir Finished executing pythonRemoveTestsDir @nix { "action": "setPhase", "phase": "installCheckPhase" } Running phase: installCheckPhase no Makefile or custom installCheckPhase, doing nothing @nix { "action": "setPhase", "phase": "pythonCatchConflictsPhase" } Running phase: pythonCatchConflictsPhase @nix { "action": "setPhase", "phase": "pythonRemoveBinBytecodePhase" } Running phase: pythonRemoveBinBytecodePhase @nix { "action": "setPhase", "phase": "pythonImportsCheckPhase" } Running phase: pythonImportsCheckPhase Executing pythonImportsCheckPhase Check whether the following modules can be imported: pywebpush Traceback (most recent call last): File "", line 1, in File "", line 1, in File "/nix/store/7yh2ax34jd7fgf17mjfd3c6niw1h2hsj-python3-3.12.2/lib/python3.12/importlib/__init__.py", line 90, in import_module return _bootstrap._gcd_import(name[level:], package, level) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "", line 1387, in _gcd_import File "", line 1360, in _find_and_load File "", line 1331, in _find_and_load_unlocked File "", line 935, in _load_unlocked File "", line 995, in exec_module File "", line 488, in _call_with_frames_removed File "/nix/store/7b34d1ynhbaqgj0v233b7ahr8dasc8zs-python3.12-pywebpush-2.0.0/lib/python3.12/site-packages/pywebpush/__init__.py", line 19, in import aiohttp ModuleNotFoundError: No module named 'aiohttp' [result] Failed to update python312Packages.pywebpush 1.14.1 -> 2.0.0 https://repology.org/project/python:pywebpush/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.Imager 1.019 -> 1.023 https://repology.org/project/perl:imager/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath audit, using log file: /var/log/nixpkgs-update/audit/2024-03-25.log audit 3.1.2 -> 4.0.1 https://repology.org/project/audit/versions attrpath: audit Checking auto update branch... An auto update branch exists with message `audit: 3.1.2 -> 4.0`. New version is 4.0.1. The auto update branch does not match or exceed the new version. [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/os-specific/linux/audit/default.nix b/pkgs/os-specific/linux/audit/default.nix index 1e941a13767e..a9782e42ca76 100644 --- a/pkgs/os-specific/linux/audit/default.nix +++ b/pkgs/os-specific/linux/audit/default.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "audit"; - version = "3.1.2"; + version = "4.0.1"; src = fetchurl { url = "https://people.redhat.com/sgrubb/audit/audit-${finalAttrs.version}.tar.gz"; - hash = "sha256-wLF5LR8KiMbxgocQUJy7mHBZ/GhxLJdmnKkOrhA9KH0="; + hash = "sha256-OJAxm4U2RG1wgB4gpXkMY+h5+ZvoOHWoWEYGQcbHr/Q="; }; postPatch = '' [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A audit nix build failed. shrinking /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin/sbin/audisp-syslog shrinking /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin/sbin/auditd checking for references to /build/ in /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin... moving /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin/sbin/* to /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin/bin patching script interpreter paths in /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin/bin/augenrules: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" stripping (with command strip and flags -S -p) in /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin/bin /nix/store/p8ph38hp9c03zgcqcsfsjjdipvi3ni3c-audit-4.0.1-bin/sbin shrinking RPATHs of ELF executables and libraries in /nix/store/ilxmili6ghgihxdpvbk015f3djl61f5d-audit-4.0.1-dev checking for references to /build/ in /nix/store/ilxmili6ghgihxdpvbk015f3djl61f5d-audit-4.0.1-dev... patching script interpreter paths in /nix/store/ilxmili6ghgihxdpvbk015f3djl61f5d-audit-4.0.1-dev stripping (with command strip and flags -S -p) in /nix/store/ilxmili6ghgihxdpvbk015f3djl61f5d-audit-4.0.1-dev/lib shrinking RPATHs of ELF executables and libraries in /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1 shrinking /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/lib/python3.11/site-packages/auparse.so shrinking /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/lib/python3.11/site-packages/_audit.so shrinking /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/lib/libauparse.so.0.0.0 shrinking /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/lib/libaudit.so.1.0.0 checking for references to /build/ in /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1... patching script interpreter paths in /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1 /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec/initscripts/legacy-actions/auditd/resume: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec/initscripts/legacy-actions/auditd/condrestart: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec/initscripts/legacy-actions/auditd/reload: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec/initscripts/legacy-actions/auditd/restart: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec/initscripts/legacy-actions/auditd/state: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec/initscripts/legacy-actions/auditd/rotate: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec/initscripts/legacy-actions/auditd/stop: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" stripping (with command strip and flags -S -p) in /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/lib /nix/store/ykd2pl53hgiadpl09xw62bqglwjhbvid-audit-4.0.1/libexec shrinking RPATHs of ELF executables and libraries in /nix/store/chvrnl19ga0p8mc2j43hmal7234qqz68-audit-4.0.1-man checking for references to /build/ in /nix/store/chvrnl19ga0p8mc2j43hmal7234qqz68-audit-4.0.1-man... gzipping man pages under /nix/store/chvrnl19ga0p8mc2j43hmal7234qqz68-audit-4.0.1-man/share/man/ patching script interpreter paths in /nix/store/chvrnl19ga0p8mc2j43hmal7234qqz68-audit-4.0.1-man [result] Failed to update audit 3.1.2 -> 4.0.1 https://repology.org/project/audit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.intRinsic, using log file: /var/log/nixpkgs-update/rPackages.intRinsic/2024-03-25.log rPackages.intRinsic 1.0.1 -> 1.0.2 https://repology.org/project/r:intrinsic/versions attrpath: rPackages.intRinsic Checking auto update branch... No auto update branch exists Old version 1.0.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.intRinsic 1.0.1 -> 1.0.2 https://repology.org/project/r:intrinsic/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rstan, using log file: /var/log/nixpkgs-update/rPackages.rstan/2024-03-25.log rPackages.rstan 2.32.3 -> 2.32.6 https://repology.org/project/r:rstan/versions attrpath: rPackages.rstan Checking auto update branch... No auto update branch exists Old version 2.32.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rstan 2.32.3 -> 2.32.6 https://repology.org/project/r:rstan/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.timechange, using log file: /var/log/nixpkgs-update/rPackages.timechange/2024-03-25.log rPackages.timechange 0.2.0 -> 0.3.0 https://repology.org/project/r:timechange/versions attrpath: rPackages.timechange Checking auto update branch... No auto update branch exists Old version 0.2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.timechange 0.2.0 -> 0.3.0 https://repology.org/project/r:timechange/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.procs, using log file: /var/log/nixpkgs-update/rPackages.procs/2024-03-25.log rPackages.procs 1.0.4 -> 1.0.6 https://repology.org/project/r:procs/versions attrpath: rPackages.procs Checking auto update branch... No auto update branch exists Old version 1.0.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.procs 1.0.4 -> 1.0.6 https://repology.org/project/r:procs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.XSParseKeyword 0.38 -> 0.390.0 https://repology.org/project/perl:xs-parse-keyword/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath storm, using log file: /var/log/nixpkgs-update/storm/2024-03-25.log storm 2.4.0 -> 2.6.1 https://repology.org/project/apache-storm/versions attrpath: storm Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/servers/computing/storm/default.nix b/pkgs/servers/computing/storm/default.nix index d4669488901a..f3ef46f7b307 100644 --- a/pkgs/servers/computing/storm/default.nix +++ b/pkgs/servers/computing/storm/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { pname = "apache-storm"; - version = "2.4.0"; + version = "2.6.1"; name = "${pname}-${version}"; src = fetchurl { url = "mirror://apache/storm/${name}/${name}.tar.gz"; - sha256 = "sha256-VFNcaISPBRMGR5l/P6/pGnK7lHClDW2AmXJ00gzxwMY="; + sha256 = "sha256-INodXwCTH5XsjwuFPh5FkAL4fBlfZbSFlR/9l0Nmj94="; }; nativeBuildInputs = [ zip unzip ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A storm Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . storm Standard output: error: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:9:12: (source not available) … while evaluating derivation 'apache-storm-2.6.1' whose name attribute is located at /var/cache/nixpkgs-update/worker/worktree/storm/pkgs/stdenv/generic/make-derivation.nix:331:7 … while evaluating attribute 'fixupPhase' of derivation 'apache-storm-2.6.1' at /var/cache/nixpkgs-update/worker/worktree/storm/pkgs/servers/computing/storm/default.nix:30:3: 29| 30| fixupPhase = '' | ^ 31| # Fix python reference error: Package ‘python-2.7.18.7’ in /var/cache/nixpkgs-update/worker/worktree/storm/pkgs/development/interpreters/python/cpython/2.7/default.nix:335 is marked as insecure, refusing to evaluate. Known issues: - Python 2.7 has reached its end of life after 2020-01-01. See https://www.python.org/doc/sunset-python-2/. You can install it anyway by allowing this package, using the following methods: a) To temporarily allow all insecure packages, you can use an environment variable for a single invocation of the nix tools: $ export NIXPKGS_ALLOW_INSECURE=1 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake, then pass `--impure` in order to allow use of environment variables. b) for `nixos-rebuild` you can add ‘python-2.7.18.7’ to `nixpkgs.config.permittedInsecurePackages` in the configuration.nix, like so: { nixpkgs.config.permittedInsecurePackages = [ "python-2.7.18.7" ]; } c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add ‘python-2.7.18.7’ to `permittedInsecurePackages` in ~/.config/nixpkgs/config.nix, like so: { permittedInsecurePackages = [ "python-2.7.18.7" ]; } [result] Failed to update storm 2.4.0 -> 2.6.1 https://repology.org/project/apache-storm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath haskellPackages.cabal-lenses, using log file: /var/log/nixpkgs-update/haskellPackages.cabal-lenses/2024-03-25.log haskellPackages.cabal-lenses 0.10.1 -> 0.11.0 https://repology.org/project/haskell:cabal-lenses/versions attrpath: haskellPackages.cabal-lenses Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update haskellPackages.cabal-lenses 0.10.1 -> 0.11.0 https://repology.org/project/haskell:cabal-lenses/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath unar, using log file: /var/log/nixpkgs-update/unar/2024-03-25.log unar 1.10.7 -> 1.10.8 https://repology.org/project/unar/versions attrpath: unar Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv building '/nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv'... trying https://github.com/MacPaw/unar/archive/v1.10.8.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/MacPaw/unar/archive/v1.10.8.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'unar.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv /nix/store/3f419wmzpn7ywhmhndznjk65yvqx0iaw-unar-1.10.8.drv building '/nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv'... trying https://github.com/MacPaw/unar/archive/v1.10.8.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/MacPaw/unar/archive/v1.10.8.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/0knb2mg8rrckzn063c3pi7x01y2c7jip-source.drv'. error: 1 dependencies of derivation '/nix/store/3f419wmzpn7ywhmhndznjk65yvqx0iaw-unar-1.10.8.drv' failed to build [result] Failed to update unar 1.10.7 -> 1.10.8 https://repology.org/project/unar/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath deepin.dtkdeclarative, using log file: /var/log/nixpkgs-update/deepin.dtkdeclarative/2024-03-25.log deepin.dtkdeclarative 5.6.24 -> 5.6.25 https://repology.org/project/dtkdeclarative/versions attrpath: deepin.dtkdeclarative deepin packages are upgraded in lockstep https://github.com/NixOS/nixpkgs/pull/52327#issuecomment-447684194 [result] Failed to update deepin.dtkdeclarative 5.6.24 -> 5.6.25 https://repology.org/project/dtkdeclarative/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.lpjmlkit, using log file: /var/log/nixpkgs-update/rPackages.lpjmlkit/2024-03-25.log rPackages.lpjmlkit 1.0.11 -> 1.1.8 https://repology.org/project/r:lpjmlkit/versions attrpath: rPackages.lpjmlkit Checking auto update branch... No auto update branch exists Old version 1.0.11" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.lpjmlkit 1.0.11 -> 1.1.8 https://repology.org/project/r:lpjmlkit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.MaxMindDBWriter 0.300003 -> 0.300004 https://repology.org/project/perl:maxmind-db-writer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath librasterlite2, using log file: /var/log/nixpkgs-update/librasterlite2/2024-03-25.log librasterlite2 1.1.0-beta1 -> 1.1.0 https://repology.org/project/librasterlite2/versions attrpath: librasterlite2 Checking auto update branch... No auto update branch exists 1.1.0 is not newer than 1.1.0-beta1 according to Nix; versionComparison: -1 [result] Failed to update librasterlite2 1.1.0-beta1 -> 1.1.0 https://repology.org/project/librasterlite2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath macopix, using log file: /var/log/nixpkgs-update/macopix/2024-03-25.log macopix 1.7.4 -> 3.4.0 https://repology.org/project/macopix/versions attrpath: macopix Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv building '/nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv'... trying http://rosegray.sakura.ne.jp/macopix/macopix-3.4.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download macopix-3.4.0.tar.bz2 from any mirror error: builder for '/nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying http://rosegray.sakura.ne.jp/macopix/macopix-3.4.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download macopix-3.4.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'macopix.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv /nix/store/bw5ganca4czckf3872ndj654xhqnli1m-macopix-3.4.0.drv building '/nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv'... trying http://rosegray.sakura.ne.jp/macopix/macopix-3.4.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download macopix-3.4.0.tar.bz2 from any mirror error: builder for '/nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying http://rosegray.sakura.ne.jp/macopix/macopix-3.4.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download macopix-3.4.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/kp2frw93x7ka3d5bmyl4hpz546m4bl5b-macopix-3.4.0.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/bw5ganca4czckf3872ndj654xhqnli1m-macopix-3.4.0.drv' failed to build [result] Failed to update macopix 1.7.4 -> 3.4.0 https://repology.org/project/macopix/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath unixODBCDrivers.msodbcsql17, using log file: /var/log/nixpkgs-update/unixODBCDrivers.msodbcsql17/2024-03-25.log unixODBCDrivers.msodbcsql17 17.7.1.1-1 -> 17.10.2.1 https://repology.org/project/msodbcsql17/versions attrpath: unixODBCDrivers.msodbcsql17 Checking auto update branch... No auto update branch exists Old version 17.7.1.1-1" not present in master derivation file with contents: { fetchurl, stdenv, unixODBC, cmake, postgresql, mariadb, sqlite, zlib, libxml2, dpkg, lib, openssl, libkrb5, libuuid, patchelf, libiconv, fixDarwinDylibNames, fetchFromGitHub }: # Each of these ODBC drivers can be configured in your odbcinst.ini file using # the various passthru and meta values. Of note are: # # * `passthru.fancyName`, the typical name used to reference the driver # * `passthru.driver`, the path to the driver within the built package # * `meta.description`, a short description of the ODBC driver # # For example, you might generate it as follows: # # '' # [${package.fancyName}] # Description = ${package.meta.description} # Driver = ${package}/${package.driver} # '' { psql = stdenv.mkDerivation rec { pname = "psqlodbc"; version = "10.01.0000"; src = fetchurl { url = "mirror://postgresql/odbc/versions/src/${pname}-${version}.tar.gz"; sha256 = "1cyams7157f3gry86x64xrplqi2vyqrq3rqka59gv4lb4rpl7jl7"; }; buildInputs = [ unixODBC postgresql ]; # see the top of the file for an explanation passthru = { fancyName = "PostgreSQL"; driver = "lib/psqlodbcw.so"; }; meta = with lib; { description = "Official PostgreSQL ODBC Driver"; homepage = "https://odbc.postgresql.org/"; license = licenses.lgpl2; platforms = platforms.unix; }; }; mariadb = stdenv.mkDerivation rec { pname = "mariadb-connector-odbc"; version = "3.1.20"; src = fetchFromGitHub { owner = "mariadb-corporation"; repo = "mariadb-connector-odbc"; rev = version; hash = "sha256-l+HlS7/A0shwsEXYKDhi+QCmwHaMTeKrtcvo9yYpYws="; # this driver only seems to build correctly when built against the mariadb-connect-c subrepo # (see https://github.com/NixOS/nixpkgs/issues/73258) fetchSubmodules = true; }; patches = [ # Fix `call to undeclared function 'sleep'` with clang 16 ./mariadb-connector-odbc-unistd.patch ]; nativeBuildInputs = [ cmake ]; buildInputs = [ unixODBC openssl libiconv zlib ] ++ lib.optionals stdenv.isDarwin [ libkrb5 ]; cmakeFlags = [ "-DWITH_EXTERNAL_ZLIB=ON" "-DODBC_LIB_DIR=${lib.getLib unixODBC}/lib" "-DODBC_INCLUDE_DIR=${lib.getDev unixODBC}/include" "-DWITH_OPENSSL=ON" # on darwin this defaults to ON but we want to build against unixODBC "-DWITH_IODBC=OFF" ]; buildFlags = if stdenv.isDarwin then [ "maodbc" ] else null; installTargets = if stdenv.isDarwin then [ "install/fast" ] else null; # see the top of the file for an explanation passthru = { fancyName = "MariaDB"; driver = "lib/libmaodbc${stdenv.hostPlatform.extensions.sharedLibrary}"; }; meta = with lib; { description = "MariaDB ODBC database driver"; homepage = "https://downloads.mariadb.org/connector-odbc/"; license = licenses.gpl2; platforms = platforms.linux ++ platforms.darwin; }; }; mysql = stdenv.mkDerivation rec { pname = "mysql-connector-odbc"; majorVersion = "5.3"; version = "${majorVersion}.6"; src = fetchurl { url = "https://dev.mysql.com/get/Downloads/Connector-ODBC/${majorVersion}/${pname}-${version}-src.tar.gz"; sha256 = "1smi4z49i4zm7cmykjkwlxxzqvn7myngsw5bc35z6gqxmi8c55xr"; }; nativeBuildInputs = [ cmake ]; buildInputs = [ unixODBC mariadb ]; cmakeFlags = [ "-DWITH_UNIXODBC=1" ]; # see the top of the file for an explanation passthru = { fancyName = "MySQL"; driver = "lib/libmyodbc3-3.51.12.so"; }; meta = with lib; { description = "MySQL ODBC database driver"; homepage = "https://dev.mysql.com/downloads/connector/odbc/"; license = licenses.gpl2; platforms = platforms.linux; broken = true; }; }; sqlite = stdenv.mkDerivation rec { pname = "sqlite-connector-odbc"; version = "0.9993"; src = fetchurl { url = "http://www.ch-werner.de/sqliteodbc/sqliteodbc-${version}.tar.gz"; sha256 = "0dgsj28sc7f7aprmdd0n5a1rmcx6pv7170c8dfjl0x1qsjxim6hs"; }; buildInputs = [ unixODBC sqlite zlib libxml2 ]; configureFlags = [ "--with-odbc=${unixODBC}" "--with-sqlite3=${sqlite.dev}" ]; installTargets = [ "install-3" ]; # move libraries to $out/lib where they're expected to be postInstall = '' mkdir -p "$out/lib" mv "$out"/*.* "$out/lib" ''; # see the top of the file for an explanation passthru = { fancyName = "SQLite"; driver = "lib/libsqlite3odbc.so"; }; meta = with lib; { description = "ODBC driver for SQLite"; homepage = "http://www.ch-werner.de/sqliteodbc"; license = licenses.bsd2; platforms = platforms.unix; maintainers = with maintainers; [ vlstill ]; }; }; msodbcsql17 = stdenv.mkDerivation rec { pname = "msodbcsql17"; version = "${versionMajor}.${versionMinor}.${versionAdditional}-1"; versionMajor = "17"; versionMinor = "7"; versionAdditional = "1.1"; src = fetchurl { url = "https://packages.microsoft.com/debian/10/prod/pool/main/m/msodbcsql17/msodbcsql${versionMajor}_${version}_amd64.deb"; sha256 = "0vwirnp56jibm3qf0kmi4jnz1w7xfhnsfr8imr0c9hg6av4sk3a6"; }; nativeBuildInputs = [ dpkg patchelf ]; unpackPhase = "dpkg -x $src ./"; buildPhase = ""; installPhase = '' mkdir -p $out mkdir -p $out/lib cp -r opt/microsoft/msodbcsql${versionMajor}/lib64 opt/microsoft/msodbcsql${versionMajor}/share $out/ ''; postFixup = '' patchelf --set-rpath ${lib.makeLibraryPath [ unixODBC openssl libkrb5 libuuid stdenv.cc.cc ]} \ $out/lib/libmsodbcsql-${versionMajor}.${versionMinor}.so.${versionAdditional} ''; # see the top of the file for an explanation passthru = { fancyName = "ODBC Driver ${versionMajor} for SQL Server"; driver = "lib/libmsodbcsql-${versionMajor}.${versionMinor}.so.${versionAdditional}"; }; meta = with lib; { broken = stdenv.isDarwin; description = "ODBC Driver ${versionMajor} for SQL Server"; homepage = "https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-2017"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; platforms = platforms.linux; maintainers = with maintainers; [ spencerjanssen ]; }; }; msodbcsql18 = stdenv.mkDerivation(finalAttrs: { pname = "msodbcsql${finalAttrs.versionMajor}"; version = "${finalAttrs.versionMajor}.${finalAttrs.versionMinor}.${finalAttrs.versionAdditional}${finalAttrs.versionSuffix}"; versionMajor = "18"; versionMinor = "1"; versionAdditional = "1.1"; versionSuffix = lib.optionalString stdenv.isLinux "-1"; src = fetchurl { url = { x86_64-linux = "https://packages.microsoft.com/debian/11/prod/pool/main/m/${finalAttrs.pname}/${finalAttrs.pname}_${finalAttrs.version}_amd64.deb"; aarch64-linux = "https://packages.microsoft.com/debian/11/prod/pool/main/m/${finalAttrs.pname}/${finalAttrs.pname}_${finalAttrs.version}_arm64.deb"; x86_64-darwin = "https://download.microsoft.com/download/6/4/0/64006503-51e3-44f0-a6cd-a9b757d0d61b/${finalAttrs.pname}-${finalAttrs.version}-amd64.tar.gz"; aarch64-darwin = "https://download.microsoft.com/download/6/4/0/64006503-51e3-44f0-a6cd-a9b757d0d61b/${finalAttrs.pname}-${finalAttrs.version}-arm64.tar.gz"; }.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); hash = { x86_64-linux = "sha256:1f0rmh1aynf1sqmjclbsyh2wz5jby0fixrwz71zp6impxpwvil52"; aarch64-linux = "sha256:0zphnbvkqdbkcv6lvv63p7pyl68h5bs2dy6vv44wm6bi89svms4a"; x86_64-darwin = "sha256:1fn80byn1yihflznxcm9cpj42mpllnz54apnk9n46vzm2ng2lj6d"; aarch64-darwin = "sha256:116xl8r2apr5b48jnq6myj9fwqs88yccw5176yfyzh4534fznj5x"; }.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); }; nativeBuildInputs = if stdenv.isDarwin then [ # Fix up the names encoded into the dylib, and make them absolute. fixDarwinDylibNames ] else [ dpkg patchelf ]; unpackPhase = lib.optionalString stdenv.isLinux '' dpkg -x $src ./ ''; installPhase = if stdenv.isDarwin then '' mkdir -p $out tar xf $src --strip-components=1 -C $out '' else '' mkdir -p $out mkdir -p $out/lib cp -r opt/microsoft/msodbcsql${finalAttrs.versionMajor}/lib64 opt/microsoft/msodbcsql${finalAttrs.versionMajor}/share $out/ ''; # Replace the hard-coded paths in the dylib with nixpkgs equivalents. fixupPhase = lib.optionalString stdenv.isDarwin '' ${stdenv.cc.bintools.targetPrefix}install_name_tool \ -change /usr/lib/libiconv.2.dylib ${libiconv}/lib/libiconv.2.dylib \ -change /opt/homebrew/lib/libodbcinst.2.dylib ${unixODBC}/lib/libodbcinst.2.dylib \ $out/${finalAttrs.passthru.driver} ''; postFixup = lib.optionalString stdenv.isLinux '' patchelf --set-rpath ${lib.makeLibraryPath [ unixODBC openssl libkrb5 libuuid stdenv.cc.cc ]} \ $out/${finalAttrs.passthru.driver} ''; # see the top of the file for an explanation passthru = { fancyName = "ODBC Driver ${finalAttrs.versionMajor} for SQL Server"; driver = "lib/libmsodbcsql${if stdenv.isDarwin then ".${finalAttrs.versionMajor}.dylib" else "-${finalAttrs.versionMajor}.${finalAttrs.versionMinor}.so.${finalAttrs.versionAdditional}"}"; }; meta = with lib; { description = finalAttrs.passthru.fancyName; homepage = "https://learn.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver16"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = platforms.unix; license = licenses.unfree; maintainers = with maintainers; [ SamirTalwar ]; }; }); redshift = stdenv.mkDerivation rec { pname = "redshift-odbc"; version = "1.4.49.1000"; src = fetchurl { url = "https://s3.amazonaws.com/redshift-downloads/drivers/odbc/${version}/AmazonRedshiftODBC-64-bit-${version}-1.x86_64.deb"; sha256 = "sha256-r5HvsZjB7+x+ClxtWoONkE1/NAbz90NbHfzxC6tf7jA="; }; nativeBuildInputs = [ dpkg ]; unpackPhase = '' dpkg -x $src src cd src ''; # `unixODBC` is loaded with `dlopen`, so `autoPatchElfHook` cannot see it, and `patchELF` phase would strip the manual patchelf. Thus: # - Manually patchelf with `unixODCB` libraries # - Disable automatic `patchELF` phase installPhase = '' mkdir -p $out/lib cp opt/amazon/redshiftodbc/lib/64/* $out/lib patchelf --set-rpath ${unixODBC}/lib/ $out/lib/libamazonredshiftodbc64.so ''; dontPatchELF = true; buildInputs = [ unixODBC ]; # see the top of the file for an explanation passthru = { fancyName = "Amazon Redshift (x64)"; driver = "lib/libamazonredshiftodbc64.so"; }; meta = with lib; { broken = stdenv.isDarwin; description = "Amazon Redshift ODBC driver"; homepage = "https://docs.aws.amazon.com/redshift/latest/mgmt/configure-odbc-connection.html"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; platforms = platforms.linux; maintainers = with maintainers; [ sir4ur0n ]; }; }; } [result] Failed to update unixODBCDrivers.msodbcsql17 17.7.1.1-1 -> 17.10.2.1 https://repology.org/project/msodbcsql17/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath chrysalis, using log file: /var/log/nixpkgs-update/chrysalis/2024-03-25.log chrysalis 0 -> 1 attrpath: chrysalis Checking auto update branch... The derivation has no 'version' attribute, so do not know how to figure out the version while doing an updateScript update [result] Failed to update chrysalis 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath fvwm, using log file: /var/log/nixpkgs-update/fvwm/2024-03-25.log fvwm 2.7.0 -> 3-1.0.4 https://repology.org/project/fvwm/versions attrpath: fvwm Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv building '/nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv'... trying https://github.com/fvwmorg/fvwm/archive/3-1.0.4.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/fvwmorg/fvwm/archive/3-1.0.4.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'fvwm.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv /nix/store/24sqgp3fkfh45lpzmn3dmfv4fyhm9jnz-fvwm-3-1.0.4.drv building '/nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv'... trying https://github.com/fvwmorg/fvwm/archive/3-1.0.4.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/fvwmorg/fvwm/archive/3-1.0.4.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/dpd6g5zv92a2n6zxzzmp0rz7jpk0kv0x-source.drv'. error: 1 dependencies of derivation '/nix/store/24sqgp3fkfh45lpzmn3dmfv4fyhm9jnz-fvwm-3-1.0.4.drv' failed to build [result] Failed to update fvwm 2.7.0 -> 3-1.0.4 https://repology.org/project/fvwm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.NNS, using log file: /var/log/nixpkgs-update/rPackages.NNS/2024-03-25.log rPackages.NNS 10.4 -> 10.7 https://repology.org/project/r:nns/versions attrpath: rPackages.NNS Checking auto update branch... No auto update branch exists Old version 10.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.NNS 10.4 -> 10.7 https://repology.org/project/r:nns/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath haskellPackages.erd, using log file: /var/log/nixpkgs-update/haskellPackages.erd/2024-03-25.log haskellPackages.erd 0.2.1.0 -> 0.2.2 https://repology.org/project/erd-diagrams/versions attrpath: haskellPackages.erd Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update haskellPackages.erd 0.2.1.0 -> 0.2.2 https://repology.org/project/erd-diagrams/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gosmore, using log file: /var/log/nixpkgs-update/gosmore/2024-03-25.log gosmore 2014-03-17 -> 31801 https://repology.org/project/gosmore/versions attrpath: gosmore Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update gosmore 2014-03-17 -> 31801 https://repology.org/project/gosmore/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cups-pk-helper, using log file: /var/log/nixpkgs-update/cups-pk-helper/2024-03-25.log cups-pk-helper 0.2.6 -> 0.2.7 https://repology.org/project/cups-pk-helper/versions attrpath: cups-pk-helper Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update cups-pk-helper 0.2.6 -> 0.2.7 https://repology.org/project/cups-pk-helper/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.HDF5Array, using log file: /var/log/nixpkgs-update/rPackages.HDF5Array/2024-03-25.log rPackages.HDF5Array 1.30.0 -> 1.31.0 https://repology.org/project/r:hdf5array/versions attrpath: rPackages.HDF5Array Checking auto update branch... No auto update branch exists Old version 1.30.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.HDF5Array 1.30.0 -> 1.31.0 https://repology.org/project/r:hdf5array/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.echarty, using log file: /var/log/nixpkgs-update/rPackages.echarty/2024-03-25.log rPackages.echarty 1.6.2 -> 1.6.3 https://repology.org/project/r:echarty/versions attrpath: rPackages.echarty Checking auto update branch... No auto update branch exists Old version 1.6.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.echarty 1.6.2 -> 1.6.3 https://repology.org/project/r:echarty/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath svrcore, using log file: /var/log/nixpkgs-update/svrcore/2024-03-25.log svrcore 4.0.4 -> 4.1.3 https://repology.org/project/svrcore/versions attrpath: svrcore Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv building '/nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv'... trying https://download.cdn.mozilla.net/pub/mozilla.org/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://archive.mozilla.org/pub/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download svrcore-4.1.3.tar.bz2 from any mirror error: builder for '/nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv' failed with exit code 1; last 13 log lines: > > trying https://download.cdn.mozilla.net/pub/mozilla.org/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://archive.mozilla.org/pub/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download svrcore-4.1.3.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'svrcore.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv /nix/store/kav9sh3kcpiwl3ckcggsfhpix4r7plaj-svrcore-4.1.3.drv building '/nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv'... trying https://download.cdn.mozilla.net/pub/mozilla.org/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://archive.mozilla.org/pub/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download svrcore-4.1.3.tar.bz2 from any mirror error: builder for '/nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv' failed with exit code 1; last 13 log lines: > > trying https://download.cdn.mozilla.net/pub/mozilla.org/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://archive.mozilla.org/pub/directory/svrcore/releases/4.1.3/src/svrcore-4.1.3.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download svrcore-4.1.3.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/jah9sjjvkwan6h10axvfdj7n3v3nav6r-svrcore-4.1.3.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/kav9sh3kcpiwl3ckcggsfhpix4r7plaj-svrcore-4.1.3.drv' failed to build [result] Failed to update svrcore 4.0.4 -> 4.1.3 https://repology.org/project/svrcore/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.smam, using log file: /var/log/nixpkgs-update/rPackages.smam/2024-03-25.log rPackages.smam 0.7.1 -> 0.7.2 https://repology.org/project/r:smam/versions attrpath: rPackages.smam Checking auto update branch... No auto update branch exists Old version 0.7.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.smam 0.7.1 -> 0.7.2 https://repology.org/project/r:smam/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath apacheKafka, using log file: /var/log/nixpkgs-update/apacheKafka/2024-03-25.log apacheKafka 3.5.0 -> 3.7.0 https://repology.org/project/kafka/versions attrpath: apacheKafka Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update apacheKafka 3.5.0 -> 3.7.0 https://repology.org/project/kafka/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.DBDPg 3.17.0 -> 3.18.0 https://repology.org/project/perl:dbd-pg/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath liblscp, using log file: /var/log/nixpkgs-update/liblscp/2024-03-25.log liblscp 0.9.4 -> 0.9.12 https://repology.org/project/liblscp/versions attrpath: liblscp Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/liblscp/default.nix b/pkgs/development/libraries/liblscp/default.nix index 993c090299bd..a16112525379 100644 --- a/pkgs/development/libraries/liblscp/default.nix +++ b/pkgs/development/libraries/liblscp/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "liblscp"; - version = "0.9.4"; + version = "0.9.12"; src = fetchurl { url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.gz"; - sha256 = "sha256-8+3qHgIv32wfNHHggXID1W8M7pTqji4bHNGob3DTkho="; + sha256 = "sha256-eXkUjjoePBLcoML2qy3C4yJGSyMOih6i0EvPGTUDSYE="; }; nativeBuildInputs = [ autoconf automake libtool pkg-config ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A liblscp nix build failed. got build log for 'liblscp' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/sdyl7j8zkz6ws6s83wc0d6m4kza38ran-liblscp-0.9.12.tar.gz source root is liblscp-0.9.12 setting SOURCE_DATE_EPOCH to timestamp 1706004316 of file liblscp-0.9.12/src/thread.c @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase make: Makefile.git: No such file or directory make: *** No rule to make target 'Makefile.git'. Stop. /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 131: pop_var_context: head of shell_variables not a function context [result] Failed to update liblscp 0.9.4 -> 0.9.12 https://repology.org/project/liblscp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath molotov, using log file: /var/log/nixpkgs-update/molotov/2024-03-25.log molotov 4.4.0 -> 5.0.0 https://repology.org/project/molotov/versions attrpath: molotov Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv building '/nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv'... trying http://desktop-auto-upgrade.molotov.tv/linux/5.0.0/molotov.AppImage % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 10 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download molotov.AppImage from any mirror error: builder for '/nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv' failed with exit code 1; last 7 log lines: > > trying http://desktop-auto-upgrade.molotov.tv/linux/5.0.0/molotov.AppImage > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 10 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download molotov.AppImage from any mirror For full logs, run 'nix log /nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'molotov.originalSrc' not found stderr did not split as expected full stderr was: these 9 derivations will be built: /nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv /nix/store/hvkwymj6fvhk2idfgc0sm9gfj5zil36i-molotov-5.0.0-extracted.drv /nix/store/ddy6vh6phjyj2i8fvnd39j9fqjh3zxb4-molotov-5.0.0-init.drv /nix/store/nm2rxpmks2gkfjx2919pz13awrypm6g1-profile.drv /nix/store/q0f6rr28pvqny9pma0d38s2i1s2r1f4y-molotov-5.0.0-chrootenv-etc.drv /nix/store/9sm6bjgbz13s8wwgvfclxvwwridsc2k4-molotov-5.0.0-usr-target.drv /nix/store/pvsxak6bp8lzcjb0c639nf9jdgmyipk5-molotov-5.0.0-fhs.drv /nix/store/gq19jpan938lj7farf1yjvvpj1qb4vj7-molotov-5.0.0-bwrap.drv /nix/store/65k9yghz0ikrn4r03rvbjl6wyd6y5gj3-molotov-5.0.0.drv building '/nix/store/nm2rxpmks2gkfjx2919pz13awrypm6g1-profile.drv'... building '/nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv'... building '/nix/store/q0f6rr28pvqny9pma0d38s2i1s2r1f4y-molotov-5.0.0-chrootenv-etc.drv'... /nix/store/cis5fg7ymnbxr26pxcg7ck1zrcmfw613-molotov-5.0.0-chrootenv-etc/etc /build building '/nix/store/9sm6bjgbz13s8wwgvfclxvwwridsc2k4-molotov-5.0.0-usr-target.drv'... warning: collision between `/nix/store/2ksh88m9fnnmj8xn5a2a0z2q9vakbjpj-glibc-2.38-44-bin/bin/ldconfig' and `/nix/store/i9l6b5i8y7g249pa3lsr9i64jsgk4gfk-ldconfig/bin/ldconfig' warning: collision between `/nix/store/1rm6sr6ixxzipv5358x0cmaw8rs84g2j-glibc-2.38-44/lib/locale/locale-archive' and `/nix/store/0jh79bkd9wfzxih1ci476b71x1b5jclc-glibc-locales-2.38-44/lib/locale/locale-archive' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/bin/bashbug' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/bin/bashbug' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/bin/sh' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/bin/sh' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/bin/bash' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/bin/bash' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/csv' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/csv' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/truefalse' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/truefalse' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/tty' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/tty' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/unlink' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/unlink' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/ln' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/ln' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/logname' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/logname' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/accept' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/accept' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/Makefile.sample' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/Makefile.sample' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/sync' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/sync' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/loadables.h' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/loadables.h' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/mypid' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/mypid' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/basename' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/basename' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/id' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/id' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/head' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/head' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/whoami' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/whoami' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/mkdir' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/mkdir' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/seq' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/seq' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/strftime' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/strftime' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/mktemp' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/mktemp' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/print' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/print' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/getconf' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/getconf' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/rm' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/rm' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/cut' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/cut' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/rmdir' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/rmdir' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/sleep' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/sleep' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/setpgid' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/setpgid' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/tee' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/tee' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/dirname' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/dirname' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/push' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/push' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/fdflags' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/fdflags' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/printenv' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/printenv' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/realpath' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/realpath' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/uname' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/uname' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/finfo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/finfo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/mkfifo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/mkfifo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/pathchk' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/pathchk' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/stat' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/stat' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/lib/bash/dsv' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/lib/bash/dsv' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/fr/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/fr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/lt/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/lt/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/sr/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/sr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/en@boldquot/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/en@boldquot/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/vi/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/vi/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/fi/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/fi/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/et/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/et/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/de/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/de/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/ru/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/ru/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/ja/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/ja/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/ro/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/ro/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/id/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/id/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/nl/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/nl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/sl/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/sl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/nb/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/nb/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/zh_CN/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/zh_CN/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/uk/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/uk/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/ca/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/ca/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/af/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/af/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/cs/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/cs/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/hu/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/hu/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/zh_TW/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/zh_TW/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/pt_BR/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/pt_BR/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/en@quot/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/en@quot/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/pt/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/pt/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/hr/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/hr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/sv/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/sv/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/tr/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/tr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/it/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/it/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/ga/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/ga/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/el/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/el/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/bg/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/bg/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/es/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/es/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/sk/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/sk/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/pl/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/pl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/eo/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/eo/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/gl/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/gl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/ko/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/ko/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/41l3q7yi1ab5s1830k2pi023s5c5vhrl-bash-interactive-5.2p26/share/locale/da/LC_MESSAGES/bash.mo' and `/nix/store/7xc53y1a23s91nhvxxc5vmz4x0vmx2q4-bash-interactive-5.2p26/share/locale/da/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/g3qxy2f02xrnrrd5r5hyadnpknrlxdj2-bash-interactive-5.2p26-man/share/man/man1/bash.1.gz' and `/nix/store/v93dpvfdjk5yh8bkd927amxyi9vf8jk6-bash-interactive-5.2p26-man/share/man/man1/bash.1.gz' warning: collision between `/nix/store/g3qxy2f02xrnrrd5r5hyadnpknrlxdj2-bash-interactive-5.2p26-man/share/man/man1/bashbug.1.gz' and `/nix/store/v93dpvfdjk5yh8bkd927amxyi9vf8jk6-bash-interactive-5.2p26-man/share/man/man1/bashbug.1.gz' warning: collision between `/nix/store/k0npnbqrfv4qxlfix0hr323bbh3nwsr4-gtk+-2.24.33/bin/gtk-update-icon-cache' and `/nix/store/15g7m2yncbawq9kz65plgszxyvp8dlax-gtk+3-3.24.41/bin/gtk-update-icon-cache' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/setpriv' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/setpriv' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/uclampset' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uclampset' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fsck.minix' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsck.minix' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/nsenter' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/nsenter' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mcookie' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mcookie' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/whereis' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/whereis' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/wall' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/wall' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/colcrt' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/colcrt' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/readprofile' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/readprofile' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/renice' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/renice' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lscpu' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lscpu' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/eject' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/eject' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/ipcmk' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ipcmk' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fdisk' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fdisk' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/setsid' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/setsid' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/pipesz' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/pipesz' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/hexdump' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/hexdump' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/setarch' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/setarch' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fsfreeze' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsfreeze' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs.minix' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs.minix' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/uuidd' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uuidd' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/unshare' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/unshare' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/waitpid' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/waitpid' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mesg' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mesg' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/namei' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/namei' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/cal' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/cal' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fstrim' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fstrim' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fallocate' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fallocate' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lsipc' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsipc' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/findmnt' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/findmnt' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/scriptlive' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/scriptlive' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/ionice' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ionice' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs.bfs' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs.bfs' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/last' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/last' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/hwclock' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/hwclock' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/chcpu' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chcpu' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs.cramfs' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs.cramfs' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/uuidgen' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uuidgen' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/ipcrm' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ipcrm' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/uuidparse' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uuidparse' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/blockdev' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blockdev' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/swaplabel' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/swaplabel' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/chrt' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chrt' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/flock' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/flock' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/rename' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rename' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/logger' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/logger' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/column' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/column' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/taskset' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/taskset' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/ctrlaltdel' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ctrlaltdel' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/write' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/write' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/blkzone' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blkzone' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/blkid' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blkid' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/ldattach' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ldattach' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lsblk' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsblk' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/umount' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/umount' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/utmpdump' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/utmpdump' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/look' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/look' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/scriptreplay' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/scriptreplay' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mountpoint' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mountpoint' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fadvise' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fadvise' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/zramctl' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/zramctl' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/ipcs' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ipcs' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lsirq' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsirq' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/rtcwake' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rtcwake' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/blkdiscard' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blkdiscard' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/resizepart' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/resizepart' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/swapon' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/swapon' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lsmem' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsmem' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/script' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/script' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/hardlink' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/hardlink' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mount' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mount' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lslogins' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lslogins' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lslocks' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lslocks' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fsck.cramfs' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsck.cramfs' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/col' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/col' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/getopt' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/getopt' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/wipefs' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/wipefs' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/colrm' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/colrm' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/swapoff' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/swapoff' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/delpart' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/delpart' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/prlimit' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/prlimit' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/partx' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/partx' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/findfs' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/findfs' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/sfdisk' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/sfdisk' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fsck' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsck' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/wdctl' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/wdctl' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/mkswap' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkswap' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/fincore' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fincore' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/losetup' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/losetup' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/isosize' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/isosize' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/chsh' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chsh' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/rev' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rev' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/addpart' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/addpart' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/pivot_root' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/pivot_root' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/chmem' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chmem' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/rfkill' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rfkill' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/lsns' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsns' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/chfn' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chfn' warning: collision between `/nix/store/0xxblw74s19ymlf1635v8hqf0r8q3azv-util-linux-minimal-2.39.3/share/bash-completion/completions/dmesg' and `/nix/store/af157pmcphl3vdmp2bza5vh94n7c1l2j-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/dmesg' trying http://desktop-auto-upgrade.molotov.tv/linux/5.0.0/molotov.AppImage % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 10 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download molotov.AppImage from any mirror error: builder for '/nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv' failed with exit code 1; last 7 log lines: > > trying http://desktop-auto-upgrade.molotov.tv/linux/5.0.0/molotov.AppImage > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 10 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download molotov.AppImage from any mirror For full logs, run 'nix log /nix/store/cpqqbijw94l189fbab60ndi68y4yrmwx-molotov.AppImage.drv'. error: 1 dependencies of derivation '/nix/store/hvkwymj6fvhk2idfgc0sm9gfj5zil36i-molotov-5.0.0-extracted.drv' failed to build error: 1 dependencies of derivation '/nix/store/65k9yghz0ikrn4r03rvbjl6wyd6y5gj3-molotov-5.0.0.drv' failed to build [result] Failed to update molotov 4.4.0 -> 5.0.0 https://repology.org/project/molotov/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ALPS, using log file: /var/log/nixpkgs-update/rPackages.ALPS/2024-03-25.log rPackages.ALPS 1.5.0 -> 1.8.0 https://repology.org/project/r:alps/versions attrpath: rPackages.ALPS Checking auto update branch... No auto update branch exists Old version 1.5.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ALPS 1.5.0 -> 1.8.0 https://repology.org/project/r:alps/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sam-ba, using log file: /var/log/nixpkgs-update/sam-ba/2024-03-25.log sam-ba 3.5 -> 3.7 https://repology.org/project/sam-ba/versions attrpath: sam-ba Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv building '/nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv'... trying https://ww1.microchip.com/downloads/en/DeviceDoc/sam-ba_3.7-linux_x86_64.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 295 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download source from any mirror error: builder for '/nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv' failed with exit code 1; last 8 log lines: > > trying https://ww1.microchip.com/downloads/en/DeviceDoc/sam-ba_3.7-linux_x86_64.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > 0 295 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'sam-ba.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv /nix/store/kpc6k2xgm2iyjjqmp8axd9yqwai40k3i-python3-3.11.8-env.drv /nix/store/h4xz7drhzwxmzg0b46g30xd3v3hrh6r7-sam-ba-3.7.drv building '/nix/store/kpc6k2xgm2iyjjqmp8axd9yqwai40k3i-python3-3.11.8-env.drv'... building '/nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv'... created 236 symlinks in user environment trying https://ww1.microchip.com/downloads/en/DeviceDoc/sam-ba_3.7-linux_x86_64.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 295 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download source from any mirror error: builder for '/nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv' failed with exit code 1; last 8 log lines: > > trying https://ww1.microchip.com/downloads/en/DeviceDoc/sam-ba_3.7-linux_x86_64.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 295 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/9kmpbjayla9573k0fcl80nr7lrsibzdd-source.drv'. error: 1 dependencies of derivation '/nix/store/h4xz7drhzwxmzg0b46g30xd3v3hrh6r7-sam-ba-3.7.drv' failed to build [result] Failed to update sam-ba 3.5 -> 3.7 https://repology.org/project/sam-ba/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.SVMDO, using log file: /var/log/nixpkgs-update/rPackages.SVMDO/2024-03-25.log rPackages.SVMDO 1.2.7 -> 1.2.8 https://repology.org/project/r:svmdo/versions attrpath: rPackages.SVMDO Checking auto update branch... No auto update branch exists Old version 1.2.7" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.SVMDO 1.2.7 -> 1.2.8 https://repology.org/project/r:svmdo/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.psbcGroup, using log file: /var/log/nixpkgs-update/rPackages.psbcGroup/2024-03-25.log rPackages.psbcGroup 1.5 -> 1.7 https://repology.org/project/r:psbcgroup/versions attrpath: rPackages.psbcGroup Checking auto update branch... No auto update branch exists Old version 1.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.psbcGroup 1.5 -> 1.7 https://repology.org/project/r:psbcgroup/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.MASS, using log file: /var/log/nixpkgs-update/rPackages.MASS/2024-03-25.log rPackages.MASS 7.3-60 -> 7.3-60.2 https://repology.org/project/r:mass/versions attrpath: rPackages.MASS Checking auto update branch... No auto update branch exists Old version 7.3-60" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.MASS 7.3-60 -> 7.3-60.2 https://repology.org/project/r:mass/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath alloy6, using log file: /var/log/nixpkgs-update/alloy6/2024-03-25.log alloy6 6.0.0 -> 6.1.0 https://repology.org/project/alloy/versions attrpath: alloy6 Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update alloy6 6.0.0 -> 6.1.0 https://repology.org/project/alloy/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.RcppMeCab, using log file: /var/log/nixpkgs-update/rPackages.RcppMeCab/2024-03-25.log rPackages.RcppMeCab 0.0.1.2 -> 0.0.1.3-2 https://repology.org/project/r:rcppmecab/versions attrpath: rPackages.RcppMeCab Checking auto update branch... No auto update branch exists Old version 0.0.1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.RcppMeCab 0.0.1.2 -> 0.0.1.3-2 https://repology.org/project/r:rcppmecab/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath portunus, using log file: /var/log/nixpkgs-update/portunus/2024-03-25.log portunus 2.1.1 -> 2.04 https://repology.org/project/portunus/versions attrpath: portunus Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv building '/nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv'... trying https://github.com/majewsky/portunus/archive/v2.04.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/majewsky/portunus/archive/v2.04.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'portunus.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv /nix/store/aj1bqzq94ff7d8jszk35y5dbacmv5kr0-portunus-2.04.drv building '/nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv'... trying https://github.com/majewsky/portunus/archive/v2.04.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/majewsky/portunus/archive/v2.04.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/a6sph5ka23660h01hzji7ydaldy3wiz3-source.drv'. error: 1 dependencies of derivation '/nix/store/aj1bqzq94ff7d8jszk35y5dbacmv5kr0-portunus-2.04.drv' failed to build [result] Failed to update portunus 2.1.1 -> 2.04 https://repology.org/project/portunus/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath arc-icon-theme, using log file: /var/log/nixpkgs-update/arc-icon-theme/2024-03-25.log arc-icon-theme 2016-11-22 -> 20161122 https://repology.org/project/arc-icon-theme/versions attrpath: arc-icon-theme Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/data/icons/arc-icon-theme/default.nix b/pkgs/data/icons/arc-icon-theme/default.nix index 2950f929912a..c08e46c1c4aa 100644 --- a/pkgs/data/icons/arc-icon-theme/default.nix +++ b/pkgs/data/icons/arc-icon-theme/default.nix @@ -2,13 +2,13 @@ stdenvNoCC.mkDerivation rec { pname = "arc-icon-theme"; - version = "2016-11-22"; + version = "20161122"; src = fetchFromGitHub { owner = "horst3180"; repo = pname; rev = "55a575386a412544c3ed2b5617a61f842ee4ec15"; - sha256 = "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd"; + sha256 = "sha256-TfYtzwo69AC5hHbzEqB4r5Muqvn/eghCGSlmjMCFA7I="; }; nativeBuildInputs = [ Source url did not change. [result] Failed to update arc-icon-theme 2016-11-22 -> 20161122 https://repology.org/project/arc-icon-theme/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cernlib, using log file: /var/log/nixpkgs-update/cernlib/2024-03-25.log cernlib 2006 -> 2023.10.31.0 https://repology.org/project/cernlib/versions attrpath: cernlib Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv building '/nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv'... trying https://ftp.riken.jp/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 262 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://cernlib.web.cern.ch/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 4470 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download 2023.10.31.0_src.tar.gz from any mirror error: builder for '/nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv' failed with exit code 1; last 13 log lines: > > trying https://ftp.riken.jp/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 262 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://cernlib.web.cern.ch/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 4470 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download 2023.10.31.0_src.tar.gz from any mirror For full logs, run 'nix log /nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'cernlib.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv /nix/store/kpw4ix00ngspn29bszgx1sp9fnz8rx0d-cernlib-2023.10.31.0.drv building '/nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv'... trying https://ftp.riken.jp/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 262 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://cernlib.web.cern.ch/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 4470 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download 2023.10.31.0_src.tar.gz from any mirror error: builder for '/nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv' failed with exit code 1; last 13 log lines: > > trying https://ftp.riken.jp/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 262 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://cernlib.web.cern.ch/cernlib/download/2023.10.31.0_source/tar/2023.10.31.0_src.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 4470 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download 2023.10.31.0_src.tar.gz from any mirror For full logs, run 'nix log /nix/store/lzyjwn3y07dfv0fcwiz0v7kn4nc3f31l-2023.10.31.0_src.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/kpw4ix00ngspn29bszgx1sp9fnz8rx0d-cernlib-2023.10.31.0.drv' failed to build [result] Failed to update cernlib 2006 -> 2023.10.31.0 https://repology.org/project/cernlib/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.DistZilla 6.030 -> 6.031 https://repology.org/project/perl:dist-zilla/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath adbfs-rootless, using log file: /var/log/nixpkgs-update/adbfs-rootless/2024-03-25.log adbfs-rootless 2023-03-21 -> 20200229 https://repology.org/project/adbfs-rootless/versions attrpath: adbfs-rootless Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/mobile/adbfs-rootless/default.nix b/pkgs/development/mobile/adbfs-rootless/default.nix index e959b88c6c6a..f6c32e5b0af9 100644 --- a/pkgs/development/mobile/adbfs-rootless/default.nix +++ b/pkgs/development/mobile/adbfs-rootless/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "adbfs-rootless"; - version = "unstable-2023-03-21"; + version = "unstable-20200229"; src = fetchFromGitHub { owner = "spion"; repo = pname; rev = "fd56381af4dc9ae2f09b904c295686871a46ed0f"; - sha256 = "atiVjRfqvhTlm8Q+3iTNNPQiNkLIaHDLg5HZDJvpl2Q="; + sha256 = "sha256-atiVjRfqvhTlm8Q+3iTNNPQiNkLIaHDLg5HZDJvpl2Q="; }; nativeBuildInputs = [ pkg-config ]; Source url did not change. [result] Failed to update adbfs-rootless 2023-03-21 -> 20200229 https://repology.org/project/adbfs-rootless/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.pyhepmc, using log file: /var/log/nixpkgs-update/python312Packages.pyhepmc/2024-03-25.log python312Packages.pyhepmc 2.13.2 -> 2.13.4 https://repology.org/project/python:pyhepmc/versions attrpath: python312Packages.pyhepmc Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/da9wi488jafvmb66w8416wgfc8gsai5q-packages.json.drv building '/nix/store/da9wi488jafvmb66w8416wgfc8gsai5q-packages.json.drv'... Going to be running update for following packages: - python3.12-pyhepmc-2.13.2 Press Enter key to continue... Running update for: - python3.12-pyhepmc-2.13.2: UPDATING ... - python3.12-pyhepmc-2.13.2: ERROR --- SHOWING ERROR LOG FOR python3.12-pyhepmc-2.13.2 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 596, in main() File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in main results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 619, in result_iterator yield _result_or_cancel(fs.pop()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 317, in _result_or_cancel return fut.result(timeout) ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 456, in result return self.__get_result() ^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result raise self._exception File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/yhk71vsah9zpzx05qh34wf46mxxxh0ba-update-python-libraries", line 294, in _get_latest_version_github response = subprocess.check_output(cmd) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 548, in run with Popen(*popenargs, **kwargs) as process: ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 1026, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/subprocess.py", line 1953, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'nix-prefetch-git' --- SHOWING ERROR LOG FOR python3.12-pyhepmc-2.13.2 ---------------------- The update script for python3.12-pyhepmc-2.13.2 failed with exit code 1 [result] Failed to update python312Packages.pyhepmc 2.13.2 -> 2.13.4 https://repology.org/project/python:pyhepmc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.magika, using log file: /var/log/nixpkgs-update/python312Packages.magika/2024-03-25.log python312Packages.magika 0.5.0 -> 0.5.1 https://repology.org/project/python:magika/versions attrpath: python312Packages.magika Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bk09b2v84db5n6mw0wvyzn883hfsf0qa-packages.json.drv building '/nix/store/bk09b2v84db5n6mw0wvyzn883hfsf0qa-packages.json.drv'... Going to be running update for following packages: - python3.12-magika-0.5.0 Press Enter key to continue... Running update for: - python3.12-magika-0.5.0: UPDATING ... - python3.12-magika-0.5.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/magika/default.nix b/pkgs/development/python-modules/magika/default.nix index 6e4099004317..f2a7cbd85a11 100644 --- a/pkgs/development/python-modules/magika/default.nix +++ b/pkgs/development/python-modules/magika/default.nix @@ -16,13 +16,13 @@ buildPythonPackage rec { pname = "magika"; - version = "0.5.0"; + version = "0.5.1"; pyproject = true; disabled = pythonOlder "3.9"; src = fetchPypi { inherit pname version; - hash = "sha256-r6C7iDCG/o3JEvweQGb4upr+LuHvmNtkwtduZGehCsc="; + hash = "sha256-Q9wRU6FjcyciWmJqFVDAo5Wh1F6jPsH11GubCAI4vuA="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python312Packages.magika nix build failed. Sourcing python-imports-check-hook.sh Using pythonImportsCheckPhase Sourcing python-namespaces-hook Sourcing python-catch-conflicts-hook.sh @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/6hg9ix6ilps0x4lfbnihglisvnbrqafx-magika-0.5.1.tar.gz source root is magika-0.5.1 setting SOURCE_DATE_EPOCH to timestamp 1709829553 of file magika-0.5.1/pyproject.toml @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase no configure script, doing nothing @nix { "action": "setPhase", "phase": "buildPhase" } Running phase: buildPhase Executing pypaBuildPhase Creating a wheel... * Getting build dependencies for wheel... * Building wheel... Successfully built magika-0.5.1-py3-none-any.whl Finished creating a wheel... Finished executing pypaBuildPhase @nix { "action": "setPhase", "phase": "pythonRuntimeDepsCheckHook" } Running phase: pythonRuntimeDepsCheckHook Executing pythonRuntimeDepsCheck Checking runtime dependencies for magika-0.5.1-py3-none-any.whl - onnxruntime<2.0.0,>=1.17.0 not satisfied by version 1.16.3 [result] Failed to update python312Packages.magika 0.5.0 -> 0.5.1 https://repology.org/project/python:magika/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath home-assistant-custom-components.sensi, using log file: /var/log/nixpkgs-update/home-assistant-custom-components.sensi/2024-03-25.log home-assistant-custom-components.sensi 0 -> 1 attrpath: home-assistant-custom-components.sensi Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/wxs3dy92pk9s42m805sjzflmha22knfv-packages.json.drv building '/nix/store/wxs3dy92pk9s42m805sjzflmha22knfv-packages.json.drv'... Going to be running update for following packages: - python3.12-iprak-sensi-1.3.4 Press Enter key to continue... Running update for: - python3.12-iprak-sensi-1.3.4: UPDATING ... - python3.12-iprak-sensi-1.3.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update home-assistant-custom-components.sensi 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath yt-dlg, using log file: /var/log/nixpkgs-update/yt-dlg/2024-03-25.log yt-dlg 0 -> 1 attrpath: yt-dlg Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/r76csw0n6824gpiafkcxmp7j4n5wmj3i-packages.json.drv building '/nix/store/r76csw0n6824gpiafkcxmp7j4n5wmj3i-packages.json.drv'... Going to be running update for following packages: - yt-dlg-1.8.5 Press Enter key to continue... Running update for: - yt-dlg-1.8.5: UPDATING ... - yt-dlg-1.8.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update yt-dlg 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath trayscale, using log file: /var/log/nixpkgs-update/trayscale/2024-03-25.log trayscale 0.10.4 -> 0.11.0 https://repology.org/project/trayscale/versions attrpath: trayscale Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = "sha256-xYBiO6Zm32Do19I/cm4T6fubXY++Bhkn+RNAmKzM5cY=" [golangModuleVersion] Replaced vendorHash with sha256-eIakjEYfVp2wfXu0oqBmd5hJZTp0xgYKNNbtpRBnT2w= [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/networking/trayscale/default.nix b/pkgs/applications/networking/trayscale/default.nix index 023b72b88837..329491fd8230 100644 --- a/pkgs/applications/networking/trayscale/default.nix +++ b/pkgs/applications/networking/trayscale/default.nix @@ -11,16 +11,16 @@ buildGoModule rec { pname = "trayscale"; - version = "0.10.4"; + version = "0.11.0"; src = fetchFromGitHub { owner = "DeedleFake"; repo = "trayscale"; rev = "v${version}"; - hash = "sha256-/31QKCyMeEdpP59B+iXS5hL9W5sWz7R/I2nxBtj+0s4="; + hash = "sha256-qSrt94hEJosdvs2N6rbcJLpjqvMPkY20dIKV3jtjFlg="; }; - vendorHash = "sha256-xYBiO6Zm32Do19I/cm4T6fubXY++Bhkn+RNAmKzM5cY="; + vendorHash = "sha256-eIakjEYfVp2wfXu0oqBmd5hJZTp0xgYKNNbtpRBnT2w="; subPackages = [ "cmd/trayscale" ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/34rzihjfzgfm13gnph5gsy93smj7h85p-trayscale-0.11.0" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • trayscale
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://repology.org/project/trayscale/versions. meta.description for trayscale is: An unofficial GUI wrapper around the Tailscale CLI client meta.homepage for trayscale is: https://github.com/DeedleFake/trayscale ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/DeedleFake/trayscale/releases/tag/v0.11.0) - [Compare changes on GitHub](https://github.com/DeedleFake/trayscale/compare/v0.10.4...v0.11.0) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.11.0 with grep in /nix/store/34rzihjfzgfm13gnph5gsy93smj7h85p-trayscale-0.11.0 - found 0.11.0 in filename of file in /nix/store/34rzihjfzgfm13gnph5gsy93smj7h85p-trayscale-0.11.0 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath trayscale ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/34rzihjfzgfm13gnph5gsy93smj7h85p-trayscale-0.11.0 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A trayscale https://github.com/r-ryantm/nixpkgs/archive/7be43dfb3b8fa7b173db22531b1d4c0b5bff828b.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/7be43dfb3b8fa7b173db22531b1d4c0b5bff828b#trayscale ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/34rzihjfzgfm13gnph5gsy93smj7h85p-trayscale-0.11.0 ls -la /nix/store/34rzihjfzgfm13gnph5gsy93smj7h85p-trayscale-0.11.0/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • trayscale
--- ###### Maintainer pings cc @K900 for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298897 [result] Success updating trayscale 0.10.4 -> 0.11.0 https://repology.org/project/trayscale/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath blast, using log file: /var/log/nixpkgs-update/blast/2024-03-25.log blast 2.14.1 -> 2.15.0 https://repology.org/project/ncbi-blast+/versions attrpath: blast Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/science/biology/blast/default.nix b/pkgs/applications/science/biology/blast/default.nix index 407d38970b0f..6b1a34e30857 100644 --- a/pkgs/applications/science/biology/blast/default.nix +++ b/pkgs/applications/science/biology/blast/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "blast"; - version = "2.14.1"; + version = "2.15.0"; src = fetchurl { url = "https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/${version}/ncbi-blast-${version}+-src.tar.gz"; - sha256 = "sha256-cSwtvfD7E8wcLU9O9d0c5LBsO1fpbf6o8j5umfWxZQ4="; + sha256 = "sha256-aRjDcFJMjUTgKL9JHo8kWoleB8Zsd7Jhzjs41gWCFuA="; }; sourceRoot = "ncbi-blast-${version}+-src/c++"; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A blast nix build failed. /build/ncbi-blast-2.15.0+-src/c++/src/objtools/readers/source_mod_parser.cpp:922:24: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wsign-compare-Wsign-compare]8;;] 922 | for (int i=0; i 2.15.0 https://repology.org/project/ncbi-blast+/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath emacsPackages.company-rtags, using log file: /var/log/nixpkgs-update/emacsPackages.company-rtags/2024-03-25.log emacsPackages.company-rtags 2.38 -> 3.23 https://repology.org/project/emacs:company-rtags/versions attrpath: emacsPackages.company-rtags Checking auto update branch... No auto update branch exists Old version 2.38" not present in master derivation file with contents: /* # Updating To update the list of packages from MELPA, 1. Run `./update-melpa` 2. Check for evaluation errors: # "../../../../../" points to the default.nix from root of Nixpkgs tree env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaStablePackages env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaPackages 3. Run `git commit -m "melpa-packages $(date -Idate)" recipes-archive-melpa.json` ## Update from overlay Alternatively, run the following command: ./update-from-overlay It will update both melpa and elpa packages using https://github.com/nix-community/emacs-overlay. It's almost instantenous and formats commits for you. */ { lib, pkgs }: variant: self: let dontConfigure = pkg: if pkg != null then pkg.override (args: { melpaBuild = drv: args.melpaBuild (drv // { dontConfigure = true; }); }) else null; markBroken = pkg: if pkg != null then pkg.override (args: { melpaBuild = drv: args.melpaBuild (drv // { meta = (drv.meta or { }) // { broken = true; }; }); }) else null; externalSrc = pkg: epkg: if pkg != null then pkg.override (args: { melpaBuild = drv: args.melpaBuild (drv // { inherit (epkg) src version; propagatedUserEnvPkgs = [ epkg ]; }); }) else null; buildWithGit = pkg: pkg.overrideAttrs (attrs: { nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ [ pkgs.git ]; }); fix-rtags = pkg: if pkg != null then dontConfigure (externalSrc pkg pkgs.rtags) else null; generateMelpa = lib.makeOverridable ({ archiveJson ? ./recipes-archive-melpa.json }: let inherit (import ./libgenerated.nix lib self) melpaDerivation; super = ( lib.listToAttrs (builtins.filter (s: s != null) (map (melpaDerivation variant) (lib.importJSON archiveJson) ) ) ); overrides = lib.optionalAttrs (variant == "stable") { # upstream issue: missing file header abridge-diff = if super.abridge-diff.version == "0.1" then markBroken super.abridge-diff else super.abridge-diff; # upstream issue: missing file header bufshow = markBroken super.bufshow; # upstream issue: missing file header speech-tagger = markBroken super.speech-tagger; # upstream issue: missing file header textmate = markBroken super.textmate; # upstream issue: missing file header window-numbering = markBroken super.window-numbering; # upstream issue: missing file header voca-builder = markBroken super.voca-builder; # upstream issue: missing file header initsplit = markBroken super.initsplit; # upstream issue: missing file header jsfmt = markBroken super.jsfmt; # upstream issue: missing file header maxframe = markBroken super.maxframe; # upstream issue: missing file header connection = markBroken super.connection; # upstream issue: missing file header dictionary = markBroken super.dictionary; # upstream issue: missing file header fold-dwim = if super.fold-dwim.version == "1.2" then markBroken super.fold-dwim else super.fold-dwim; # upstream issue: missing file header gl-conf-mode = if super.gl-conf-mode.version == "0.3" then markBroken super.gl-conf-mode else super.gl-conf-mode; # upstream issue: missing file header ligo-mode = if super.ligo-mode.version == "0.3" then markBroken super.ligo-mode else null; # auto-updater is failing; use manual one # upstream issue: missing file header link = markBroken super.link; # upstream issue: missing file header org-dp = if super.org-dp.version == "1" then markBroken super.org-dp else super.org-dp; # upstream issue: missing file header revbufs = if super.revbufs.version == "1.2" then markBroken super.revbufs else super.revbufs; # upstream issue: missing file header elmine = markBroken super.elmine; # upstream issue: missing file header ido-complete-space-or-hyphen = markBroken super.ido-complete-space-or-hyphen; } // { # Expects bash to be at /bin/bash ac-rtags = fix-rtags super.ac-rtags; airline-themes = super.airline-themes.override { inherit (self.melpaPackages) powerline; }; auto-complete-clang-async = super.auto-complete-clang-async.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.llvmPackages.llvm ]; CFLAGS = "-I${pkgs.llvmPackages.libclang.lib}/include"; LDFLAGS = "-L${pkgs.llvmPackages.libclang.lib}/lib"; }); # part of a larger package caml = dontConfigure super.caml; # part of a larger package # upstream issue: missing package version cmake-mode = dontConfigure super.cmake-mode; company-rtags = fix-rtags super.company-rtags; easy-kill-extras = super.easy-kill-extras.override { inherit (self.melpaPackages) easy-kill; }; dune = dontConfigure super.dune; emacsql = super.emacsql.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.sqlite ]; postBuild = '' cd source/sqlite make cd - ''; postInstall = (old.postInstall or "") + "\n" + '' install -m=755 -D source/sqlite/emacsql-sqlite \ $out/share/emacs/site-lisp/elpa/emacsql-${old.version}/sqlite/emacsql-sqlite ''; stripDebugList = [ "share" ]; }); emacsql-sqlite = super.emacsql-sqlite.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.sqlite ]; postBuild = '' cd source/sqlite make cd - ''; postInstall = (old.postInstall or "") + "\n" + '' install -m=755 -D source/sqlite/emacsql-sqlite \ $out/share/emacs/site-lisp/elpa/emacsql-sqlite-${old.version}/sqlite/emacsql-sqlite ''; stripDebugList = [ "share" ]; }); epkg = super.epkg.overrideAttrs (old: { postPatch = '' substituteInPlace lisp/epkg.el \ --replace '(call-process "sqlite3"' '(call-process "${pkgs.sqlite}/bin/sqlite3"' ''; }); erlang = super.erlang.overrideAttrs (attrs: { buildInputs = attrs.buildInputs ++ [ pkgs.perl pkgs.ncurses ]; }); # https://github.com/syl20bnr/evil-escape/pull/86 evil-escape = super.evil-escape.overrideAttrs (attrs: { postPatch = '' substituteInPlace evil-escape.el \ --replace ' ;;; evil' ';;; evil' ''; packageRequires = with self; [ evil ]; }); ess-R-data-view = super.ess-R-data-view.override { inherit (self.melpaPackages) ess ctable popup; }; flycheck-rtags = fix-rtags super.flycheck-rtags; pdf-tools = super.pdf-tools.overrideAttrs (old: { # Temporary work around for: # - https://github.com/vedang/pdf-tools/issues/102 # - https://github.com/vedang/pdf-tools/issues/103 # - https://github.com/vedang/pdf-tools/issues/109 CXXFLAGS = "-std=c++17"; nativeBuildInputs = [ pkgs.autoconf pkgs.automake pkgs.pkg-config pkgs.removeReferencesTo ]; buildInputs = old.buildInputs ++ [ pkgs.libpng pkgs.zlib pkgs.poppler ]; preBuild = '' make server/epdfinfo remove-references-to ${lib.concatStringsSep " " ( map (output: "-t " + output) ( [ pkgs.glib.dev pkgs.libpng.dev pkgs.poppler.dev pkgs.zlib.dev pkgs.cairo.dev ] ++ lib.optional pkgs.stdenv.isLinux pkgs.stdenv.cc.libc.dev ) )} server/epdfinfo ''; recipe = pkgs.writeText "recipe" '' (pdf-tools :repo "politza/pdf-tools" :fetcher github :files ("lisp/pdf-*.el" "server/epdfinfo")) ''; }); # Build same version as Haskell package hindent = (externalSrc super.hindent pkgs.haskellPackages.hindent).overrideAttrs (attrs: { packageRequires = [ self.haskell-mode ]; }); hotfuzz = super.hotfuzz.overrideAttrs (old: { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.cmake ]; dontUseCmakeBuildDir = true; preBuild = '' make -j$NIX_BUILD_CORES ''; postInstall = (old.postInstall or "") + "\n" + '' install source/hotfuzz-module.so $out/share/emacs/site-lisp/elpa/hotfuzz-* ''; }); irony = super.irony.overrideAttrs (old: { cmakeFlags = old.cmakeFlags or [ ] ++ [ "-DCMAKE_INSTALL_BINDIR=bin" ]; env.NIX_CFLAGS_COMPILE = "-UCLANG_RESOURCE_DIR"; preConfigure = '' cd server ''; preBuild = '' make install -D bin/irony-server $out/bin/irony-server cd .. ''; checkPhase = '' cd source/server make check cd ../.. ''; preFixup = '' rm -rf $out/share/emacs/site-lisp/elpa/*/server ''; dontUseCmakeBuildDir = true; doCheck = pkgs.stdenv.isLinux; packageRequires = [ self.emacs ]; buildInputs = [ pkgs.llvmPackages.libclang self.emacs ]; nativeBuildInputs = [ pkgs.cmake pkgs.llvmPackages.llvm ]; }); # tries to write a log file to $HOME insert-shebang = super.insert-shebang.overrideAttrs (attrs: { HOME = "/tmp"; }); ivy-rtags = fix-rtags super.ivy-rtags; jinx = super.jinx.overrideAttrs (old: let libExt = pkgs.stdenv.hostPlatform.extensions.sharedLibrary; in { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ]; buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.enchant2 ]; postBuild = '' pushd working/jinx NIX_CFLAGS_COMPILE="$($PKG_CONFIG --cflags enchant-2) $NIX_CFLAGS_COMPILE" $CC -shared -o jinx-mod${libExt} jinx-mod.c -lenchant-2 popd ''; postInstall = (old.postInstall or "") + "\n" + '' pushd source outd=$(echo $out/share/emacs/site-lisp/elpa/jinx-*) install -m444 --target-directory=$outd jinx-mod${libExt} rm $outd/jinx-mod.c $outd/emacs-module.h popd ''; meta = old.meta // { maintainers = [ lib.maintainers.DamienCassou ]; }; }); sqlite3 = super.sqlite3.overrideAttrs (old: { buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.sqlite ]; postBuild = '' pushd working/sqlite3 make popd ''; postInstall = (old.postInstall or "") + "\n" + '' pushd source outd=$out/share/emacs/site-lisp/elpa/sqlite3-* install -m444 -t $outd sqlite3-api.so rm $outd/*.c $outd/*.h popd ''; meta = old.meta // { maintainers = [ lib.maintainers.DamienCassou ]; }; }); libgit = super.libgit.overrideAttrs(attrs: { nativeBuildInputs = (attrs.nativeBuildInputs or []) ++ [ pkgs.cmake ]; buildInputs = attrs.buildInputs ++ [ pkgs.libgit2 ]; dontUseCmakeBuildDir = true; postPatch = '' sed -i s/'add_subdirectory(libgit2)'// CMakeLists.txt ''; postBuild = '' pushd working/libgit make popd ''; postInstall = (attrs.postInstall or "") + "\n" + '' outd=$(echo $out/share/emacs/site-lisp/elpa/libgit-**) mkdir $outd/build install -m444 -t $outd/build ./source/src/libegit2.so rm -r $outd/src $outd/Makefile $outd/CMakeLists.txt ''; }); evil-magit = buildWithGit super.evil-magit; eopengrok = buildWithGit super.eopengrok; forge = buildWithGit super.forge; magit = buildWithGit super.magit; magit-find-file = buildWithGit super.magit-find-file; magit-gh-pulls = buildWithGit super.magit-gh-pulls; magit-imerge = buildWithGit super.magit-imerge; magit-lfs = buildWithGit super.magit-lfs; magit-org-todos = buildWithGit super.magit-org-todos; magit-tbdiff = buildWithGit super.magit-tbdiff; magit-topgit = buildWithGit super.magit-topgit; magit-vcsh = buildWithGit super.magit-vcsh; magit-gerrit = buildWithGit super.magit-gerrit; magit-annex = buildWithGit super.magit-annex; magit-todos = buildWithGit super.magit-todos; magit-filenotify = buildWithGit super.magit-filenotify; magit-gitflow = buildWithGit super.magit-gitflow; magithub = buildWithGit super.magithub; magit-svn = buildWithGit super.magit-svn; kubernetes = buildWithGit super.kubernetes; kubernetes-evil = buildWithGit super.kubernetes-evil; egg = buildWithGit super.egg; kapacitor = buildWithGit super.kapacitor; gerrit = buildWithGit super.gerrit; gerrit-download = buildWithGit super.gerrit-download; github-pullrequest = buildWithGit super.github-pullrequest; jist = buildWithGit super.jist; mandoku = buildWithGit super.mandoku; mandoku-tls = buildWithGit super.mandoku-tls; magit-p4 = buildWithGit super.magit-p4; magit-rbr = buildWithGit super.magit-rbr; magit-diff-flycheck = buildWithGit super.magit-diff-flycheck; magit-reviewboard = buildWithGit super.magit-reviewboard; magit-patch-changelog = buildWithGit super.magit-patch-changelog; magit-circleci = buildWithGit super.magit-circleci; magit-delta = buildWithGit super.magit-delta; orgit = buildWithGit super.orgit; orgit-forge = buildWithGit super.orgit-forge; ox-rss = buildWithGit super.ox-rss; python-isort = super.python-isort.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace python-isort.el \ --replace '-isort-command "isort"' '-isort-command "${lib.getExe pkgs.isort}"' ''; }); # upstream issue: missing file header mhc = super.mhc.override { inherit (self.melpaPackages) calfw; }; # missing .NET nemerle = markBroken super.nemerle; # part of a larger package notmuch = dontConfigure super.notmuch; pikchr-mode = super.pikchr-mode.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace pikchr-mode.el \ --replace '"pikchr")' '"${lib.getExe pkgs.pikchr}")' ''; }); rtags = dontConfigure (externalSrc super.rtags pkgs.rtags); rtags-xref = dontConfigure super.rtags; rime = super.rime.overrideAttrs (old: { buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.librime ]; preBuild = (old.preBuild or "") + '' make lib mkdir -p /build/rime-lib cp *.so /build/rime-lib ''; postInstall = (old.postInstall or "") + '' install -m444 -t $out/share/emacs/site-lisp/elpa/rime-* /build/rime-lib/*.so ''; }); shm = super.shm.overrideAttrs (attrs: { propagatedUserEnvPkgs = [ pkgs.haskellPackages.structured-haskell-mode ]; }); # Telega has a server portion for it's network protocol telega = super.telega.overrideAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.tdlib ]; nativeBuildInputs = [ pkgs.pkg-config ]; postPatch = '' substituteInPlace telega-customize.el \ --replace 'defcustom telega-server-command "telega-server"' \ "defcustom telega-server-command \"$out/bin/telega-server\"" substituteInPlace telega-sticker.el --replace '"dwebp' '"${pkgs.libwebp}/bin/dwebp' substituteInPlace telega-sticker.el --replace '"ffmpeg' '"${pkgs.ffmpeg}/bin/ffmpeg' substituteInPlace telega-vvnote.el --replace '"ffmpeg' '"${pkgs.ffmpeg}/bin/ffmpeg' ''; postBuild = '' cd source/server make cd - ''; postInstall = (old.postInstall or "") + "\n" + '' mkdir -p $out/bin install -m755 -Dt $out/bin ./source/server/telega-server ''; }); tokei = super.tokei.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace tokei.el \ --replace 'tokei-program "tokei"' 'tokei-program "${lib.getExe pkgs.tokei}"' ''; }); treemacs-magit = super.treemacs-magit.overrideAttrs (attrs: { # searches for Git at build time nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ [ pkgs.git ]; }); typst-mode = super.typst-mode.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace typst-mode.el \ --replace 'typst-executable-location "typst"' 'typst-executable-location "${lib.getExe pkgs.typst}"' ''; }); vdiff-magit = super.vdiff-magit.overrideAttrs (attrs: { nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ [ pkgs.git ]; }); zmq = super.zmq.overrideAttrs (old: { stripDebugList = [ "share" ]; preBuild = '' export EZMQ_LIBDIR=$(mktemp -d) make ''; nativeBuildInputs = [ pkgs.autoconf pkgs.automake pkgs.pkg-config pkgs.libtool (pkgs.zeromq.override { enableDrafts = true; }) ]; postInstall = (old.postInstall or "") + "\n" + '' mv $EZMQ_LIBDIR/emacs-zmq.* $out/share/emacs/site-lisp/elpa/zmq-* rm -r $out/share/emacs/site-lisp/elpa/zmq-*/src rm $out/share/emacs/site-lisp/elpa/zmq-*/Makefile ''; }); # Map legacy renames from emacs2nix since code generation was ported to emacs lisp _0blayout = super."0blayout"; desktop-plus = super."desktop+"; ghub-plus = super."ghub+"; git-gutter-plus = super."git-gutter+"; git-gutter-fringe-plus = super."git-gutter-fringe+"; ido-completing-read-plus = super."ido-completing-read+"; image-plus = super."image+"; image-dired-plus = super."image-dired+"; markdown-mode-plus = super."markdown-mode+"; package-plus = super."package+"; rect-plus = super."rect+"; # upstream issue: missing file header instapaper = markBroken super.instapaper; # upstream issue: doesn't build magit-stgit = markBroken super.magit-stgit; # upstream issue: missing file header melancholy-theme = markBroken super.melancholy-theme; # upstream issue: doesn't build eterm-256color = markBroken super.eterm-256color; # upstream issue: doesn't build per-buffer-theme = markBroken super.per-buffer-theme; # upstream issue: missing file header qiita = markBroken super.qiita; # upstream issue: missing file header sql-presto = markBroken super.sql-presto; editorconfig = super.editorconfig.overrideAttrs (attrs: { propagatedUserEnvPkgs = [ pkgs.editorconfig-core-c ]; }); # missing dependencies evil-search-highlight-persist = super.evil-search-highlight-persist.overrideAttrs (attrs: { packageRequires = with self; [ evil highlight ]; }); hamlet-mode = super.hamlet-mode.overrideAttrs (attrs: { patches = [ # Fix build; maintainer email fails to parse (pkgs.fetchpatch { url = "https://github.com/lightquake/hamlet-mode/commit/253495d1330d6ec88d97fac136c78f57c650aae0.patch"; sha256 = "dSxS5yuXzCW96CUyvJWwjkhf1FMGBfiKKoBxeDVdz9Y="; }) ]; }); helm-rtags = fix-rtags super.helm-rtags; # tries to write to $HOME php-auto-yasnippets = super.php-auto-yasnippets.overrideAttrs (attrs: { HOME = "/tmp"; }); racer = super.racer.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace racer.el \ --replace /usr/local/src/rust/src ${pkgs.rustPlatform.rustcSrc} ''; }); spaceline = super.spaceline.override { inherit (self.melpaPackages) powerline; }; vterm = super.vterm.overrideAttrs (old: { nativeBuildInputs = [ pkgs.cmake ]; buildInputs = old.buildInputs ++ [ self.emacs pkgs.libvterm-neovim ]; cmakeFlags = [ "-DEMACS_SOURCE=${self.emacs.src}" "-DUSE_SYSTEM_LIBVTERM=ON" ]; # we need the proper out directory to exist, so we do this in the # postInstall instead of postBuild postInstall = (old.postInstall or "") + "\n" + '' pushd source/build >/dev/null make install -m444 -t $out/share/emacs/site-lisp/elpa/vterm-** ../*.so popd > /dev/null rm -rf $out/share/emacs/site-lisp/elpa/vterm-**/{CMake*,build,*.c,*.h} ''; }); w3m = super.w3m.override (args: { melpaBuild = drv: args.melpaBuild (drv // { prePatch = let w3m = "${lib.getBin pkgs.w3m}/bin/w3m"; in '' substituteInPlace w3m.el \ --replace 'defcustom w3m-command nil' \ 'defcustom w3m-command "${w3m}"' ''; }); }); wordnut = super.wordnut.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace wordnut.el \ --replace 'wordnut-cmd "wn"' 'wordnut-cmd "${lib.getExe pkgs.wordnet}"' ''; }); mozc = super.mozc.overrideAttrs (attrs: { postPatch = attrs.postPatch or "" + '' substituteInPlace src/unix/emacs/mozc.el \ --replace '"mozc_emacs_helper"' '"${pkgs.ibus-engines.mozc}/lib/mozc/mozc_emacs_helper"' ''; }); # Build a helper executable that interacts with the macOS Dictionary.app osx-dictionary = if pkgs.stdenv.isDarwin then super.osx-dictionary.overrideAttrs (old: { buildInputs = old.buildInputs ++ (with pkgs.darwin.apple_sdk.frameworks; [CoreServices Foundation]); dontUnpack = false; buildPhase = (old.buildPhase or "") + '' cd source $CXX -O3 -framework CoreServices -framework Foundation osx-dictionary.m -o osx-dictionary-cli ''; postInstall = (old.postInstall or "") + "\n" + '' outd=$out/share/emacs/site-lisp/elpa/osx-dictionary-* mkdir -p $out/bin install -m444 -t $out/bin osx-dictionary-cli rm $outd/osx-dictionary.m ''; }) else super.osx-dictionary; }; in lib.mapAttrs (n: v: if lib.hasAttr n overrides then overrides.${n} else v) super); in (generateMelpa { }) // { __attrsFailEvaluation = true; } [result] Failed to update emacsPackages.company-rtags 2.38 -> 3.23 https://repology.org/project/emacs:company-rtags/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.nipreps-versions, using log file: /var/log/nixpkgs-update/python311Packages.nipreps-versions/2024-03-25.log python311Packages.nipreps-versions 0 -> 1 attrpath: python311Packages.nipreps-versions Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/d8jd1ldi45pa66y7rwmxfysb4ds9kbc2-packages.json.drv building '/nix/store/d8jd1ldi45pa66y7rwmxfysb4ds9kbc2-packages.json.drv'... Going to be running update for following packages: - python3.11-nipreps-versions-1.0.4 Press Enter key to continue... Running update for: - python3.11-nipreps-versions-1.0.4: UPDATING ... - python3.11-nipreps-versions-1.0.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nipreps-versions 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.svgutils, using log file: /var/log/nixpkgs-update/python311Packages.svgutils/2024-03-25.log python311Packages.svgutils 0 -> 1 attrpath: python311Packages.svgutils Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/h5ibysrxpv750xxbbf9m4v74z6wxfl6r-packages.json.drv building '/nix/store/h5ibysrxpv750xxbbf9m4v74z6wxfl6r-packages.json.drv'... Going to be running update for following packages: - python3.11-svgutils-0.3.4 Press Enter key to continue... Running update for: - python3.11-svgutils-0.3.4: UPDATING ... - python3.11-svgutils-0.3.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.svgutils 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath chez-scmutils, using log file: /var/log/nixpkgs-update/chez-scmutils/2024-03-25.log chez-scmutils 0.1 -> 1.0 https://repology.org/project/chez-scmutils/versions attrpath: chez-scmutils Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/173zp4ldxrhkf6xja72yi2qql1d8g325-source.drv building '/nix/store/173zp4ldxrhkf6xja72yi2qql1d8g325-source.drv'... trying https://github.com/fedeinthemix/chez-scmutils/archive/v1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/173zp4ldxrhkf6xja72yi2qql1d8g325-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/fedeinthemix/chez-scmutils/archive/v1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/173zp4ldxrhkf6xja72yi2qql1d8g325-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'chez-scmutils.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/173zp4ldxrhkf6xja72yi2qql1d8g325-source.drv /nix/store/dkfjslk58wr3czxak1iqw52wjw6v2rvh-chez-mit-0.1.drv /nix/store/6h5hkr3fzb1hcs3cky05854kvixhh8y8-chez-scmutils-1.0.drv this path will be fetched (0.02 MiB download, 0.08 MiB unpacked): /nix/store/60zbd7rvgwwg2ygw9x8jx7vbn7991m1y-source copying path '/nix/store/60zbd7rvgwwg2ygw9x8jx7vbn7991m1y-source' from 'https://cache.nixos.org'... building '/nix/store/173zp4ldxrhkf6xja72yi2qql1d8g325-source.drv'... building '/nix/store/dkfjslk58wr3czxak1iqw52wjw6v2rvh-chez-mit-0.1.drv'... Running phase: unpackPhase unpacking source archive /nix/store/60zbd7rvgwwg2ygw9x8jx7vbn7991m1y-source source root is source Running phase: patchPhase Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase no configure script, doing nothing Running phase: buildPhase Exception: variable \x23;t is not bound /nix/store/jy1y011asvwkjaq9j6jbcd47z38lakbv-chez-scheme-10.0.0/bin/scheme --program compile-all.ss trying https://github.com/fedeinthemix/chez-scmutils/archive/v1.0.tar.gz compiling ./mit/curry.sls with output to ./mit/curry.so % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed compiling ./mit/arity.sls with output to ./mit/arity.so compiling ./mit/apply-hook.sls with output to ./mit/apply-hook.so compiling ./mit/arithmetic.sls with output to ./mit/arithmetic.so compiling ./mit/core.sls with output to ./mit/core.so compiling ./mit/list.sls with output to ./mit/list.so compiling ./mit/vector.sls with output to ./mit/vector.so compiling ./mit/hash-tables.sls with output to ./mit/hash-tables.so Exception: multiple definitions for string->uninterned-symbol in body (library (mit hash-tables) (export make-key-weak-eqv-hash-table make-key-weak-eq-hash-table make-weak-eq-hash-table make-eq-hash-table hash-table/get ...) (import (except (...) error assert sort) (mit core) (mit curry)) (define make-key-weak-eqv-hash-table make-weak-eqv-hashtable) (define make-key-weak-eq-hash-table make-weak-eq-hashtable) ...) at line 2, char 1 of ./mit/hash-tables.sls make: *** [Makefile:37: build] Error 255 error: builder for '/nix/store/dkfjslk58wr3czxak1iqw52wjw6v2rvh-chez-mit-0.1.drv' failed with exit code 2; last 20 log lines: > Running phase: unpackPhase > unpacking source archive /nix/store/60zbd7rvgwwg2ygw9x8jx7vbn7991m1y-source > source root is source > Running phase: patchPhase > Running phase: updateAutotoolsGnuConfigScriptsPhase > Running phase: configurePhase > no configure script, doing nothing > Running phase: buildPhase > Exception: variable \x23;t is not bound > /nix/store/jy1y011asvwkjaq9j6jbcd47z38lakbv-chez-scheme-10.0.0/bin/scheme --program compile-all.ss > compiling ./mit/curry.sls with output to ./mit/curry.so > compiling ./mit/arity.sls with output to ./mit/arity.so > compiling ./mit/apply-hook.sls with output to ./mit/apply-hook.so > compiling ./mit/arithmetic.sls with output to ./mit/arithmetic.so > compiling ./mit/core.sls with output to ./mit/core.so > compiling ./mit/list.sls with output to ./mit/list.so > compiling ./mit/vector.sls with output to ./mit/vector.so > compiling ./mit/hash-tables.sls with output to ./mit/hash-tables.so > Exception: multiple definitions for string->uninterned-symbol in body (library (mit hash-tables) (export make-key-weak-eqv-hash-table make-key-weak-eq-hash-table make-weak-eq-hash-table make-eq-hash-table hash-table/get ...) (import (except (...) error assert sort) (mit core) (mit curry)) (define make-key-weak-eqv-hash-table make-weak-eqv-hashtable) (define make-key-weak-eq-hash-table make-weak-eq-hashtable) ...) at line 2, char 1 of ./mit/hash-tables.sls > make: *** [Makefile:37: build] Error 255 For full logs, run 'nix log /nix/store/dkfjslk58wr3czxak1iqw52wjw6v2rvh-chez-mit-0.1.drv'. error: 1 dependencies of derivation '/nix/store/6h5hkr3fzb1hcs3cky05854kvixhh8y8-chez-scmutils-1.0.drv' failed to build [result] Failed to update chez-scmutils 0.1 -> 1.0 https://repology.org/project/chez-scmutils/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath telegram-bot-api, using log file: /var/log/nixpkgs-update/telegram-bot-api/2024-03-25.log telegram-bot-api 5.7 -> 20231228 https://repology.org/project/telegram-bot-api/versions attrpath: telegram-bot-api Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update telegram-bot-api 5.7 -> 20231228 https://repology.org/project/telegram-bot-api/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.monographaR, using log file: /var/log/nixpkgs-update/rPackages.monographaR/2024-03-25.log rPackages.monographaR 1.2.1 -> 1.3.1 https://repology.org/project/r:monographar/versions attrpath: rPackages.monographaR Checking auto update branch... No auto update branch exists Old version 1.2.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.monographaR 1.2.1 -> 1.3.1 https://repology.org/project/r:monographar/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.singleCellHaystack, using log file: /var/log/nixpkgs-update/rPackages.singleCellHaystack/2024-03-25.log rPackages.singleCellHaystack 1.0.0 -> 1.0.2 https://repology.org/project/r:singlecellhaystack/versions attrpath: rPackages.singleCellHaystack Checking auto update branch... No auto update branch exists Old version 1.0.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.singleCellHaystack 1.0.0 -> 1.0.2 https://repology.org/project/r:singlecellhaystack/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath vbetool, using log file: /var/log/nixpkgs-update/vbetool/2024-03-25.log vbetool 1.1 -> 1.2.2 https://repology.org/project/vbetool/versions attrpath: vbetool Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv building '/nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv'... trying https://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.2.2.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 279 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download vbetool-1.2.2.tar.gz from any mirror error: builder for '/nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.2.2.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 279 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download vbetool-1.2.2.tar.gz from any mirror For full logs, run 'nix log /nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'vbetool.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv /nix/store/2lfdg5vsr0g3m4mhsg826hbx9bdhsd9s-vbetool-1.2.2.drv building '/nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv'... trying https://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.2.2.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 279 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download vbetool-1.2.2.tar.gz from any mirror error: builder for '/nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.2.2.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 279 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download vbetool-1.2.2.tar.gz from any mirror For full logs, run 'nix log /nix/store/mxk18h7k3zsjywifjyckh4bx3g6hiass-vbetool-1.2.2.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/2lfdg5vsr0g3m4mhsg826hbx9bdhsd9s-vbetool-1.2.2.drv' failed to build [result] Failed to update vbetool 1.1 -> 1.2.2 https://repology.org/project/vbetool/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.naryn, using log file: /var/log/nixpkgs-update/rPackages.naryn/2024-03-25.log rPackages.naryn 2.6.25 -> 2.6.26 https://repology.org/project/r:naryn/versions attrpath: rPackages.naryn Checking auto update branch... No auto update branch exists Old version 2.6.25" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.naryn 2.6.25 -> 2.6.26 https://repology.org/project/r:naryn/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath verbiste, using log file: /var/log/nixpkgs-update/verbiste/2024-03-25.log verbiste 0.1.47 -> 0.1.48 https://repology.org/project/verbiste/versions attrpath: verbiste Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv building '/nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv'... trying https://perso.b2b2c.ca/~sarrazip/dev/verbiste-0.1.48.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL certificate problem: certificate has expired More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download verbiste-0.1.48.tar.gz from any mirror error: builder for '/nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv' failed with exit code 1; last 12 log lines: > > trying https://perso.b2b2c.ca/~sarrazip/dev/verbiste-0.1.48.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL certificate problem: certificate has expired > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download verbiste-0.1.48.tar.gz from any mirror For full logs, run 'nix log /nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'verbiste.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv /nix/store/n5qc2nncr0cg5jahfd4495m9rpvh4ci6-verbiste-0.1.48.drv building '/nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv'... trying https://perso.b2b2c.ca/~sarrazip/dev/verbiste-0.1.48.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL certificate problem: certificate has expired More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download verbiste-0.1.48.tar.gz from any mirror error: builder for '/nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv' failed with exit code 1; last 12 log lines: > > trying https://perso.b2b2c.ca/~sarrazip/dev/verbiste-0.1.48.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL certificate problem: certificate has expired > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download verbiste-0.1.48.tar.gz from any mirror For full logs, run 'nix log /nix/store/6v0kwykhfp7iz9m274jkn9y5iv0812ih-verbiste-0.1.48.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/n5qc2nncr0cg5jahfd4495m9rpvh4ci6-verbiste-0.1.48.drv' failed to build [result] Failed to update verbiste 0.1.47 -> 0.1.48 https://repology.org/project/verbiste/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.kissDE, using log file: /var/log/nixpkgs-update/rPackages.kissDE/2024-03-25.log rPackages.kissDE 1.20.0 -> 1.22.0 https://repology.org/project/r:kissde/versions attrpath: rPackages.kissDE Checking auto update branch... No auto update branch exists Old version 1.20.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.kissDE 1.20.0 -> 1.22.0 https://repology.org/project/r:kissde/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.Rfssa, using log file: /var/log/nixpkgs-update/rPackages.Rfssa/2024-03-25.log rPackages.Rfssa 3.0.2 -> 3.1.0 https://repology.org/project/r:rfssa/versions attrpath: rPackages.Rfssa Checking auto update branch... No auto update branch exists Old version 3.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.Rfssa 3.0.2 -> 3.1.0 https://repology.org/project/r:rfssa/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath emacsPackages.rnc-mode, using log file: /var/log/nixpkgs-update/emacsPackages.rnc-mode/2024-03-25.log emacsPackages.rnc-mode 0.3 -> 1.0.6 https://repology.org/project/emacs:rnc-mode/versions attrpath: emacsPackages.rnc-mode Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update emacsPackages.rnc-mode 0.3 -> 1.0.6 https://repology.org/project/emacs:rnc-mode/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bitscope.server, using log file: /var/log/nixpkgs-update/bitscope.server/2024-03-25.log bitscope.server 1.0.FK26A -> 1.1.FK26A https://repology.org/project/bitscope-server/versions attrpath: bitscope.server Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update bitscope.server 1.0.FK26A -> 1.1.FK26A https://repology.org/project/bitscope-server/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath viber, using log file: /var/log/nixpkgs-update/viber/2024-03-25.log viber 16.1.0.37 -> 22.3.0 https://repology.org/project/viber/versions attrpath: viber Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update viber 16.1.0.37 -> 22.3.0 https://repology.org/project/viber/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath taglib-sharp, using log file: /var/log/nixpkgs-update/taglib-sharp/2024-03-25.log taglib-sharp 2.1.0.0 -> 2.3.0.0 https://repology.org/project/taglib-sharp/versions attrpath: taglib-sharp Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv building '/nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv'... trying https://github.com/mono/taglib-sharp/archive/taglib-sharp-2.3.0.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/mono/taglib-sharp/archive/taglib-sharp-2.3.0.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'taglib-sharp.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv /nix/store/aqlf27wap92bs8c10d4cahbqr3irp299-taglib-sharp-2.3.0.0.drv building '/nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv'... trying https://github.com/mono/taglib-sharp/archive/taglib-sharp-2.3.0.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/mono/taglib-sharp/archive/taglib-sharp-2.3.0.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/6xgg9zlya6ad3r47jnad7ww7qxnpbn9h-source.drv'. error: 1 dependencies of derivation '/nix/store/aqlf27wap92bs8c10d4cahbqr3irp299-taglib-sharp-2.3.0.0.drv' failed to build [result] Failed to update taglib-sharp 2.1.0.0 -> 2.3.0.0 https://repology.org/project/taglib-sharp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gcs, using log file: /var/log/nixpkgs-update/gcs/2024-03-25.log gcs 0 -> 1 attrpath: gcs Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] skipping because derivation has updateScript [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/d1nh8bcllbcrlklzqm158h0pnh1jkwkj-packages.json.drv building '/nix/store/d1nh8bcllbcrlklzqm158h0pnh1jkwkj-packages.json.drv'... Going to be running update for following packages: - gcs-5.20.4 Press Enter key to continue... Running update for: - gcs-5.20.4: UPDATING ... - gcs-5.20.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update gcs 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.reprex, using log file: /var/log/nixpkgs-update/rPackages.reprex/2024-03-25.log rPackages.reprex 2.0.2 -> 2.1.0 https://repology.org/project/r:reprex/versions attrpath: rPackages.reprex Checking auto update branch... No auto update branch exists Old version 2.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.reprex 2.0.2 -> 2.1.0 https://repology.org/project/r:reprex/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ctl, using log file: /var/log/nixpkgs-update/rPackages.ctl/2024-03-25.log rPackages.ctl 1.0.0-9 -> 1.0.0-10 https://repology.org/project/r:ctl/versions attrpath: rPackages.ctl Checking auto update branch... No auto update branch exists Old version 1.0.0-9" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ctl 1.0.0-9 -> 1.0.0-10 https://repology.org/project/r:ctl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libbass_fx, using log file: /var/log/nixpkgs-update/libbass_fx/2024-03-25.log libbass_fx 2.4.12.1 -> 2.4.12.6 https://repology.org/project/libbass-fx/versions attrpath: libbass_fx Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update libbass_fx 2.4.12.1 -> 2.4.12.6 https://repology.org/project/libbass-fx/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.mirai, using log file: /var/log/nixpkgs-update/rPackages.mirai/2024-03-25.log rPackages.mirai 0.11.3 -> 0.12.1 https://repology.org/project/r:mirai/versions attrpath: rPackages.mirai Checking auto update branch... No auto update branch exists Old version 0.11.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.mirai 0.11.3 -> 0.12.1 https://repology.org/project/r:mirai/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libresprite, using log file: /var/log/nixpkgs-update/libresprite/2024-03-25.log libresprite 1.0 -> 1.1 https://repology.org/project/libresprite/versions attrpath: libresprite Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update libresprite 1.0 -> 1.1 https://repology.org/project/libresprite/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.BioM2, using log file: /var/log/nixpkgs-update/rPackages.BioM2/2024-03-25.log rPackages.BioM2 1.0.2 -> 1.0.5 https://repology.org/project/r:biom2/versions attrpath: rPackages.BioM2 Checking auto update branch... No auto update branch exists Old version 1.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.BioM2 1.0.2 -> 1.0.5 https://repology.org/project/r:biom2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kabeljau, using log file: /var/log/nixpkgs-update/kabeljau/2024-03-25.log kabeljau 1.2.0 -> 2.0.0 https://repology.org/project/kabeljau/versions attrpath: kabeljau Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/games/kabeljau/default.nix b/pkgs/games/kabeljau/default.nix index b518121b6390..ac5f69ca2e4d 100644 --- a/pkgs/games/kabeljau/default.nix +++ b/pkgs/games/kabeljau/default.nix @@ -2,14 +2,14 @@ stdenvNoCC.mkDerivation rec { pname = "kabeljau"; - version = "1.2.0"; + version = "2.0.0"; src = fetchFromGitea { domain = "codeberg.org"; owner = "annaaurora"; repo = "kabeljau"; rev = "v${version}"; - sha256 = "sha256-RedVItgfr6vgqXHA3bOiHXDpfGuHI+sX4jCHL9G5jYk="; + sha256 = "sha256-OGEGOkQBTZgRsQT5WJYJXesGDYCiGou39hkZX+x9tug="; }; # Inkscape is needed in a just recipe where it is used to export the SVG icon to several different sized PNGs. [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A kabeljau nix build failed. ** (inkscape:58): WARNING **: 11:38:12.772: Could not create extension error log file '/homeless-shelter/.config/inkscape/extension-errors.log' (inkscape:58): Gtk-CRITICAL **: 11:38:12.813: Unable to create user data directory '/homeless-shelter/.local/share' for storing the recently used files list: Permission denied ** (inkscape:58): WARNING **: 11:38:12.813: Failed to wrap object of type 'GtkRecentManager'. Hint: this error is commonly caused by failing to call a library init() function. + mkdir -p ./build/usr/share/icons/hicolor/128x128/apps + inkscape -o ./build/usr/share/icons/hicolor/128x128/apps/kabeljau.png -C -w 128 -h 128 '--export-png-color-mode=RGBA_8' icons/hicolor/32x32/kabeljau.svg ** (process:86): WARNING **: 11:38:12.895: Unable to create profile directory (Permission denied) (13) ** Message: 11:38:12.903: Cannot create profile directory /homeless-shelter/.config/inkscape. ** Message: 11:38:12.903: Inkscape will run with default settings, and new settings will not be saved. Fontconfig error: Cannot load default config file: No such file: (null) Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories ** (inkscape:86): WARNING **: 11:38:12.995: Could not create directory '/homeless-shelter/.config/inkscape' ** (inkscape:86): WARNING **: 11:38:12.995: Could not create extension error log file '/homeless-shelter/.config/inkscape/extension-errors.log' (inkscape:86): Gtk-CRITICAL **: 11:38:13.036: Unable to create user data directory '/homeless-shelter/.local/share' for storing the recently used files list: Permission denied ** (inkscape:86): WARNING **: 11:38:13.036: Failed to wrap object of type 'GtkRecentManager'. Hint: this error is commonly caused by failing to call a library init() function. + install -Dm755 ./build/usr/bin/kabeljau -t /usr/bin install: cannot create directory '/usr': Permission denied error: Recipe `install` failed with exit code 1 [result] Failed to update kabeljau 1.2.0 -> 2.0.0 https://repology.org/project/kabeljau/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.gmp, using log file: /var/log/nixpkgs-update/rPackages.gmp/2024-03-25.log rPackages.gmp 0.7-3 -> 0.7.4 https://repology.org/project/r:gmp/versions attrpath: rPackages.gmp Checking auto update branch... No auto update branch exists Old version 0.7-3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.gmp 0.7-3 -> 0.7.4 https://repology.org/project/r:gmp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.glmmrBase, using log file: /var/log/nixpkgs-update/rPackages.glmmrBase/2024-03-25.log rPackages.glmmrBase 0.5.3 -> 0.7.1 https://repology.org/project/r:glmmrbase/versions attrpath: rPackages.glmmrBase Checking auto update branch... No auto update branch exists Old version 0.5.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.glmmrBase 0.5.3 -> 0.7.1 https://repology.org/project/r:glmmrbase/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ucx, using log file: /var/log/nixpkgs-update/ucx/2024-03-25.log ucx 1.15.0 -> 21.00.0.18 https://repology.org/project/ucx/versions attrpath: ucx Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv waiting for lock on '/nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source'... building '/nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv'... trying https://github.com/openucx/ucx/archive/v21.00.0.18.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/openucx/ucx/archive/v21.00.0.18.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ucx.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv /nix/store/vk4sjfraw8vwfym4r8l1yq8w9aqwf8sa-ucx-21.00.0.18.drv building '/nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv'... trying https://github.com/openucx/ucx/archive/v21.00.0.18.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/openucx/ucx/archive/v21.00.0.18.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/q0xkmwl43mga0298q8jnfd0ia3r6k778-source.drv'. error: 1 dependencies of derivation '/nix/store/vk4sjfraw8vwfym4r8l1yq8w9aqwf8sa-ucx-21.00.0.18.drv' failed to build [result] Failed to update ucx 1.15.0 -> 21.00.0.18 https://repology.org/project/ucx/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.DevelNYTProf 6.12 -> 6.14 https://repology.org/project/perl:devel-nytprof/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.LCMSQA, using log file: /var/log/nixpkgs-update/rPackages.LCMSQA/2024-03-25.log rPackages.LCMSQA 1.0.1 -> 1.0.2 https://repology.org/project/r:lcmsqa/versions attrpath: rPackages.LCMSQA Checking auto update branch... No auto update branch exists Old version 1.0.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.LCMSQA 1.0.1 -> 1.0.2 https://repology.org/project/r:lcmsqa/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libcrossguid, using log file: /var/log/nixpkgs-update/libcrossguid/2024-03-25.log libcrossguid 2016-02-21 -> 0.2.3.20211002 https://repology.org/project/crossguid/versions attrpath: libcrossguid Checking auto update branch... No auto update branch exists 0.2.3.20211002 is not newer than 2016-02-21 according to Nix; versionComparison: -1 [result] Failed to update libcrossguid 2016-02-21 -> 0.2.3.20211002 https://repology.org/project/crossguid/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath liblangtag, using log file: /var/log/nixpkgs-update/liblangtag/2024-03-25.log liblangtag 0.6.3 -> 0.6.7 https://repology.org/project/liblangtag/versions attrpath: liblangtag Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update liblangtag 0.6.3 -> 0.6.7 https://repology.org/project/liblangtag/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.XMLGrove 0.46alpha -> 0.46.0.1 https://repology.org/project/perl:xml-grove/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.AnnotationDbi, using log file: /var/log/nixpkgs-update/rPackages.AnnotationDbi/2024-03-25.log rPackages.AnnotationDbi 1.64.1 -> 1.65.2 https://repology.org/project/r:annotationdbi/versions attrpath: rPackages.AnnotationDbi Checking auto update branch... No auto update branch exists Old version 1.64.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.AnnotationDbi 1.64.1 -> 1.65.2 https://repology.org/project/r:annotationdbi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.shinyWidgets, using log file: /var/log/nixpkgs-update/rPackages.shinyWidgets/2024-03-25.log rPackages.shinyWidgets 0.8.0 -> 0.8.3 https://repology.org/project/r:shinywidgets/versions attrpath: rPackages.shinyWidgets Checking auto update branch... No auto update branch exists Old version 0.8.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.shinyWidgets 0.8.0 -> 0.8.3 https://repology.org/project/r:shinywidgets/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath docbook2mdoc, using log file: /var/log/nixpkgs-update/docbook2mdoc/2024-03-25.log docbook2mdoc 0.0.9 -> 1.1.0 https://repology.org/project/docbook2mdoc/versions attrpath: docbook2mdoc Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/tools/misc/docbook2mdoc/default.nix b/pkgs/tools/misc/docbook2mdoc/default.nix index f64a73a338ba..429f1f11feab 100644 --- a/pkgs/tools/misc/docbook2mdoc/default.nix +++ b/pkgs/tools/misc/docbook2mdoc/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "docbook2mdoc"; - version = "0.0.9"; + version = "1.1.0"; src = fetchurl { url = "http://mdocml.bsd.lv/docbook2mdoc/snapshots/${pname}-${version}.tgz"; - sha256 = "07il80sg89xf6ym4bry6hxdacfzqgbwkxzyf7bjaihmw5jj0lclk"; + sha256 = "sha256-n8ZBHPBB/xDnbxmlChQgdajfnTQ/JI4g2PyYv45UfHE="; }; buildInputs = [ expat.dev ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A docbook2mdoc nix build failed. 561 | TAILQ_FOREACH_SAFE(nc, &n->childq, child, nn) { | ^~ | ; docbook2mdoc.c:590:54: error: expected ';' before '{' token 590 | TAILQ_FOREACH_SAFE(nc, &n->childq, child, nn) { | ^~ | ; docbook2mdoc.c: In function 'pnode_printvarlistentry': docbook2mdoc.c:760:44: error: 'child' undeclared (first use in this function) 760 | TAILQ_FOREACH_SAFE(nc, &n->childq, child, nn) { | ^~~~~ docbook2mdoc.c:760:54: error: expected ';' before '{' token 760 | TAILQ_FOREACH_SAFE(nc, &n->childq, child, nn) { | ^~ | ; docbook2mdoc.c:754:26: warning: variable 'comma' set but not used []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable]8;;] 754 | int comma; | ^~~~~ docbook2mdoc.c:753:36: warning: unused variable 'ncc' []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-variable-Wunused-variable]8;;] 753 | struct pnode *nc, *nn, *ncc; | ^~~ docbook2mdoc.c: In function 'pnode_printtitle': docbook2mdoc.c:796:44: error: 'child' undeclared (first use in this function) 796 | TAILQ_FOREACH_SAFE(nc, &n->childq, child, nn) { | ^~~~~ docbook2mdoc.c:796:54: error: expected ';' before '{' token 796 | TAILQ_FOREACH_SAFE(nc, &n->childq, child, nn) { | ^~ | ; make: *** [: docbook2mdoc.o] Error 1 [result] Failed to update docbook2mdoc 0.0.9 -> 1.1.0 https://repology.org/project/docbook2mdoc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath iperf2, using log file: /var/log/nixpkgs-update/iperf2/2024-03-25.log iperf2 2.1.4 -> 3.16 https://repology.org/project/iperf/versions attrpath: iperf2 Checking auto update branch... No auto update branch exists Version in attr path iperf2 not compatible with 3.16 [result] Failed to update iperf2 2.1.4 -> 3.16 https://repology.org/project/iperf/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pango, using log file: /var/log/nixpkgs-update/pango/2024-03-25.log pango 1.51.0 -> 1.52.1 https://repology.org/project/pango/versions attrpath: pango Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update pango 1.51.0 -> 1.52.1 https://repology.org/project/pango/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.crandep, using log file: /var/log/nixpkgs-update/rPackages.crandep/2024-03-25.log rPackages.crandep 0.3.4 -> 0.3.6 https://repology.org/project/r:crandep/versions attrpath: rPackages.crandep Checking auto update branch... No auto update branch exists Old version 0.3.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.crandep 0.3.4 -> 0.3.6 https://repology.org/project/r:crandep/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath redwax-tool, using log file: /var/log/nixpkgs-update/redwax-tool/2024-03-25.log redwax-tool 0.9.1 -> 0.9.4 https://repology.org/project/redwax-tool/versions attrpath: redwax-tool Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/tools/security/redwax-tool/default.nix b/pkgs/tools/security/redwax-tool/default.nix index 50a2d36699e7..b0e4472b776c 100644 --- a/pkgs/tools/security/redwax-tool/default.nix +++ b/pkgs/tools/security/redwax-tool/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { pname = "redwax-tool"; - version = "0.9.1"; + version = "0.9.4"; src = fetchsvn { url = "https://source.redwax.eu/svn/redwax/rt/redwax-tool/tags/redwax-tool-${version}/"; - sha256 = "sha256-MWSB1AkkRS18UUHGq8EWv3OIXPSVHpmrdD5Eq1VdbkA="; + sha256 = "sha256-Wv6xa/eNxY2LfD3oWsIbYxa/9X87LeAzPFUhOEo5+Is="; }; nativeBuildInputs = [ autoreconfHook pkg-config txt2man which ]; rev equal; no update necessary [result] Failed to update redwax-tool 0.9.1 -> 0.9.4 https://repology.org/project/redwax-tool/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.diffcor, using log file: /var/log/nixpkgs-update/rPackages.diffcor/2024-03-25.log rPackages.diffcor 0.8.1 -> 0.8.2 https://repology.org/project/r:diffcor/versions attrpath: rPackages.diffcor Checking auto update branch... No auto update branch exists Old version 0.8.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.diffcor 0.8.1 -> 0.8.2 https://repology.org/project/r:diffcor/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.DifferentialRegulation, using log file: /var/log/nixpkgs-update/rPackages.DifferentialRegulation/2024-03-25.log rPackages.DifferentialRegulation 2.0.2 -> 2.0.3 https://repology.org/project/r:differentialregulation/versions attrpath: rPackages.DifferentialRegulation Checking auto update branch... No auto update branch exists Old version 2.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.DifferentialRegulation 2.0.2 -> 2.0.3 https://repology.org/project/r:differentialregulation/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath diylc, using log file: /var/log/nixpkgs-update/diylc/2024-03-25.log diylc 4.18.0 -> 4.37.0 https://repology.org/project/diylc/versions attrpath: diylc Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update diylc 4.18.0 -> 4.37.0 https://repology.org/project/diylc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.DateTimeLocale 1.39 -> 1.40 https://repology.org/project/perl:datetime-locale/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath scite, using log file: /var/log/nixpkgs-update/scite/2024-03-25.log scite 5.2.2 -> 5.4.3 https://repology.org/project/scite/versions attrpath: scite Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/editors/scite/default.nix b/pkgs/applications/editors/scite/default.nix index 9c230a2984eb..642eeddb3747 100644 --- a/pkgs/applications/editors/scite/default.nix +++ b/pkgs/applications/editors/scite/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation { pname = "scite"; - version = "5.2.2"; + version = "5.4.3"; src = fetchurl { url = "https://www.scintilla.org/scite522.tgz"; - sha256 = "1q46clclx8r0b8zbq2zi89sygszgqf9ra5l83r2fs0ghvjgh2cxd"; + sha256 = "sha256-rTMBn9zwAe1EHogWlZPD7+vndULxC7w+WiCjThllhuA="; }; nativeBuildInputs = [ pkg-config ]; Source url did not change. [result] Failed to update scite 5.2.2 -> 5.4.3 https://repology.org/project/scite/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ipmiview, using log file: /var/log/nixpkgs-update/ipmiview/2024-03-25.log ipmiview 2.21.0 -> 2.21.1 https://repology.org/project/ipmiview/versions attrpath: ipmiview Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/misc/ipmiview/default.nix b/pkgs/applications/misc/ipmiview/default.nix index ff8db5339f65..0e8f76e0a231 100644 --- a/pkgs/applications/misc/ipmiview/default.nix +++ b/pkgs/applications/misc/ipmiview/default.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { pname = "IPMIView"; - version = "2.21.0"; + version = "2.21.1"; buildVersion = "221118"; src = fetchurl { url = "https://www.supermicro.com/wftp/utility/IPMIView/Linux/IPMIView_${version}_build.${buildVersion}_bundleJRE_Linux_x64.tar.gz"; - hash = "sha256-ZN0vadGbjGj9U2wPqvHLjS9fsk3DNCbXoNvzUfnn8IM="; + hash = "sha256-eFV8URCkdxuWFiNs6AMuz/mhU9yNS5/3PHEUZBh5q7Q="; }; nativeBuildInputs = [ patchelf makeWrapper ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A ipmiview Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . ipmiview Standard output: error: … in the condition of the assert statement at /var/cache/nixpkgs-update/worker/worktree/ipmiview/lib/customisation.nix:365:17: 364| in commonAttrs // { 365| drvPath = assert condition; drv.drvPath; | ^ 366| outPath = assert condition; drv.outPath; … while evaluating the attribute 'handled' at /var/cache/nixpkgs-update/worker/worktree/ipmiview/pkgs/stdenv/generic/check-meta.nix:490:7: 489| # or, alternatively, just output a warning message. 490| handled = | ^ 491| ( (stack trace truncated; use '--show-trace' to show the full trace) error: Package ‘IPMIView-2.21.1’ in /var/cache/nixpkgs-update/worker/worktree/ipmiview/pkgs/applications/misc/ipmiview/default.nix:16 has an unfree license (‘unfree’), refusing to evaluate. a) To temporarily allow unfree packages, you can use an environment variable for a single invocation of the nix tools. $ export NIXPKGS_ALLOW_UNFREE=1 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake, then pass `--impure` in order to allow use of environment variables. b) For `nixos-rebuild` you can set { nixpkgs.config.allowUnfree = true; } in configuration.nix to override this. Alternatively you can configure a predicate to allow specific packages: { nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "IPMIView-2.21.1" ]; } c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add { allowUnfree = true; } to ~/.config/nixpkgs/config.nix. [result] Failed to update ipmiview 2.21.0 -> 2.21.1 https://repology.org/project/ipmiview/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rnpn, using log file: /var/log/nixpkgs-update/rPackages.rnpn/2024-03-25.log rPackages.rnpn 1.2.6 -> 1.2.8.0 https://repology.org/project/r:rnpn/versions attrpath: rPackages.rnpn Checking auto update branch... No auto update branch exists Old version 1.2.6" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rnpn 1.2.6 -> 1.2.8.0 https://repology.org/project/r:rnpn/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.relevance, using log file: /var/log/nixpkgs-update/rPackages.relevance/2024-03-25.log rPackages.relevance 2.0 -> 2.1 https://repology.org/project/r:relevance/versions attrpath: rPackages.relevance Checking auto update branch... No auto update branch exists Old version 2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.relevance 2.0 -> 2.1 https://repology.org/project/r:relevance/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.quanteda_textplots, using log file: /var/log/nixpkgs-update/rPackages.quanteda_textplots/2024-03-25.log rPackages.quanteda_textplots 0.94.3 -> 0.94.4 https://repology.org/project/r:quanteda.textplots/versions attrpath: rPackages.quanteda_textplots Checking auto update branch... No auto update branch exists Old version 0.94.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.quanteda_textplots 0.94.3 -> 0.94.4 https://repology.org/project/r:quanteda.textplots/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO gstreamer plugins are kept in lockstep. [result] Failed to update gst_all_1.gst-plugins-good 1.22.9 -> 1.24.1 https://repology.org/project/gstreamer:good/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.HTMLUtils, using log file: /var/log/nixpkgs-update/rPackages.HTMLUtils/2024-03-25.log rPackages.HTMLUtils 0.1.8 -> 0.1.9 https://repology.org/project/r:htmlutils/versions attrpath: rPackages.HTMLUtils Checking auto update branch... No auto update branch exists Old version 0.1.8" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.HTMLUtils 0.1.8 -> 0.1.9 https://repology.org/project/r:htmlutils/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.EMMIXmfa, using log file: /var/log/nixpkgs-update/rPackages.EMMIXmfa/2024-03-25.log rPackages.EMMIXmfa 2.0.11 -> 2.0.14 https://repology.org/project/r:emmixmfa/versions attrpath: rPackages.EMMIXmfa Checking auto update branch... No auto update branch exists Old version 2.0.11" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.EMMIXmfa 2.0.11 -> 2.0.14 https://repology.org/project/r:emmixmfa/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.REddyProc, using log file: /var/log/nixpkgs-update/rPackages.REddyProc/2024-03-25.log rPackages.REddyProc 1.3.2 -> 1.3.3 https://repology.org/project/r:reddyproc/versions attrpath: rPackages.REddyProc Checking auto update branch... No auto update branch exists Old version 1.3.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.REddyProc 1.3.2 -> 1.3.3 https://repology.org/project/r:reddyproc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.Sleuth2, using log file: /var/log/nixpkgs-update/rPackages.Sleuth2/2024-03-25.log rPackages.Sleuth2 2.0-5 -> 2.0-7 https://repology.org/project/r:sleuth2/versions attrpath: rPackages.Sleuth2 Checking auto update branch... No auto update branch exists Old version 2.0-5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.Sleuth2 2.0-5 -> 2.0-7 https://repology.org/project/r:sleuth2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.iotarelr, using log file: /var/log/nixpkgs-update/rPackages.iotarelr/2024-03-25.log rPackages.iotarelr 0.1.4 -> 0.1.5 https://repology.org/project/r:iotarelr/versions attrpath: rPackages.iotarelr Checking auto update branch... No auto update branch exists Old version 0.1.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.iotarelr 0.1.4 -> 0.1.5 https://repology.org/project/r:iotarelr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.CSTools, using log file: /var/log/nixpkgs-update/rPackages.CSTools/2024-03-25.log rPackages.CSTools 5.1.1 -> 5.2.0 https://repology.org/project/r:cstools/versions attrpath: rPackages.CSTools Checking auto update branch... No auto update branch exists Old version 5.1.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.CSTools 5.1.1 -> 5.2.0 https://repology.org/project/r:cstools/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO gstreamer plugins are kept in lockstep. [result] Failed to update gst_all_1.gst-plugins-bad 1.22.9 -> 1.24.1 https://repology.org/project/gstreamer:bad/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.statGraph, using log file: /var/log/nixpkgs-update/rPackages.statGraph/2024-03-25.log rPackages.statGraph 0.5.0 -> 0.5.1 https://repology.org/project/r:statgraph/versions attrpath: rPackages.statGraph Checking auto update branch... No auto update branch exists Old version 0.5.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.statGraph 0.5.0 -> 0.5.1 https://repology.org/project/r:statgraph/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.gfilogisreg, using log file: /var/log/nixpkgs-update/rPackages.gfilogisreg/2024-03-25.log rPackages.gfilogisreg 1.0.2 -> 1.0.3 https://repology.org/project/r:gfilogisreg/versions attrpath: rPackages.gfilogisreg Checking auto update branch... No auto update branch exists Old version 1.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.gfilogisreg 1.0.2 -> 1.0.3 https://repology.org/project/r:gfilogisreg/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rts2, using log file: /var/log/nixpkgs-update/rPackages.rts2/2024-03-25.log rPackages.rts2 0.5 -> 0.7.2 https://repology.org/project/r:rts2/versions attrpath: rPackages.rts2 Checking auto update branch... No auto update branch exists Old version 0.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rts2 0.5 -> 0.7.2 https://repology.org/project/r:rts2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.TreatmentPatterns, using log file: /var/log/nixpkgs-update/rPackages.TreatmentPatterns/2024-03-25.log rPackages.TreatmentPatterns 2.6.2 -> 2.6.5 https://repology.org/project/r:treatmentpatterns/versions attrpath: rPackages.TreatmentPatterns Checking auto update branch... No auto update branch exists Old version 2.6.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.TreatmentPatterns 2.6.2 -> 2.6.5 https://repology.org/project/r:treatmentpatterns/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ClassifyR, using log file: /var/log/nixpkgs-update/rPackages.ClassifyR/2024-03-25.log rPackages.ClassifyR 3.6.2 -> 3.6.5 https://repology.org/project/r:classifyr/versions attrpath: rPackages.ClassifyR Checking auto update branch... No auto update branch exists Old version 3.6.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ClassifyR 3.6.2 -> 3.6.5 https://repology.org/project/r:classifyr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.africamonitor, using log file: /var/log/nixpkgs-update/rPackages.africamonitor/2024-03-25.log rPackages.africamonitor 0.2.3 -> 0.2.4 https://repology.org/project/r:africamonitor/versions attrpath: rPackages.africamonitor Checking auto update branch... No auto update branch exists Old version 0.2.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.africamonitor 0.2.3 -> 0.2.4 https://repology.org/project/r:africamonitor/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.python-mbedtls, using log file: /var/log/nixpkgs-update/python312Packages.python-mbedtls/2024-03-25.log python312Packages.python-mbedtls 2.8.0 -> 2.9.2 https://repology.org/project/python:python-mbedtls/versions attrpath: python312Packages.python-mbedtls Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/jqkd95jpc8icz5xajgml8biq6rbf9a0r-packages.json.drv building '/nix/store/jqkd95jpc8icz5xajgml8biq6rbf9a0r-packages.json.drv'... Going to be running update for following packages: - python3.12-python-mbedtls-2.8.0 Press Enter key to continue... Running update for: - python3.12-python-mbedtls-2.8.0: UPDATING ... - python3.12-python-mbedtls-2.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.python-mbedtls 2.8.0 -> 2.9.2 https://repology.org/project/python:python-mbedtls/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.URI 5.21 -> 5.27 https://repology.org/project/perl:uri/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.SPAS, using log file: /var/log/nixpkgs-update/rPackages.SPAS/2024-03-25.log rPackages.SPAS 2023.3.31 -> 2024.1.31 https://repology.org/project/r:spas/versions attrpath: rPackages.SPAS Checking auto update branch... No auto update branch exists Old version 2023.3.31" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.SPAS 2023.3.31 -> 2024.1.31 https://repology.org/project/r:spas/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO gstreamer plugins are kept in lockstep. [result] Failed to update gst_all_1.gst-vaapi 1.22.9 -> 1.24.1 https://repology.org/project/gstreamer:vaapi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.MOCHA, using log file: /var/log/nixpkgs-update/rPackages.MOCHA/2024-03-25.log rPackages.MOCHA 1.0.2 -> 1.1.0 https://repology.org/project/r:mocha/versions attrpath: rPackages.MOCHA Checking auto update branch... No auto update branch exists Old version 1.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.MOCHA 1.0.2 -> 1.1.0 https://repology.org/project/r:mocha/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.PRECAST, using log file: /var/log/nixpkgs-update/rPackages.PRECAST/2024-03-25.log rPackages.PRECAST 1.6.3 -> 1.6.5 https://repology.org/project/r:precast/versions attrpath: rPackages.PRECAST Checking auto update branch... No auto update branch exists Old version 1.6.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.PRECAST 1.6.3 -> 1.6.5 https://repology.org/project/r:precast/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.bizdays, using log file: /var/log/nixpkgs-update/rPackages.bizdays/2024-03-25.log rPackages.bizdays 1.0.13 -> 1.0.16 https://repology.org/project/r:bizdays/versions attrpath: rPackages.bizdays Checking auto update branch... No auto update branch exists Old version 1.0.13" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.bizdays 1.0.13 -> 1.0.16 https://repology.org/project/r:bizdays/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cosmocc, using log file: /var/log/nixpkgs-update/cosmocc/2024-03-25.log cosmocc 2.2 -> 3.3.2 https://repology.org/project/cosmocc/versions attrpath: cosmocc Checking auto update branch... No auto update branch exists Old version 2.2" not present in master derivation file with contents: { runCommand, cosmopolitan }: let cosmocc = runCommand "cosmocc-${cosmopolitan.version}" { pname = "cosmocc"; inherit (cosmopolitan) version; passthru.tests = { cc = runCommand "c-test" { } '' ${cosmocc}/bin/cosmocc ${./hello.c} ./a.out > $out ''; }; meta = cosmopolitan.meta // { description = "compilers for Cosmopolitan C/C++ programs"; }; } '' mkdir -p $out/bin install ${cosmopolitan.dist}/tool/scripts/{cosmocc,cosmoc++} $out/bin sed 's|/opt/cosmo\([ /]\)|${cosmopolitan.dist}\1|g' -i $out/bin/* ''; in cosmocc [result] Failed to update cosmocc 2.2 -> 3.3.2 https://repology.org/project/cosmocc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath safe, using log file: /var/log/nixpkgs-update/safe/2024-03-25.log safe 1.8.0 -> 2.1 https://repology.org/project/safe/versions attrpath: safe Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv building '/nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv'... trying https://github.com/starkandwayne/safe/archive/v2.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/starkandwayne/safe/archive/v2.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'safe.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv /nix/store/c30apgpwqiwh42zw9asj0kcq31a4vffq-safe-2.1-go-modules.drv /nix/store/qlrzkrkwd361w14hiw7gd4v3g74h2ffv-safe-2.1.drv building '/nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv'... trying https://github.com/starkandwayne/safe/archive/v2.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/starkandwayne/safe/archive/v2.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/wdkfbj5gzrdma29q6lgnb2m42nw6p9b5-source.drv'. error: 1 dependencies of derivation '/nix/store/qlrzkrkwd361w14hiw7gd4v3g74h2ffv-safe-2.1.drv' failed to build [result] Failed to update safe 1.8.0 -> 2.1 https://repology.org/project/safe/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.tibblify, using log file: /var/log/nixpkgs-update/rPackages.tibblify/2024-03-25.log rPackages.tibblify 0.3.0 -> 0.3.1 https://repology.org/project/r:tibblify/versions attrpath: rPackages.tibblify Checking auto update branch... No auto update branch exists Old version 0.3.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.tibblify 0.3.0 -> 0.3.1 https://repology.org/project/r:tibblify/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.llama-index-readers-file, using log file: /var/log/nixpkgs-update/python312Packages.llama-index-readers-file/2024-03-25.log python312Packages.llama-index-readers-file 0.1.7 -> 0.1.12 https://repology.org/project/python:llama-index-readers-file/versions attrpath: python312Packages.llama-index-readers-file Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/y56h08z44ar0swc2fsqk9q8kd5llh6cx-packages.json.drv building '/nix/store/y56h08z44ar0swc2fsqk9q8kd5llh6cx-packages.json.drv'... Going to be running update for following packages: - python3.12-llama-index-readers-file-0.1.7 Press Enter key to continue... Running update for: - python3.12-llama-index-readers-file-0.1.7: UPDATING ... - python3.12-llama-index-readers-file-0.1.7: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/llama-index-core/default.nix b/pkgs/development/python-modules/llama-index-core/default.nix index df6e3b92e289..45b92fdae27b 100644 --- a/pkgs/development/python-modules/llama-index-core/default.nix +++ b/pkgs/development/python-modules/llama-index-core/default.nix @@ -30,7 +30,7 @@ buildPythonPackage rec { pname = "llama-index-core"; - version = "0.10.20"; + version = "0.10.23"; pyproject = true; disabled = pythonOlder "3.8"; @@ -39,7 +39,7 @@ buildPythonPackage rec { owner = "run-llama"; repo = "llama_index"; rev = "refs/tags/v${version}"; - hash = "sha256-F7k5gtmhFdn369Ws5PSJ/xTid6ONstoWPotk+DmDtLw="; + hash = "sha256-koFdHpcMX4Qg+LLDcjHx4wYxHnrJaAqebpba0ejINzo="; }; sourceRoot = "${src.name}/${pname}"; Package version did not change. [result] Failed to update python312Packages.llama-index-readers-file 0.1.7 -> 0.1.12 https://repology.org/project/python:llama-index-readers-file/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.lpcde, using log file: /var/log/nixpkgs-update/rPackages.lpcde/2024-03-25.log rPackages.lpcde 0.1.1 -> 0.1.2 https://repology.org/project/r:lpcde/versions attrpath: rPackages.lpcde Checking auto update branch... No auto update branch exists Old version 0.1.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.lpcde 0.1.1 -> 0.1.2 https://repology.org/project/r:lpcde/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xorg.libX11, using log file: /var/log/nixpkgs-update/xorg.libX11/2024-03-25.log xorg.libX11 1.8.7 -> 1.8.8 https://repology.org/project/libx11/versions attrpath: xorg.libX11 Checking auto update branch... No auto update branch exists [outpaths] eval start [outpaths] eval end Derivation file says not to edit it [result] Failed to update xorg.libX11 1.8.7 -> 1.8.8 https://repology.org/project/libx11/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath home-assistant-custom-components.homematicip_local, using log file: /var/log/nixpkgs-update/home-assistant-custom-components.homematicip_local/2024-03-25.log home-assistant-custom-components.homematicip_local 0 -> 1 attrpath: home-assistant-custom-components.homematicip_local Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/v2p7l7bva16blq1sr4immyyqv3zqkfp3-packages.json.drv building '/nix/store/v2p7l7bva16blq1sr4immyyqv3zqkfp3-packages.json.drv'... Going to be running update for following packages: - python3.12-danielperna84-homematicip_local-1.58.0 Press Enter key to continue... Running update for: - python3.12-danielperna84-homematicip_local-1.58.0: UPDATING ... - python3.12-danielperna84-homematicip_local-1.58.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update home-assistant-custom-components.homematicip_local 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rnmamod, using log file: /var/log/nixpkgs-update/rPackages.rnmamod/2024-03-25.log rPackages.rnmamod 0.3.0 -> 0.4.0 https://repology.org/project/r:rnmamod/versions attrpath: rPackages.rnmamod Checking auto update branch... No auto update branch exists Old version 0.3.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rnmamod 0.3.0 -> 0.4.0 https://repology.org/project/r:rnmamod/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.teal_logger, using log file: /var/log/nixpkgs-update/rPackages.teal_logger/2024-03-25.log rPackages.teal_logger 0.1.3 -> 0.2.0 https://repology.org/project/r:teal.logger/versions attrpath: rPackages.teal_logger Checking auto update branch... No auto update branch exists Old version 0.1.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.teal_logger 0.1.3 -> 0.2.0 https://repology.org/project/r:teal.logger/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.HDShOP, using log file: /var/log/nixpkgs-update/rPackages.HDShOP/2024-03-25.log rPackages.HDShOP 0.1.3 -> 0.1.5 https://repology.org/project/r:hdshop/versions attrpath: rPackages.HDShOP Checking auto update branch... No auto update branch exists Old version 0.1.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.HDShOP 0.1.3 -> 0.1.5 https://repology.org/project/r:hdshop/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libiec61850, using log file: /var/log/nixpkgs-update/libiec61850/2024-03-25.log libiec61850 0 -> 1 attrpath: libiec61850 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/dym32vqfkdpcr4d69wklfvqrgwlabx7p-packages.json.drv building '/nix/store/dym32vqfkdpcr4d69wklfvqrgwlabx7p-packages.json.drv'... Going to be running update for following packages: - libiec61850-1.5.3 Press Enter key to continue... Running update for: - libiec61850-1.5.3: UPDATING ... - libiec61850-1.5.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update libiec61850 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cargo-expand, using log file: /var/log/nixpkgs-update/cargo-expand/2024-03-25.log cargo-expand 1.0.79 -> 1.0.80 https://repology.org/project/cargo-expand/versions attrpath: cargo-expand Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] Replacing cargoHash with sha256-c2h/ij2fWpJMoq8d60l2Ujw7Xnw8q39GmDlcPffpjMU= [rustCrateVersion] Finished updating Crate version and replacing hashes [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/tools/rust/cargo-expand/default.nix b/pkgs/development/tools/rust/cargo-expand/default.nix index 86c322f7116c..15c8706601f5 100644 --- a/pkgs/development/tools/rust/cargo-expand/default.nix +++ b/pkgs/development/tools/rust/cargo-expand/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-expand"; - version = "1.0.79"; + version = "1.0.80"; src = fetchFromGitHub { owner = "dtolnay"; repo = pname; rev = version; - sha256 = "sha256-P0pwQSKkQI/hIaCxU9a3BMdFaBtY4GtB38vqDOvdbaU="; + sha256 = "sha256-qK3ZpcY/kxOaRcmlD6AUkd4BVjX8ZcFz8NG60oHh5qo="; }; - cargoHash = "sha256-G0JNTZZMe4V1o/7KqhlubNczSemIPvrPeH5KQ1oNYWY="; + cargoHash = "sha256-c2h/ij2fWpJMoq8d60l2Ujw7Xnw8q39GmDlcPffpjMU="; meta = with lib; { description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code"; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/2in5k2rpwj3w5wj6fpzaq91kzmk7z634-cargo-expand-1.0.80" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • cargo-expand
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://repology.org/project/cargo-expand/versions. meta.description for cargo-expand is: A utility and Cargo subcommand designed to let people expand macros in their Rust source code meta.homepage for cargo-expand is: https://github.com/dtolnay/cargo-expand meta.changelog for cargo-expand is: https://github.com/dtolnay/cargo-expand/releases/tag/1.0.80 ###### Updates performed - Rust version update ###### To inspect upstream changes - [Release on GitHub](https://github.com/dtolnay/cargo-expand/releases/tag/1.0.80) - [Compare changes on GitHub](https://github.com/dtolnay/cargo-expand/compare/1.0.79...1.0.80) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.0.80 with grep in /nix/store/2in5k2rpwj3w5wj6fpzaq91kzmk7z634-cargo-expand-1.0.80 - found 1.0.80 in filename of file in /nix/store/2in5k2rpwj3w5wj6fpzaq91kzmk7z634-cargo-expand-1.0.80 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath cargo-expand ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/2in5k2rpwj3w5wj6fpzaq91kzmk7z634-cargo-expand-1.0.80 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A cargo-expand https://github.com/r-ryantm/nixpkgs/archive/2c64797d78b44e255abadfdf47eccadb4e8213bd.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/2c64797d78b44e255abadfdf47eccadb4e8213bd#cargo-expand ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/2in5k2rpwj3w5wj6fpzaq91kzmk7z634-cargo-expand-1.0.80 ls -la /nix/store/2in5k2rpwj3w5wj6fpzaq91kzmk7z634-cargo-expand-1.0.80/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • cargo-expand
--- ###### Maintainer pings cc @figsoda @xrelkd for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298907 [result] Success updating cargo-expand 1.0.79 -> 1.0.80 https://repology.org/project/cargo-expand/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rubyPackages.commonmarker, using log file: /var/log/nixpkgs-update/rubyPackages.commonmarker/2024-03-25.log rubyPackages.commonmarker 0.23.10 -> 1.0.4 https://repology.org/project/ruby:commonmarker/versions attrpath: rubyPackages.commonmarker Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update rubyPackages.commonmarker 0.23.10 -> 1.0.4 https://repology.org/project/ruby:commonmarker/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath disko, using log file: /var/log/nixpkgs-update/disko/2024-03-25.log disko 1.4.1 -> 1.5.0 https://github.com/nix-community/disko/releases attrpath: disko Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/by-name/di/disko/package.nix b/pkgs/by-name/di/disko/package.nix index 0d03005736a5..20048c763bdc 100644 --- a/pkgs/by-name/di/disko/package.nix +++ b/pkgs/by-name/di/disko/package.nix @@ -9,12 +9,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { name = "disko"; - version = "1.4.1"; + version = "1.5.0"; src = fetchFromGitHub { owner = "nix-community"; repo = "disko"; rev = "v${finalAttrs.version}"; - hash = "sha256-HeWFrRuHpnAiPmIr26OKl2g142HuGerwoO/XtW53pcI="; + hash = "sha256-5DUNQl9BSmLxgGLbF05G7hi/UTk9DyZq8AuEszhQA7Q="; }; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ bash ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/rdlxvq13zk3ry4dv4dac97xvzpyrrp6k-disko" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • disko
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/nix-community/disko/releases. meta.description for disko is: Declarative disk partitioning and formatting using nix meta.homepage for disko is: https://github.com/nix-community/disko ###### Updates performed - Version update ###### To inspect upstream changes - [Release on GitHub](https://github.com/nix-community/disko/releases/tag/v1.5.0) - [Compare changes on GitHub](https://github.com/nix-community/disko/compare/v1.4.1...v1.5.0) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath disko ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/rdlxvq13zk3ry4dv4dac97xvzpyrrp6k-disko \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A disko https://github.com/r-ryantm/nixpkgs/archive/0103838ba135427be63dd40a5c297f4b8fefb6e6.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/0103838ba135427be63dd40a5c297f4b8fefb6e6#disko ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/rdlxvq13zk3ry4dv4dac97xvzpyrrp6k-disko ls -la /nix/store/rdlxvq13zk3ry4dv4dac97xvzpyrrp6k-disko/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • disko
--- ###### Maintainer pings cc @Mic92 @Lassulus for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298914 [result] Success updating disko 1.4.1 -> 1.5.0 https://github.com/nix-community/disko/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath asymptote, using log file: /var/log/nixpkgs-update/asymptote/2024-03-25.log asymptote 2.88 -> 2.89 https://repology.org/project/asymptote/versions attrpath: asymptote Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update asymptote 2.88 -> 2.89 https://repology.org/project/asymptote/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gmsh, using log file: /var/log/nixpkgs-update/gmsh/2024-03-25.log gmsh 4.11.1 -> 4.13.0 https://repology.org/project/gmsh/versions attrpath: gmsh Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update gmsh 4.11.1 -> 4.13.0 https://repology.org/project/gmsh/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bintools-unwrapped, using log file: /var/log/nixpkgs-update/bintools-unwrapped/2024-03-25.log bintools-unwrapped 2.41 -> 2.42 https://repology.org/project/binutils/versions attrpath: bintools-unwrapped Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update bintools-unwrapped 2.41 -> 2.42 https://repology.org/project/binutils/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath usbredir, using log file: /var/log/nixpkgs-update/usbredir/2024-03-25.log usbredir 0.13.0 -> 0.14.0 https://repology.org/project/usbredir/versions attrpath: usbredir Checking auto update branch... An auto update branch exists with message `usbredir: 0.13.0 -> 0.14.0`. New version is 0.14.0. An auto update branch exists with an equal or greater version [result] Failed to update usbredir 0.13.0 -> 0.14.0 https://repology.org/project/usbredir/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.MSoutcomes, using log file: /var/log/nixpkgs-update/rPackages.MSoutcomes/2024-03-25.log rPackages.MSoutcomes 0.1.0 -> 0.2.0 https://repology.org/project/r:msoutcomes/versions attrpath: rPackages.MSoutcomes Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.MSoutcomes 0.1.0 -> 0.2.0 https://repology.org/project/r:msoutcomes/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.lfe, using log file: /var/log/nixpkgs-update/rPackages.lfe/2024-03-25.log rPackages.lfe 2.9-0 -> 3.0-0 https://repology.org/project/r:lfe/versions attrpath: rPackages.lfe Checking auto update branch... No auto update branch exists Old version 2.9-0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.lfe 2.9-0 -> 3.0-0 https://repology.org/project/r:lfe/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.r2dii_plot, using log file: /var/log/nixpkgs-update/rPackages.r2dii_plot/2024-03-25.log rPackages.r2dii_plot 0.3.1 -> 0.4.0 https://repology.org/project/r:r2dii.plot/versions attrpath: rPackages.r2dii_plot Checking auto update branch... No auto update branch exists Old version 0.3.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.r2dii_plot 0.3.1 -> 0.4.0 https://repology.org/project/r:r2dii.plot/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.OptGS, using log file: /var/log/nixpkgs-update/rPackages.OptGS/2024-03-25.log rPackages.OptGS 1.1.1 -> 1.2 https://repology.org/project/r:optgs/versions attrpath: rPackages.OptGS Checking auto update branch... No auto update branch exists Old version 1.1.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.OptGS 1.1.1 -> 1.2 https://repology.org/project/r:optgs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.Directional, using log file: /var/log/nixpkgs-update/rPackages.Directional/2024-03-25.log rPackages.Directional 6.4 -> 6.5 https://repology.org/project/r:directional/versions attrpath: rPackages.Directional Checking auto update branch... No auto update branch exists Old version 6.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.Directional 6.4 -> 6.5 https://repology.org/project/r:directional/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.hdflex, using log file: /var/log/nixpkgs-update/rPackages.hdflex/2024-03-25.log rPackages.hdflex 0.2.0 -> 0.2.1 https://repology.org/project/r:hdflex/versions attrpath: rPackages.hdflex Checking auto update branch... No auto update branch exists Old version 0.2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.hdflex 0.2.0 -> 0.2.1 https://repology.org/project/r:hdflex/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.zdeskR, using log file: /var/log/nixpkgs-update/rPackages.zdeskR/2024-03-25.log rPackages.zdeskR 0.3.0 -> 0.4.0 https://repology.org/project/r:zdeskr/versions attrpath: rPackages.zdeskR Checking auto update branch... No auto update branch exists Old version 0.3.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.zdeskR 0.3.0 -> 0.4.0 https://repology.org/project/r:zdeskr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.intendo, using log file: /var/log/nixpkgs-update/rPackages.intendo/2024-03-25.log rPackages.intendo 0.1 -> 0.1.1 https://repology.org/project/r:intendo/versions attrpath: rPackages.intendo Checking auto update branch... No auto update branch exists Old version 0.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.intendo 0.1 -> 0.1.1 https://repology.org/project/r:intendo/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.PUMP, using log file: /var/log/nixpkgs-update/rPackages.PUMP/2024-03-25.log rPackages.PUMP 1.0.2 -> 1.0.3 https://repology.org/project/r:pump/versions attrpath: rPackages.PUMP Checking auto update branch... No auto update branch exists Old version 1.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.PUMP 1.0.2 -> 1.0.3 https://repology.org/project/r:pump/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua51Packages.dkjson, using log file: /var/log/nixpkgs-update/lua51Packages.dkjson/2024-03-25.log lua51Packages.dkjson 2.6-1 -> 2.7 https://repology.org/project/lua:dkjson/versions attrpath: lua51Packages.dkjson Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua51Packages.dkjson 2.6-1 -> 2.7 https://repology.org/project/lua:dkjson/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.AmigaFFH, using log file: /var/log/nixpkgs-update/rPackages.AmigaFFH/2024-03-25.log rPackages.AmigaFFH 0.4.3 -> 0.4.5 https://repology.org/project/r:amigaffh/versions attrpath: rPackages.AmigaFFH Checking auto update branch... No auto update branch exists Old version 0.4.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.AmigaFFH 0.4.3 -> 0.4.5 https://repology.org/project/r:amigaffh/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.moderate_mediation, using log file: /var/log/nixpkgs-update/rPackages.moderate_mediation/2024-03-25.log rPackages.moderate_mediation 0.0.7 -> 0.0.8 https://repology.org/project/r:moderate.mediation/versions attrpath: rPackages.moderate_mediation Checking auto update branch... No auto update branch exists Old version 0.0.7" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.moderate_mediation 0.0.7 -> 0.0.8 https://repology.org/project/r:moderate.mediation/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.spatstat_random, using log file: /var/log/nixpkgs-update/rPackages.spatstat_random/2024-03-25.log rPackages.spatstat_random 3.2-2 -> 3.2.3 https://repology.org/project/r:spatstat.random/versions attrpath: rPackages.spatstat_random Checking auto update branch... No auto update branch exists Old version 3.2-2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.spatstat_random 3.2-2 -> 3.2.3 https://repology.org/project/r:spatstat.random/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.Compositional, using log file: /var/log/nixpkgs-update/rPackages.Compositional/2024-03-25.log rPackages.Compositional 6.6 -> 6.7 https://repology.org/project/r:compositional/versions attrpath: rPackages.Compositional Checking auto update branch... No auto update branch exists Old version 6.6" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.Compositional 6.6 -> 6.7 https://repology.org/project/r:compositional/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath shipwright, using log file: /var/log/nixpkgs-update/shipwright/2024-03-25.log shipwright 8.0.4 -> 8.0.5 https://github.com/harbourmasters/shipwright/releases attrpath: shipwright Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - shipwright: 8.0.4 -> 8.0.5 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/292708" [result] Failed to update shipwright 8.0.4 -> 8.0.5 https://github.com/harbourmasters/shipwright/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ruff, using log file: /var/log/nixpkgs-update/ruff/2024-03-25.log ruff 0.3.2 -> 0.3.4 https://repology.org/project/ruff-python-linter/versions attrpath: ruff Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - ruff: 0.3.2 -> 0.3.4 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/296256" [result] Failed to update ruff 0.3.2 -> 0.3.4 https://repology.org/project/ruff-python-linter/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath phpunit, using log file: /var/log/nixpkgs-update/phpunit/2024-03-25.log phpunit 11.0.4 -> 11.0.8 https://repology.org/project/php:phpunit/versions attrpath: phpunit Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update phpunit 11.0.4 -> 11.0.8 https://repology.org/project/php:phpunit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath expat, using log file: /var/log/nixpkgs-update/expat/2024-03-25.log expat 2.6.0 -> 2.6.2 https://repology.org/project/expat/versions attrpath: expat Checking auto update branch... No auto update branch exists Old version 2.6.0" not present in staging derivation file with contents: { lib , stdenv , fetchurl # for passthru.tests , python3 , perlPackages , haskellPackages , luaPackages , ocamlPackages , testers }: # Note: this package is used for bootstrapping fetchurl, and thus # cannot use fetchpatch! All mutable patches (generated by GitHub or # cgit) that are needed here should be included directly in Nixpkgs as # files. let version = "2.6.2"; tag = "R_${lib.replaceStrings ["."] ["_"] version}"; in stdenv.mkDerivation (finalAttrs: { pname = "expat"; inherit version; src = fetchurl { url = with finalAttrs; "https://github.com/libexpat/libexpat/releases/download/${tag}/${pname}-${version}.tar.xz"; hash = "sha256-7hS0xdiQixvsN62TdgfqsYPU2YBqCK3uRyw8MSHSc2Q="; }; strictDeps = true; outputs = [ "out" "dev" ]; # TODO: fix referrers outputBin = "dev"; enableParallelBuilding = true; configureFlags = lib.optional stdenv.isFreeBSD "--with-pic"; outputMan = "dev"; # tiny page for a dev tool doCheck = true; # not cross; preCheck = '' patchShebangs ./run.sh ./test-driver-wrapper.sh ''; # CMake files incorrectly calculate library path from dev prefix # https://github.com/libexpat/libexpat/issues/501 postFixup = '' substituteInPlace $dev/lib/cmake/expat-${finalAttrs.version}/expat-noconfig.cmake \ --replace "$"'{_IMPORT_PREFIX}' $out ''; passthru.tests = { inherit python3; inherit (python3.pkgs) xmltodict; inherit (haskellPackages) hexpat; inherit (perlPackages) XMLSAXExpat XMLParser; inherit (luaPackages) luaexpat; inherit (ocamlPackages) ocaml_expat; pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; }; }; meta = with lib; { changelog = "https://github.com/libexpat/libexpat/blob/${tag}/expat/Changes"; homepage = "https://libexpat.github.io/"; description = "A stream-oriented XML parser library written in C"; mainProgram = "xmlwf"; platforms = platforms.all; license = licenses.mit; # expat version pkgConfigModules = [ "expat" ]; }; }) [result] Failed to update expat 2.6.0 -> 2.6.2 https://repology.org/project/expat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath clockify, using log file: /var/log/nixpkgs-update/clockify/2024-03-25.log clockify 2.1.6 -> 2.10.4 https://repology.org/project/clockify/versions attrpath: clockify Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update clockify 2.1.6 -> 2.10.4 https://repology.org/project/clockify/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kega-fusion, using log file: /var/log/nixpkgs-update/kega-fusion/2024-03-25.log kega-fusion 3.63x -> 363x https://repology.org/project/kega-fusion/versions attrpath: kega-fusion Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update kega-fusion 3.63x -> 363x https://repology.org/project/kega-fusion/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.gMCPLite, using log file: /var/log/nixpkgs-update/rPackages.gMCPLite/2024-03-25.log rPackages.gMCPLite 0.1.4 -> 0.1.5 https://repology.org/project/r:gmcplite/versions attrpath: rPackages.gMCPLite Checking auto update branch... No auto update branch exists Old version 0.1.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.gMCPLite 0.1.4 -> 0.1.5 https://repology.org/project/r:gmcplite/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath elasticsearch, using log file: /var/log/nixpkgs-update/elasticsearch/2024-03-25.log elasticsearch 7.17.16 -> 8.12.2 https://repology.org/project/elasticsearch/versions attrpath: elasticsearch Checking auto update branch... No auto update branch exists Old version 7.17.16" not present in master derivation file with contents: { elk7Version , lib , stdenv , fetchurl , makeWrapper , jre_headless , util-linux , gnugrep , coreutils , autoPatchelfHook , zlib }: with lib; let info = splitString "-" stdenv.hostPlatform.system; arch = elemAt info 0; plat = elemAt info 1; hashes = { x86_64-linux = "sha512-OiWGRxaCdRxXuxE/W04v87ytzOeUEcHRjF5nyRkdqSbZSnLXUyKOYQ4fKmk4til0VBOaKZYId20XyPiu/XTXNw=="; x86_64-darwin = "sha512-V/vKYL96+M1lp7ZJlvuneRBePWZmucUANfUrFPMuq+fnUP4nN69RStLWcgwgt65EspFMBwKVyQbak4swV8rWxw=="; aarch64-linux = "sha512-fNgVRaIIGx01reNHOnGKhMOG1aYU7gC8HLpIESSbM3+9xO1q9IHIaL/ObI/w2RYj/lD22d7PAdX5N6Hd1pVSAA=="; aarch64-darwin = "sha512-DgexeyoxZ1YTPw9HjSUAM6eC8XtzIw7MY1WUVsIa8zl5j3RpCp25s3oI12BWefjYYCTjdtFDMsnoFSqZBabLig=="; }; in stdenv.mkDerivation rec { pname = "elasticsearch"; version = elk7Version; src = fetchurl { url = "https://artifacts.elastic.co/downloads/elasticsearch/${pname}-${version}-${plat}-${arch}.tar.gz"; hash = hashes.${stdenv.hostPlatform.system} or (throw "Unknown architecture"); }; patches = [ ./es-home-6.x.patch ]; postPatch = '' substituteInPlace bin/elasticsearch-env --replace \ "ES_CLASSPATH=\"\$ES_HOME/lib/*\"" \ "ES_CLASSPATH=\"$out/lib/*\"" substituteInPlace bin/elasticsearch-cli --replace \ "ES_CLASSPATH=\"\$ES_CLASSPATH:\$ES_HOME/\$additional_classpath_directory/*\"" \ "ES_CLASSPATH=\"\$ES_CLASSPATH:$out/\$additional_classpath_directory/*\"" ''; nativeBuildInputs = [ makeWrapper ] ++ lib.optional (!stdenv.hostPlatform.isDarwin) autoPatchelfHook; buildInputs = [ jre_headless util-linux zlib ]; runtimeDependencies = [ zlib ]; installPhase = '' mkdir -p $out cp -R bin config lib modules plugins $out chmod +x $out/bin/* substituteInPlace $out/bin/elasticsearch \ --replace 'bin/elasticsearch-keystore' "$out/bin/elasticsearch-keystore" wrapProgram $out/bin/elasticsearch \ --prefix PATH : "${makeBinPath [ util-linux coreutils gnugrep ]}" \ --set JAVA_HOME "${jre_headless}" wrapProgram $out/bin/elasticsearch-plugin --set JAVA_HOME "${jre_headless}" ''; passthru = { enableUnfree = true; }; meta = { description = "Open Source, Distributed, RESTful Search Engine"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; license = licenses.elastic20; platforms = platforms.unix; maintainers = with maintainers; [ apeschar basvandijk ]; }; } [result] Failed to update elasticsearch 7.17.16 -> 8.12.2 https://repology.org/project/elasticsearch/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ocamlPackages.mmap, using log file: /var/log/nixpkgs-update/ocamlPackages.mmap/2024-03-25.log ocamlPackages.mmap 1.1.0 -> 1.2.0 https://repology.org/project/ocaml:mmap/versions attrpath: ocamlPackages.mmap Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv building '/nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv'... trying https://github.com/mirage/mmap/releases/download/v1.2.0/mmap-v1.2.0.tbz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download mmap-v1.2.0.tbz from any mirror error: builder for '/nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv' failed with exit code 1; last 7 log lines: > > trying https://github.com/mirage/mmap/releases/download/v1.2.0/mmap-v1.2.0.tbz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download mmap-v1.2.0.tbz from any mirror For full logs, run 'nix log /nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ocamlPackages.mmap.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv /nix/store/m4vwjqpvj0p06ax9kj1j83hnif9h9srq-ocaml5.1.1-mmap-1.2.0.drv building '/nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv'... trying https://github.com/mirage/mmap/releases/download/v1.2.0/mmap-v1.2.0.tbz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download mmap-v1.2.0.tbz from any mirror error: builder for '/nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv' failed with exit code 1; last 7 log lines: > > trying https://github.com/mirage/mmap/releases/download/v1.2.0/mmap-v1.2.0.tbz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download mmap-v1.2.0.tbz from any mirror For full logs, run 'nix log /nix/store/mv306jdspjwfavwgjc3snl8wngpmr6v9-mmap-v1.2.0.tbz.drv'. error: 1 dependencies of derivation '/nix/store/m4vwjqpvj0p06ax9kj1j83hnif9h9srq-ocaml5.1.1-mmap-1.2.0.drv' failed to build [result] Failed to update ocamlPackages.mmap 1.1.0 -> 1.2.0 https://repology.org/project/ocaml:mmap/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath dfu-programmer, using log file: /var/log/nixpkgs-update/dfu-programmer/2024-03-25.log dfu-programmer 0.7.2 -> 1.1.0 https://repology.org/project/dfu-programmer/versions attrpath: dfu-programmer Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv building '/nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv'... trying https://downloads.sourceforge.net/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 827 0 --:--:-- --:--:-- --:--:-- 831 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 324 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download dfu-programmer-1.1.0.tar.gz from any mirror error: builder for '/nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 324 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download dfu-programmer-1.1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'dfu-programmer.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv /nix/store/2jlla52afv8lcrgjxl4kfspkvlma3m9y-dfu-programmer-1.1.0.drv building '/nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv'... trying https://downloads.sourceforge.net/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1309 0 --:--:-- --:--:-- --:--:-- 1314 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 247 0 --:--:-- --:--:-- --:--:-- 247 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 324 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download dfu-programmer-1.1.0.tar.gz from any mirror error: builder for '/nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 247 0 --:--:-- --:--:-- --:--:-- 247 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 324 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-1.1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download dfu-programmer-1.1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/ca8d0pvi5l2gzp6gckqj7raa71ykandc-dfu-programmer-1.1.0.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/2jlla52afv8lcrgjxl4kfspkvlma3m9y-dfu-programmer-1.1.0.drv' failed to build [result] Failed to update dfu-programmer 0.7.2 -> 1.1.0 https://repology.org/project/dfu-programmer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.chronochrt, using log file: /var/log/nixpkgs-update/rPackages.chronochrt/2024-03-25.log rPackages.chronochrt 0.1.2 -> 0.1.3 https://repology.org/project/r:chronochrt/versions attrpath: rPackages.chronochrt Checking auto update branch... No auto update branch exists Old version 0.1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.chronochrt 0.1.2 -> 0.1.3 https://repology.org/project/r:chronochrt/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.maptiles, using log file: /var/log/nixpkgs-update/rPackages.maptiles/2024-03-25.log rPackages.maptiles 0.6.1 -> 0.7.0 https://repology.org/project/r:maptiles/versions attrpath: rPackages.maptiles Checking auto update branch... No auto update branch exists Old version 0.6.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.maptiles 0.6.1 -> 0.7.0 https://repology.org/project/r:maptiles/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnomeExtensions.utc-clock, using log file: /var/log/nixpkgs-update/gnomeExtensions.utc-clock/2024-03-25.log gnomeExtensions.utc-clock 12 -> 45.4 https://repology.org/project/gnome:utc-clock/versions attrpath: gnomeExtensions.utc-clock Checking auto update branch... No auto update branch exists Old version 12" not present in master derivation file with contents: { pkgs, lib, stdenv, fetchzip, nixosTests }: let buildGnomeExtension = { # Every gnome extension has a UUID. It's the name of the extension folder once unpacked # and can always be found in the metadata.json of every extension. uuid, name, pname, description, # extensions.gnome.org extension URL link, # Extension version numbers are integers version, sha256, # Hex-encoded string of JSON bytes metadata, }: stdenv.mkDerivation { pname = "gnome-shell-extension-${pname}"; version = builtins.toString version; src = fetchzip { url = "https://extensions.gnome.org/extension-data/${ builtins.replaceStrings [ "@" ] [ "" ] uuid }.v${builtins.toString version}.shell-extension.zip"; inherit sha256; stripRoot = false; # The download URL may change content over time. This is because the # metadata.json is automatically generated, and parts of it can be changed # without making a new release. We simply substitute the possibly changed fields # with their content from when we last updated, and thus get a deterministic output # hash. postFetch = '' echo "${metadata}" | base64 --decode > $out/metadata.json ''; }; nativeBuildInputs = with pkgs; [ buildPackages.glib ]; buildPhase = '' runHook preBuild if [ -d schemas ]; then glib-compile-schemas --strict schemas fi runHook postBuild ''; installPhase = '' runHook preInstall mkdir -p $out/share/gnome-shell/extensions/ cp -r -T . $out/share/gnome-shell/extensions/${uuid} runHook postInstall ''; meta = { description = builtins.head (lib.splitString "\n" description); longDescription = description; homepage = link; license = lib.licenses.gpl2Plus; # https://wiki.gnome.org/Projects/GnomeShell/Extensions/Review#Licensing maintainers = with lib.maintainers; [ piegames ]; }; passthru = { extensionPortalSlug = pname; # Store the extension's UUID, because we might need it at some places extensionUuid = uuid; tests = { gnome-extensions = nixosTests.gnome-extensions; }; }; }; in lib.makeOverridable buildGnomeExtension [result] Failed to update gnomeExtensions.utc-clock 12 -> 45.4 https://repology.org/project/gnome:utc-clock/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath higan, using log file: /var/log/nixpkgs-update/higan/2024-03-25.log higan 0 -> 1 attrpath: higan Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/nmpaqmwqdxk556nia8rvdz6rc81p979f-packages.json.drv building '/nix/store/nmpaqmwqdxk556nia8rvdz6rc81p979f-packages.json.drv'... Going to be running update for following packages: - higan-115-unstable-2024-02-17 Press Enter key to continue... Running update for: - higan-115-unstable-2024-02-17: UPDATING ... - higan-115-unstable-2024-02-17: ERROR --- SHOWING ERROR LOG FOR higan-115-unstable-2024-02-17 ---------------------- + url= + branch= + use_stable_version= + tag_prefix= + shallow_clone= + (( 2 > 0 )) + flag=--url= + shift 1 + case "$flag" in + url= + (( 1 > 0 )) + flag=--shallow-clone + shift 1 + case "$flag" in + shallow_clone=1 + (( 0 > 0 )) + [[ -z '' ]] ++ /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-instantiate --eval -E 'with import ./. {}; higan.src.gitRepoUrl' ++ tr -d '"' + url=https://github.com/higan-emu/higan.git ++ /nix/store/43dnc4h7x0p8ybaq38aaxkhy722kzrx2-coreutils-9.4/bin/mktemp -d + tmpdir=/run/nixpkgs-update-worker/tmp.R4b7BWJBLw + cloneArgs=(--bare) + [[ 1 == \1 ]] + cloneArgs+=(--depth=1) + [[ -n '' ]] + /nix/store/bd0dcc9qzpfz5xfz7fm6cwf7q64cyfhi-git-2.44.0/bin/git clone --bare --depth=1 https://github.com/higan-emu/higan.git /run/nixpkgs-update-worker/tmp.R4b7BWJBLw Cloning into bare repository '/run/nixpkgs-update-worker/tmp.R4b7BWJBLw'... + pushd /run/nixpkgs-update-worker/tmp.R4b7BWJBLw ++ /nix/store/bd0dcc9qzpfz5xfz7fm6cwf7q64cyfhi-git-2.44.0/bin/git show -s --pretty=format:%cs + commit_date=2024-02-17 ++ /nix/store/bd0dcc9qzpfz5xfz7fm6cwf7q64cyfhi-git-2.44.0/bin/git show -s --pretty=format:%H + commit_sha=ba4b918c0bbcc302e0d5d2ed70f2c56214d62681 + [[ -z '' ]] + new_version=unstable-2024-02-17 + popd + /nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/update-source-version higan unstable-2024-02-17 --rev=ba4b918c0bbcc302e0d5d2ed70f2c56214d62681 update-source-version: error: Failed to replace source revision 'ba4b918c0bbcc302e0d5d2ed70f2c56214d62681' to 'ba4b918c0bbcc302e0d5d2ed70f2c56214d62681' in 'higan'! --- SHOWING ERROR LOG FOR higan-115-unstable-2024-02-17 ---------------------- The update script for higan-115-unstable-2024-02-17 failed with exit code 1 [result] Failed to update higan 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath google-chrome, using log file: /var/log/nixpkgs-update/google-chrome/2024-03-25.log google-chrome 123.0.6312.58 -> 125.0.6368.2 https://repology.org/project/google-chrome/versions attrpath: google-chrome Checking auto update branch... No auto update branch exists Old version 123.0.6312.58" not present in master derivation file with contents: { lib, stdenv, patchelf, makeWrapper # Linked dynamic libraries. , glib, fontconfig, freetype, pango, cairo, libX11, libXi, atk, nss, nspr , libXcursor, libXext, libXfixes, libXrender, libXScrnSaver, libXcomposite, libxcb , alsa-lib, libXdamage, libXtst, libXrandr, libxshmfence, expat, cups , dbus, gtk3, gtk4, gdk-pixbuf, gcc-unwrapped, at-spi2-atk, at-spi2-core , libkrb5, libdrm, libglvnd, mesa , libxkbcommon, pipewire, wayland # ozone/wayland # Command line programs , coreutils # command line arguments which are always set e.g "--disable-gpu" , commandLineArgs ? "" # Will crash without. , systemd # Loaded at runtime. , libexif, pciutils # Additional dependencies according to other distros. ## Ubuntu , liberation_ttf, curl, util-linux, xdg-utils, wget ## Arch Linux. , flac, harfbuzz, icu, libpng, libopus, snappy, speechd ## Gentoo , bzip2, libcap # Which distribution channel to use. , channel ? "stable" # Necessary for USB audio devices. , pulseSupport ? true, libpulseaudio # Only needed for getting information about upstream binaries , chromium , gsettings-desktop-schemas , gnome # For video acceleration via VA-API (--enable-features=VaapiVideoDecoder) , libvaSupport ? true, libva # For Vulkan support (--enable-features=Vulkan) , addOpenGLRunpath }: let opusWithCustomModes = libopus.override { withCustomModes = true; }; version = chromium.upstream-info.version; deps = [ glib fontconfig freetype pango cairo libX11 libXi atk nss nspr libXcursor libXext libXfixes libXrender libXScrnSaver libXcomposite libxcb alsa-lib libXdamage libXtst libXrandr libxshmfence expat cups dbus gdk-pixbuf gcc-unwrapped.lib systemd libexif pciutils liberation_ttf curl util-linux wget flac harfbuzz icu libpng opusWithCustomModes snappy speechd bzip2 libcap at-spi2-atk at-spi2-core libkrb5 libdrm libglvnd mesa coreutils libxkbcommon pipewire wayland ] ++ lib.optional pulseSupport libpulseaudio ++ lib.optional libvaSupport libva ++ [ gtk3 gtk4 ]; suffix = lib.optionalString (channel != "stable") "-${channel}"; crashpadHandlerBinary = if lib.versionAtLeast version "94" then "chrome_crashpad_handler" else "crashpad_handler"; in stdenv.mkDerivation { inherit version; name = "google-chrome${suffix}-${version}"; src = chromium.chromeSrc; nativeBuildInputs = [ patchelf makeWrapper ]; buildInputs = [ # needed for GSETTINGS_SCHEMAS_PATH gsettings-desktop-schemas glib gtk3 # needed for XDG_ICON_DIRS gnome.adwaita-icon-theme ]; unpackPhase = '' ar x $src tar xf data.tar.xz ''; rpath = lib.makeLibraryPath deps + ":" + lib.makeSearchPathOutput "lib" "lib64" deps; binpath = lib.makeBinPath deps; installPhase = '' runHook preInstall case ${channel} in beta) appname=chrome-beta dist=beta ;; dev) appname=chrome-unstable dist=unstable ;; *) appname=chrome dist=stable ;; esac exe=$out/bin/google-chrome-$dist mkdir -p $out/bin $out/share cp -a opt/* $out/share cp -a usr/share/* $out/share substituteInPlace $out/share/google/$appname/google-$appname \ --replace 'CHROME_WRAPPER' 'WRAPPER' substituteInPlace $out/share/applications/google-$appname.desktop \ --replace /usr/bin/google-chrome-$dist $exe substituteInPlace $out/share/gnome-control-center/default-apps/google-$appname.xml \ --replace /opt/google/$appname/google-$appname $exe substituteInPlace $out/share/menu/google-$appname.menu \ --replace /opt $out/share \ --replace $out/share/google/$appname/google-$appname $exe for icon_file in $out/share/google/chrome*/product_logo_[0-9]*.png; do num_and_suffix="''${icon_file##*logo_}" if [ $dist = "stable" ]; then icon_size="''${num_and_suffix%.*}" else icon_size="''${num_and_suffix%_*}" fi logo_output_prefix="$out/share/icons/hicolor" logo_output_path="$logo_output_prefix/''${icon_size}x''${icon_size}/apps" mkdir -p "$logo_output_path" mv "$icon_file" "$logo_output_path/google-$appname.png" done makeWrapper "$out/share/google/$appname/google-$appname" "$exe" \ --prefix LD_LIBRARY_PATH : "$rpath" \ --prefix PATH : "$binpath" \ --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \ --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:${addOpenGLRunpath.driverLink}/share" \ --set CHROME_WRAPPER "google-chrome-$dist" \ --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \ --add-flags ${lib.escapeShellArg commandLineArgs} for elf in $out/share/google/$appname/{chrome,chrome-sandbox,${crashpadHandlerBinary}}; do patchelf --set-rpath $rpath $elf patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $elf done runHook postInstall ''; meta = with lib; { description = "A freeware web browser developed by Google"; homepage = "https://www.google.com/chrome/browser/"; license = licenses.unfree; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; maintainers = with maintainers; [ primeos ]; # Note from primeos: By updating Chromium I also update Google Chrome and # will try to merge PRs and respond to issues but I'm not actually using # Google Chrome. platforms = [ "x86_64-linux" ]; mainProgram = if (channel == "dev") then "google-chrome-unstable" else "google-chrome-${channel}"; }; } [result] Failed to update google-chrome 123.0.6312.58 -> 125.0.6368.2 https://repology.org/project/google-chrome/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath eclipses.eclipse-cpp, using log file: /var/log/nixpkgs-update/eclipses.eclipse-cpp/2024-03-25.log eclipses.eclipse-cpp 4.30 -> 2023.09 https://repology.org/project/eclipse-cpp/versions attrpath: eclipses.eclipse-cpp Checking auto update branch... No auto update branch exists Old version 4.30" not present in master derivation file with contents: { lib, stdenv, makeDesktopItem, freetype, fontconfig, libX11, libXrender , zlib, jdk, glib, glib-networking, gtk, libXtst, libsecret, gsettings-desktop-schemas, webkitgtk , makeWrapper, perl, ... }: { name, src ? builtins.getAttr stdenv.hostPlatform.system sources, sources ? null, description, productVersion }: stdenv.mkDerivation rec { inherit name src; desktopItem = makeDesktopItem { name = "Eclipse"; exec = "eclipse"; icon = "eclipse"; comment = "Integrated Development Environment"; desktopName = "Eclipse IDE"; genericName = "Integrated Development Environment"; categories = [ "Development" ]; }; nativeBuildInputs = [ makeWrapper perl ]; buildInputs = [ fontconfig freetype glib gsettings-desktop-schemas gtk jdk libX11 libXrender libXtst libsecret zlib ] ++ lib.optional (webkitgtk != null) webkitgtk; buildCommand = '' # Unpack tarball. mkdir -p $out tar xfvz $src -C $out # Patch binaries. interpreter="$(cat $NIX_BINTOOLS/nix-support/dynamic-linker)" libCairo=$out/eclipse/libcairo-swt.so patchelf --set-interpreter $interpreter $out/eclipse/eclipse [ -f $libCairo ] && patchelf --set-rpath ${lib.makeLibraryPath [ freetype fontconfig libX11 libXrender zlib ]} $libCairo # Create wrapper script. Pass -configuration to store # settings in ~/.eclipse/org.eclipse.platform_ rather # than ~/.eclipse/org.eclipse.platform__. productId=$(sed 's/id=//; t; d' $out/eclipse/.eclipseproduct) makeWrapper $out/eclipse/eclipse $out/bin/eclipse \ --prefix PATH : ${jdk}/bin \ --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath ([ glib gtk libXtst libsecret ] ++ lib.optional (webkitgtk != null) webkitgtk)} \ --prefix GIO_EXTRA_MODULES : "${glib-networking}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \ --add-flags "-configuration \$HOME/.eclipse/''${productId}_${productVersion}/configuration" # Create desktop item. mkdir -p $out/share/applications cp ${desktopItem}/share/applications/* $out/share/applications mkdir -p $out/share/pixmaps ln -s $out/eclipse/icon.xpm $out/share/pixmaps/eclipse.xpm # ensure eclipse.ini does not try to use a justj jvm, as those aren't compatible with nix perl -i -p0e 's|-vm\nplugins/org.eclipse.justj.*/jre/bin.*\n||' $out/eclipse/eclipse.ini ''; # */ meta = { homepage = "https://www.eclipse.org/"; inherit description; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" "aarch64-linux" ]; }; } [result] Failed to update eclipses.eclipse-cpp 4.30 -> 2023.09 https://repology.org/project/eclipse-cpp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath k6, using log file: /var/log/nixpkgs-update/k6/2024-03-25.log k6 0.49.0 -> 0.50.0 https://github.com/grafana/k6/releases attrpath: k6 Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = null [golangModuleVersion] Set vendorHash to null [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/tools/k6/default.nix b/pkgs/development/tools/k6/default.nix index 407a7c79760e..3d1dfbd2d0b9 100644 --- a/pkgs/development/tools/k6/default.nix +++ b/pkgs/development/tools/k6/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "k6"; - version = "0.49.0"; + version = "0.50.0"; src = fetchFromGitHub { owner = "grafana"; repo = pname; rev = "v${version}"; - hash = "sha256-zlsHEAGsey+qe0s7sle9Kt/V0hTp6uzelJmRlATznUY="; + hash = "sha256-lR16M8TAP0ilvcrA9YjVoZMrsi+kwEFKx5Fd3birHHM="; }; subPackages = [ "./" ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/fm9ic2zqfibcr6lx2bgry5iinxbb1bkw-k6-0.50.0" Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • k6
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/grafana/k6/releases. meta.description for k6 is: A modern load testing tool, using Go and JavaScript meta.homepage for k6 is: https://k6.io/ meta.changelog for k6 is: https://github.com/grafana/k6/releases/tag/v0.50.0 ###### Updates performed - Golang update ###### To inspect upstream changes - [Compare changes on GitHub](https://github.com/grafana/k6/compare/v0.49.0...v0.50.0) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.50.0 with grep in /nix/store/fm9ic2zqfibcr6lx2bgry5iinxbb1bkw-k6-0.50.0 - found 0.50.0 in filename of file in /nix/store/fm9ic2zqfibcr6lx2bgry5iinxbb1bkw-k6-0.50.0 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath k6 ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/fm9ic2zqfibcr6lx2bgry5iinxbb1bkw-k6-0.50.0 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A k6 https://github.com/r-ryantm/nixpkgs/archive/8eae1c08e2e63ed8dd902ce44211d3ff003f11d0.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/8eae1c08e2e63ed8dd902ce44211d3ff003f11d0#k6 ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/fm9ic2zqfibcr6lx2bgry5iinxbb1bkw-k6-0.50.0 ls -la /nix/store/fm9ic2zqfibcr6lx2bgry5iinxbb1bkw-k6-0.50.0/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • k6
--- ###### Maintainer pings cc @offlinehacker @bryanasdev000 @kashw2 for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298934 [result] Success updating k6 0.49.0 -> 0.50.0 https://github.com/grafana/k6/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.findpython, using log file: /var/log/nixpkgs-update/python312Packages.findpython/2024-03-25.log python312Packages.findpython 0.4.1 -> 0.5.1 https://github.com/frostming/findpython/releases attrpath: python312Packages.findpython Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ysnz5sk57qyihbcm3nhmcl2qn05kwkga-packages.json.drv building '/nix/store/ysnz5sk57qyihbcm3nhmcl2qn05kwkga-packages.json.drv'... Going to be running update for following packages: - python3.12-findpython-0.4.1 Press Enter key to continue... Running update for: - python3.12-findpython-0.4.1: UPDATING ... - python3.12-findpython-0.4.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/findpython/default.nix b/pkgs/development/python-modules/findpython/default.nix index a405ab3d6ec0..78875b6db2c8 100644 --- a/pkgs/development/python-modules/findpython/default.nix +++ b/pkgs/development/python-modules/findpython/default.nix @@ -15,7 +15,7 @@ let pname = "findpython"; - version = "0.4.1"; + version = "0.5.1"; in buildPythonPackage { inherit pname version; @@ -25,7 +25,7 @@ buildPythonPackage { src = fetchPypi { inherit pname version; - hash = "sha256-19AUVYaBs3YdV6WyNCpxOovzAvbB/J2Z+Budi9FoGwQ="; + hash = "sha256-UGSjA5PFLvyMajV5DDdbiwAF1vdPFykDW0tCZHNH4T0="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/wpxdzr8i600kny188gk17wrxmghzhijw-python3.12-findpython-0.5.1" Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
6 packages built:
  • pdm
  • pdm.dist
  • python311Packages.findpython
  • python311Packages.findpython.dist
  • python312Packages.findpython
  • python312Packages.findpython.dist
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for python312Packages.findpython is: A utility to find python versions on your system meta.homepage for python312Packages.findpython is: https://github.com/frostming/findpython meta.changelog for python312Packages.findpython is: https://github.com/frostming/findpython/releases/tag/0.5.1 ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.5.1 with grep in /nix/store/wpxdzr8i600kny188gk17wrxmghzhijw-python3.12-findpython-0.5.1 - found 0.5.1 in filename of file in /nix/store/wpxdzr8i600kny188gk17wrxmghzhijw-python3.12-findpython-0.5.1 ---
Rebuild report (if merged into master) (click to expand) ``` 3 total rebuild path(s) 3 package rebuild(s) First fifty rebuilds by attrpath pdm python311Packages.findpython python312Packages.findpython ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/wpxdzr8i600kny188gk17wrxmghzhijw-python3.12-findpython-0.5.1 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A python312Packages.findpython https://github.com/r-ryantm/nixpkgs/archive/32ac9ecdb264a19ec474cf27cbb5e116286fbf58.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/32ac9ecdb264a19ec474cf27cbb5e116286fbf58#python312Packages.findpython ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/wpxdzr8i600kny188gk17wrxmghzhijw-python3.12-findpython-0.5.1 ls -la /nix/store/wpxdzr8i600kny188gk17wrxmghzhijw-python3.12-findpython-0.5.1/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
6 packages built:
  • pdm
  • pdm.dist
  • python311Packages.findpython
  • python311Packages.findpython.dist
  • python312Packages.findpython
  • python312Packages.findpython.dist
--- ###### Maintainer pings cc @mweinelt for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298942 [result] Success updating python312Packages.findpython 0.4.1 -> 0.5.1 https://github.com/frostming/findpython/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.distrMod, using log file: /var/log/nixpkgs-update/rPackages.distrMod/2024-03-25.log rPackages.distrMod 2.9.0 -> 2.9.1 https://repology.org/project/r:distrmod/versions attrpath: rPackages.distrMod Checking auto update branch... No auto update branch exists Old version 2.9.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.distrMod 2.9.0 -> 2.9.1 https://repology.org/project/r:distrmod/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.blogdown, using log file: /var/log/nixpkgs-update/rPackages.blogdown/2024-03-25.log rPackages.blogdown 1.18 -> 1.19 https://repology.org/project/r:blogdown/versions attrpath: rPackages.blogdown Checking auto update branch... No auto update branch exists Old version 1.18" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.blogdown 1.18 -> 1.19 https://repology.org/project/r:blogdown/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.distrDoc, using log file: /var/log/nixpkgs-update/rPackages.distrDoc/2024-03-25.log rPackages.distrDoc 2.8.1 -> 2.8.2 https://repology.org/project/r:distrdoc/versions attrpath: rPackages.distrDoc Checking auto update branch... No auto update branch exists Old version 2.8.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.distrDoc 2.8.1 -> 2.8.2 https://repology.org/project/r:distrdoc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.neat, using log file: /var/log/nixpkgs-update/rPackages.neat/2024-03-25.log rPackages.neat 1.2.3 -> 1.2.4 https://repology.org/project/r:neat/versions attrpath: rPackages.neat Checking auto update branch... No auto update branch exists Old version 1.2.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.neat 1.2.3 -> 1.2.4 https://repology.org/project/r:neat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.PNDSIBGE, using log file: /var/log/nixpkgs-update/rPackages.PNDSIBGE/2024-03-25.log rPackages.PNDSIBGE 0.1.0 -> 0.1.1 https://repology.org/project/r:pndsibge/versions attrpath: rPackages.PNDSIBGE Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.PNDSIBGE 0.1.0 -> 0.1.1 https://repology.org/project/r:pndsibge/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.support_BWS3, using log file: /var/log/nixpkgs-update/rPackages.support_BWS3/2024-03-25.log rPackages.support_BWS3 0.2-0 -> 0.2-1 https://repology.org/project/r:support.bws3/versions attrpath: rPackages.support_BWS3 Checking auto update branch... No auto update branch exists Old version 0.2-0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.support_BWS3 0.2-0 -> 0.2-1 https://repology.org/project/r:support.bws3/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.mlr3misc, using log file: /var/log/nixpkgs-update/rPackages.mlr3misc/2024-03-25.log rPackages.mlr3misc 0.13.0 -> 0.14.0 https://repology.org/project/r:mlr3misc/versions attrpath: rPackages.mlr3misc Checking auto update branch... No auto update branch exists Old version 0.13.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.mlr3misc 0.13.0 -> 0.14.0 https://repology.org/project/r:mlr3misc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.mlVAR, using log file: /var/log/nixpkgs-update/rPackages.mlVAR/2024-03-25.log rPackages.mlVAR 0.5.1 -> 0.5.2 https://repology.org/project/r:mlvar/versions attrpath: rPackages.mlVAR Checking auto update branch... No auto update branch exists Old version 0.5.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.mlVAR 0.5.1 -> 0.5.2 https://repology.org/project/r:mlvar/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.springer, using log file: /var/log/nixpkgs-update/rPackages.springer/2024-03-25.log rPackages.springer 0.1.8 -> 0.1.9 https://repology.org/project/r:springer/versions attrpath: rPackages.springer Checking auto update branch... No auto update branch exists Old version 0.1.8" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.springer 0.1.8 -> 0.1.9 https://repology.org/project/r:springer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.kedd, using log file: /var/log/nixpkgs-update/rPackages.kedd/2024-03-25.log rPackages.kedd 1.0.3 -> 1.0.4 https://repology.org/project/r:kedd/versions attrpath: rPackages.kedd Checking auto update branch... No auto update branch exists Old version 1.0.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.kedd 1.0.3 -> 1.0.4 https://repology.org/project/r:kedd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libmediainfo, using log file: /var/log/nixpkgs-update/libmediainfo/2024-03-25.log libmediainfo 24.01 -> 24.01.1 https://repology.org/project/libmediainfo/versions attrpath: libmediainfo Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv building '/nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv'... trying https://mediaarea.net/download/source/libmediainfo/24.01.1/libmediainfo_24.01.1.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download libmediainfo_24.01.1.tar.xz from any mirror error: builder for '/nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv' failed with exit code 1; last 7 log lines: > > trying https://mediaarea.net/download/source/libmediainfo/24.01.1/libmediainfo_24.01.1.tar.xz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download libmediainfo_24.01.1.tar.xz from any mirror For full logs, run 'nix log /nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'libmediainfo.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv /nix/store/wdi8xv2xzz33lf7xd3wf1bnn3p7jl6n4-libmediainfo-24.01.1.drv building '/nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv'... trying https://mediaarea.net/download/source/libmediainfo/24.01.1/libmediainfo_24.01.1.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download libmediainfo_24.01.1.tar.xz from any mirror error: builder for '/nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv' failed with exit code 1; last 7 log lines: > > trying https://mediaarea.net/download/source/libmediainfo/24.01.1/libmediainfo_24.01.1.tar.xz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download libmediainfo_24.01.1.tar.xz from any mirror For full logs, run 'nix log /nix/store/yblvqs4b34hbmx45a7pf3nl8w5d8090i-libmediainfo_24.01.1.tar.xz.drv'. error: 1 dependencies of derivation '/nix/store/wdi8xv2xzz33lf7xd3wf1bnn3p7jl6n4-libmediainfo-24.01.1.drv' failed to build [result] Failed to update libmediainfo 24.01 -> 24.01.1 https://repology.org/project/libmediainfo/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.reclin2, using log file: /var/log/nixpkgs-update/rPackages.reclin2/2024-03-25.log rPackages.reclin2 0.3.4 -> 0.5.0 https://repology.org/project/r:reclin2/versions attrpath: rPackages.reclin2 Checking auto update branch... No auto update branch exists Old version 0.3.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.reclin2 0.3.4 -> 0.5.0 https://repology.org/project/r:reclin2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.PWEXP, using log file: /var/log/nixpkgs-update/rPackages.PWEXP/2024-03-25.log rPackages.PWEXP 0.4.3 -> 0.5.0 https://repology.org/project/r:pwexp/versions attrpath: rPackages.PWEXP Checking auto update branch... No auto update branch exists Old version 0.4.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.PWEXP 0.4.3 -> 0.5.0 https://repology.org/project/r:pwexp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.lidR, using log file: /var/log/nixpkgs-update/rPackages.lidR/2024-03-25.log rPackages.lidR 4.0.4 -> 4.1.1 https://repology.org/project/r:lidr/versions attrpath: rPackages.lidR Checking auto update branch... No auto update branch exists Old version 4.0.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.lidR 4.0.4 -> 4.1.1 https://repology.org/project/r:lidr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.PNSIBGE, using log file: /var/log/nixpkgs-update/rPackages.PNSIBGE/2024-03-25.log rPackages.PNSIBGE 0.2.0 -> 0.2.1 https://repology.org/project/r:pnsibge/versions attrpath: rPackages.PNSIBGE Checking auto update branch... No auto update branch exists Old version 0.2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.PNSIBGE 0.2.0 -> 0.2.1 https://repology.org/project/r:pnsibge/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rgraph6, using log file: /var/log/nixpkgs-update/rPackages.rgraph6/2024-03-25.log rPackages.rgraph6 2.0-3 -> 2.0-4 https://repology.org/project/r:rgraph6/versions attrpath: rPackages.rgraph6 Checking auto update branch... No auto update branch exists Old version 2.0-3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rgraph6 2.0-3 -> 2.0-4 https://repology.org/project/r:rgraph6/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.inTextSummaryTable, using log file: /var/log/nixpkgs-update/rPackages.inTextSummaryTable/2024-03-25.log rPackages.inTextSummaryTable 3.3.1 -> 3.3.2 https://repology.org/project/r:intextsummarytable/versions attrpath: rPackages.inTextSummaryTable Checking auto update branch... No auto update branch exists Old version 3.3.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.inTextSummaryTable 3.3.1 -> 3.3.2 https://repology.org/project/r:intextsummarytable/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.skytemple-ssb-emulator, using log file: /var/log/nixpkgs-update/python312Packages.skytemple-ssb-emulator/2024-03-25.log python312Packages.skytemple-ssb-emulator 1.6.1.post1 -> 1.6.4 https://repology.org/project/python:skytemple-ssb-emulator/versions attrpath: python312Packages.skytemple-ssb-emulator Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/r4hbz43rif05bf228yvl70gg178k8p26-packages.json.drv building '/nix/store/r4hbz43rif05bf228yvl70gg178k8p26-packages.json.drv'... Going to be running update for following packages: - python3.12-skytemple-ssb-emulator-1.6.1.post1 Press Enter key to continue... Running update for: - python3.12-skytemple-ssb-emulator-1.6.1.post1: UPDATING ... - python3.12-skytemple-ssb-emulator-1.6.1.post1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.skytemple-ssb-emulator 1.6.1.post1 -> 1.6.4 https://repology.org/project/python:skytemple-ssb-emulator/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.SpreadsheetXLSX 0.17 -> 0.18 https://repology.org/project/perl:spreadsheet-xlsx/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath noip, using log file: /var/log/nixpkgs-update/noip/2024-03-25.log noip 2.1.9-1 -> 3.0.0 https://repology.org/project/noip/versions attrpath: noip Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/tools/networking/noip/default.nix b/pkgs/tools/networking/noip/default.nix index 85614001342f..e963e46e1551 100644 --- a/pkgs/tools/networking/noip/default.nix +++ b/pkgs/tools/networking/noip/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation { pname = "noip"; - version = "2.1.9-1"; + version = "3.0.0"; src = fetchurl { url = "https://www.noip.com/client/linux/noip-duc-linux.tar.gz"; - sha256 = "82b9bafab96a0c53b21aaef688bf70b3572e26217b5e2072bdb09da3c4a6f593"; + sha256 = "sha256-grm6+rlqDFOyGq72iL9ws1cuJiF7XiByvbCdo8Sm9ZM="; }; makeFlags = [ "PREFIX=\${out}" ]; Source url did not change. [result] Failed to update noip 2.1.9-1 -> 3.0.0 https://repology.org/project/noip/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath clightd, using log file: /var/log/nixpkgs-update/clightd/2024-03-25.log clightd 5.8 -> 5.9 https://repology.org/project/clightd/versions attrpath: clightd Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/misc/clight/clightd.nix b/pkgs/applications/misc/clight/clightd.nix index b6958d86bbd0..c34fe397ed8a 100644 --- a/pkgs/applications/misc/clight/clightd.nix +++ b/pkgs/applications/misc/clight/clightd.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "clightd"; - version = "5.8"; + version = "5.9"; src = fetchFromGitHub { owner = "FedeDP"; repo = "Clightd"; rev = version; - hash = "sha256-Lmno/TJVCQVNzfpKNZzuDf2OM6w6rbz+zJTr3zVo/CM="; + hash = "sha256-LOhBBd7QL5kH4TzMFgrh70C37WsFdsiKArP+tIEiPWo="; }; # dbus-1.pc has datadir=/etc [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A clightd nix build failed. unpacking source archive /nix/store/431433haj456dcr50nnm5x4y8w1yl3qa-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase fixing cmake files... cmake flags: -DCMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY=OFF -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DCMAKE_INSTALL_LOCALEDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/share/locale -DCMAKE_INSTALL_LIBEXECDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/libexec -DCMAKE_INSTALL_LIBDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/lib -DCMAKE_INSTALL_DOCDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/share/doc/clightd -DCMAKE_INSTALL_INFODIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/share/info -DCMAKE_INSTALL_MANDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/share/man -DCMAKE_INSTALL_OLDINCLUDEDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/include -DCMAKE_INSTALL_INCLUDEDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/include -DCMAKE_INSTALL_SBINDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/sbin -DCMAKE_INSTALL_BINDIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/bin -DCMAKE_INSTALL_NAME_DIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/lib -DCMAKE_POLICY_DEFAULT_CMP0025=NEW -DCMAKE_OSX_SYSROOT= -DCMAKE_FIND_FRAMEWORK=LAST -DCMAKE_STRIP=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/strip -DCMAKE_RANLIB=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/ranlib -DCMAKE_AR=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/ar -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE_INSTALL_PREFIX=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9 -DSYSTEMD_SERVICE_DIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/lib/systemd/system -DDBUS_CONFIG_DIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/etc/dbus-1/system.d -DMODULE_LOAD_DIR=/nix/store/gimy8alvvzbljhdad7724vv8jizzz73h-clightd-5.9/lib/modules-load.d -DENABLE_DDC=1 -DENABLE_DPMS=1 -DENABLE_GAMMA=1 -DENABLE_SCREEN=1 -DENABLE_YOCTOLIGHT=1 -- The C compiler identification is GNU 13.2.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/gcc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Found PkgConfig: /nix/store/zwkj99kd2dzccjvnclys91cvs5cg9cib-pkg-config-wrapper-0.29.2/bin/pkg-config (found version "0.29.2") -- Checking for modules 'libudev;libmodule>=5.0.0;libjpeg;libiio' -- No package 'libiio' found CMake Error at /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FindPkgConfig.cmake:619 (message): The following required packages were not found: - libiio Call Stack (most recent call first): /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FindPkgConfig.cmake:841 (_pkg_check_modules_internal) CMakeLists.txt:34 (pkg_check_modules)  -- Configuring incomplete, errors occurred! [result] Failed to update clightd 5.8 -> 5.9 https://repology.org/project/clightd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.mpath, using log file: /var/log/nixpkgs-update/rPackages.mpath/2024-03-25.log rPackages.mpath 0.4-2.23 -> 0.4-2.25 https://repology.org/project/r:mpath/versions attrpath: rPackages.mpath Checking auto update branch... No auto update branch exists Old version 0.4-2.23" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.mpath 0.4-2.23 -> 0.4-2.25 https://repology.org/project/r:mpath/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.patientProfilesVis, using log file: /var/log/nixpkgs-update/rPackages.patientProfilesVis/2024-03-25.log rPackages.patientProfilesVis 2.0.6 -> 2.0.7 https://repology.org/project/r:patientprofilesvis/versions attrpath: rPackages.patientProfilesVis Checking auto update branch... No auto update branch exists Old version 2.0.6" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.patientProfilesVis 2.0.6 -> 2.0.7 https://repology.org/project/r:patientprofilesvis/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.shinybusy, using log file: /var/log/nixpkgs-update/rPackages.shinybusy/2024-03-25.log rPackages.shinybusy 0.3.2 -> 0.3.3 https://repology.org/project/r:shinybusy/versions attrpath: rPackages.shinybusy Checking auto update branch... No auto update branch exists Old version 0.3.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.shinybusy 0.3.2 -> 0.3.3 https://repology.org/project/r:shinybusy/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath intel-graphics-compiler, using log file: /var/log/nixpkgs-update/intel-graphics-compiler/2024-03-25.log intel-graphics-compiler 1.0.15985.7 -> 1.0.15985.15 https://repology.org/project/intel-graphics-compiler/versions attrpath: intel-graphics-compiler Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update intel-graphics-compiler 1.0.15985.7 -> 1.0.15985.15 https://repology.org/project/intel-graphics-compiler/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath intel-compute-runtime, using log file: /var/log/nixpkgs-update/intel-compute-runtime/2024-03-25.log intel-compute-runtime 24.05.28454.6 -> 24.05.28454.17 https://repology.org/project/intel-compute-runtime/versions attrpath: intel-compute-runtime Checking auto update branch... An auto update branch exists with message `intel-compute-runtime: 24.05.28454.6 -> 24.05.28454.17`. New version is 24.05.28454.17. An auto update branch exists with an equal or greater version [result] Failed to update intel-compute-runtime 24.05.28454.6 -> 24.05.28454.17 https://repology.org/project/intel-compute-runtime/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath phpactor, using log file: /var/log/nixpkgs-update/phpactor/2024-03-25.log phpactor 2023.12.03.0 -> 2024.03.09.0 https://repology.org/project/phpactor/versions attrpath: phpactor Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update phpactor 2023.12.03.0 -> 2024.03.09.0 https://repology.org/project/phpactor/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath civo, using log file: /var/log/nixpkgs-update/civo/2024-03-25.log civo 1.0.76 -> 1.0.77 https://github.com/civo/cli/releases attrpath: civo Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = "sha256-22n+ks1D65Gk2acCMHxgj19VHDf4B23ivqHfo3J45j0=" [golangModuleVersion] Replaced vendorHash with sha256-Uh2/4qdJQfqQdjXbOBkUVv2nF1AN+QRKRI0+yta+G5Q= [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/networking/cluster/civo/default.nix b/pkgs/applications/networking/cluster/civo/default.nix index d2f913a765ed..cacdf46f74c3 100644 --- a/pkgs/applications/networking/cluster/civo/default.nix +++ b/pkgs/applications/networking/cluster/civo/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "civo"; - version = "1.0.76"; + version = "1.0.77"; src = fetchFromGitHub { owner = "civo"; repo = "cli"; rev = "v${version}"; - sha256 = "sha256-Bk0YfW9KDliaJIqpVxCXTy7EiGGJPZTXcn6SFEmywRE="; + sha256 = "sha256-W9CJAFLGarDG/Y8g2Whoh4v9hxqb8txuLfAkooW8PNM="; }; - vendorHash = "sha256-22n+ks1D65Gk2acCMHxgj19VHDf4B23ivqHfo3J45j0="; + vendorHash = "sha256-Uh2/4qdJQfqQdjXbOBkUVv2nF1AN+QRKRI0+yta+G5Q="; nativeBuildInputs = [ installShellFiles ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/8aqbf7djdivqp6nvyrml1mq4i7p7901i-civo-1.0.77" Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 3 [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • civo
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/civo/cli/releases. meta.description for civo is: CLI for interacting with Civo resources meta.homepage for civo is: https://github.com/civo/cli ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/civo/cli/releases/tag/v1.0.77) - [Compare changes on GitHub](https://github.com/civo/cli/compare/v1.0.76...v1.0.77) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.0.77 with grep in /nix/store/8aqbf7djdivqp6nvyrml1mq4i7p7901i-civo-1.0.77 - found 1.0.77 in filename of file in /nix/store/8aqbf7djdivqp6nvyrml1mq4i7p7901i-civo-1.0.77 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath civo ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/8aqbf7djdivqp6nvyrml1mq4i7p7901i-civo-1.0.77 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A civo https://github.com/r-ryantm/nixpkgs/archive/e890f0ac2f4376173031e30e5848507d25886044.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/e890f0ac2f4376173031e30e5848507d25886044#civo ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/8aqbf7djdivqp6nvyrml1mq4i7p7901i-civo-1.0.77 ls -la /nix/store/8aqbf7djdivqp6nvyrml1mq4i7p7901i-civo-1.0.77/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • civo
--- ###### Maintainer pings cc @berryp for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298951 [result] Success updating civo 1.0.76 -> 1.0.77 https://github.com/civo/cli/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.pyside6, using log file: /var/log/nixpkgs-update/python312Packages.pyside6/2024-03-25.log python312Packages.pyside6 6.6.0 -> 6.6.2 https://repology.org/project/pyside6/versions attrpath: python312Packages.pyside6 Checking auto update branch... No auto update branch exists Old version 6.6.0" not present in master derivation file with contents: { lib , stdenv , cmake , ninja , python , moveBuildTree , shiboken6 }: stdenv.mkDerivation rec { pname = "pyside6"; inherit (shiboken6) version src; sourceRoot = "pyside-setup-everywhere-src-${lib.removeSuffix ".0" version}/sources/${pname}"; # FIXME: cmake/Macros/PySideModules.cmake supposes that all Qt frameworks on macOS # reside in the same directory as QtCore.framework, which is not true for Nix. postPatch = lib.optionalString stdenv.isLinux '' # Don't ignore optional Qt modules substituteInPlace cmake/PySideHelpers.cmake \ --replace \ 'string(FIND "''${_module_dir}" "''${_core_abs_dir}" found_basepath)' \ 'set (found_basepath 0)' ''; nativeBuildInputs = [ cmake ninja python ] ++ lib.optionals stdenv.isDarwin [ moveBuildTree ]; buildInputs = with python.pkgs.qt6; [ # required qtbase python.pkgs.ninja python.pkgs.packaging python.pkgs.setuptools ] ++ lib.optionals stdenv.isLinux [ # optional qt3d qtcharts qtconnectivity qtdatavis3d qtdeclarative qthttpserver qtmultimedia qtnetworkauth qtquick3d qtremoteobjects qtscxml qtsensors qtspeech qtsvg qttools qtwebchannel qtwebengine qtwebsockets ]; propagatedBuildInputs = [ shiboken6 ]; cmakeFlags = [ "-DBUILD_TESTS=OFF" ]; dontWrapQtApps = true; postInstall = '' cd ../../.. ${python.pythonOnBuildForHost.interpreter} setup.py egg_info --build-type=pyside6 cp -r PySide6.egg-info $out/${python.sitePackages}/ ''; meta = with lib; { description = "Python bindings for Qt"; license = with licenses; [ lgpl3Only gpl2Only gpl3Only ]; homepage = "https://wiki.qt.io/Qt_for_Python"; maintainers = with maintainers; [ gebner Enzime ]; platforms = platforms.all; }; } [result] Failed to update python312Packages.pyside6 6.6.0 -> 6.6.2 https://repology.org/project/pyside6/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath halide, using log file: /var/log/nixpkgs-update/halide/2024-03-25.log halide 16.0.0 -> 17.0.1 https://repology.org/project/halide/versions attrpath: halide Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - halide: 16.0.0 -> 17.0.1 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/291572" [result] Failed to update halide 16.0.0 -> 17.0.1 https://repology.org/project/halide/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.PNADcIBGE, using log file: /var/log/nixpkgs-update/rPackages.PNADcIBGE/2024-03-25.log rPackages.PNADcIBGE 0.7.4 -> 0.7.5 https://repology.org/project/r:pnadcibge/versions attrpath: rPackages.PNADcIBGE Checking auto update branch... No auto update branch exists Old version 0.7.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.PNADcIBGE 0.7.4 -> 0.7.5 https://repology.org/project/r:pnadcibge/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.COVIDIBGE, using log file: /var/log/nixpkgs-update/rPackages.COVIDIBGE/2024-03-25.log rPackages.COVIDIBGE 0.2.1 -> 0.2.2 https://repology.org/project/r:covidibge/versions attrpath: rPackages.COVIDIBGE Checking auto update branch... No auto update branch exists Old version 0.2.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.COVIDIBGE 0.2.1 -> 0.2.2 https://repology.org/project/r:covidibge/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.vvtableau, using log file: /var/log/nixpkgs-update/rPackages.vvtableau/2024-03-25.log rPackages.vvtableau 0.4.0 -> 0.6.0 https://repology.org/project/r:vvtableau/versions attrpath: rPackages.vvtableau Checking auto update branch... No auto update branch exists Old version 0.4.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.vvtableau 0.4.0 -> 0.6.0 https://repology.org/project/r:vvtableau/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.nanoarrow, using log file: /var/log/nixpkgs-update/rPackages.nanoarrow/2024-03-25.log rPackages.nanoarrow 0.3.0.1 -> 0.4.0.1 https://repology.org/project/r:nanoarrow/versions attrpath: rPackages.nanoarrow Checking auto update branch... No auto update branch exists Old version 0.3.0.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.nanoarrow 0.3.0.1 -> 0.4.0.1 https://repology.org/project/r:nanoarrow/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.pydantic-core, using log file: /var/log/nixpkgs-update/python312Packages.pydantic-core/2024-03-25.log python312Packages.pydantic-core 2.16.3 -> 2.17.0 https://repology.org/project/python:pydantic-core/versions attrpath: python312Packages.pydantic-core Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/akjhk3ydd6hdb83fki78x5ckljllj3y5-packages.json.drv building '/nix/store/akjhk3ydd6hdb83fki78x5ckljllj3y5-packages.json.drv'... Going to be running update for following packages: - python3.12-pydantic-core-2.16.3 Press Enter key to continue... Running update for: - python3.12-pydantic-core-2.16.3: UPDATING ... - python3.12-pydantic-core-2.16.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.pydantic-core 2.16.3 -> 2.17.0 https://repology.org/project/python:pydantic-core/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cpp-netlib, using log file: /var/log/nixpkgs-update/cpp-netlib/2024-03-25.log cpp-netlib 0.13.0-final -> 0.13.0 https://repology.org/project/cpp-netlib/versions attrpath: cpp-netlib Checking auto update branch... No auto update branch exists 0.13.0 is not newer than 0.13.0-final according to Nix; versionComparison: -1 [result] Failed to update cpp-netlib 0.13.0-final -> 0.13.0 https://repology.org/project/cpp-netlib/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath php81Packages.psalm, using log file: /var/log/nixpkgs-update/php81Packages.psalm/2024-03-25.log php81Packages.psalm 5.22.2 -> 5.23.1 https://github.com/vimeo/psalm/releases attrpath: php81Packages.psalm Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update php81Packages.psalm 5.22.2 -> 5.23.1 https://github.com/vimeo/psalm/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath freepats, using log file: /var/log/nixpkgs-update/freepats/2024-03-25.log freepats 20060219 -> 20221026 https://repology.org/project/freepats/versions attrpath: freepats Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv building '/nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv'... trying https://freepats.zenvoid.org/freepats-20221026.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 880 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download freepats-20221026.tar.bz2 from any mirror error: builder for '/nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://freepats.zenvoid.org/freepats-20221026.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 880 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download freepats-20221026.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'freepats.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv /nix/store/xsy3kng2926r3xr9f2rcp4pwzkch0ssz-freepats-20221026.drv building '/nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv'... trying https://freepats.zenvoid.org/freepats-20221026.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 880 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download freepats-20221026.tar.bz2 from any mirror error: builder for '/nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://freepats.zenvoid.org/freepats-20221026.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 880 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download freepats-20221026.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/zjbpmlv0xahahqqv7j7fkfrsc639bkgj-freepats-20221026.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/xsy3kng2926r3xr9f2rcp4pwzkch0ssz-freepats-20221026.drv' failed to build [result] Failed to update freepats 20060219 -> 20221026 https://repology.org/project/freepats/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lua51Packages.lua-iconv, using log file: /var/log/nixpkgs-update/lua51Packages.lua-iconv/2024-03-25.log lua51Packages.lua-iconv 7.0.0-4 -> 7.1.0 https://repology.org/project/lua:lua-iconv/versions attrpath: lua51Packages.lua-iconv Packages for lua are currently skipped. https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646 [result] Failed to update lua51Packages.lua-iconv 7.0.0-4 -> 7.1.0 https://repology.org/project/lua:lua-iconv/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath glooctl, using log file: /var/log/nixpkgs-update/glooctl/2024-03-25.log glooctl 1.16.8 -> 1.16.9 https://github.com/solo-io/gloo/releases attrpath: glooctl Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = "sha256-UyzqKpF2WBj25Bm4MtkF6yjl87A61vGsteBNCjJV178=" [golangModuleVersion] Replaced vendorHash with sha256-UyzqKpF2WBj25Bm4MtkF6yjl87A61vGsteBNCjJV178= [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/networking/cluster/glooctl/default.nix b/pkgs/applications/networking/cluster/glooctl/default.nix index ffe98a73c904..446d0e8ca7c1 100644 --- a/pkgs/applications/networking/cluster/glooctl/default.nix +++ b/pkgs/applications/networking/cluster/glooctl/default.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "glooctl"; - version = "1.16.8"; + version = "1.16.9"; src = fetchFromGitHub { owner = "solo-io"; repo = "gloo"; rev = "v${version}"; - hash = "sha256-M8ZNDt+sO8ZtVM1PyISOsFwXrD6q9ACPG0T99bqwk1c="; + hash = "sha256-9zGtMfVZL+VIpEw2D5n4LzyTYNLCJFKf7Q++QiUKPxA="; }; vendorHash = "sha256-UyzqKpF2WBj25Bm4MtkF6yjl87A61vGsteBNCjJV178="; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/pa128iy5f0jjcydq6w6krzlx2dca0y42-glooctl-1.16.9" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • glooctl
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/solo-io/gloo/releases. meta.description for glooctl is: glooctl is the unified CLI for Gloo meta.homepage for glooctl is: https://docs.solo.io/gloo-edge/latest/reference/cli/glooctl/ ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/solo-io/gloo/releases/tag/v1.16.9) - [Compare changes on GitHub](https://github.com/solo-io/gloo/compare/v1.16.8...v1.16.9) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.16.9 with grep in /nix/store/pa128iy5f0jjcydq6w6krzlx2dca0y42-glooctl-1.16.9 - found 1.16.9 in filename of file in /nix/store/pa128iy5f0jjcydq6w6krzlx2dca0y42-glooctl-1.16.9 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath glooctl ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/pa128iy5f0jjcydq6w6krzlx2dca0y42-glooctl-1.16.9 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A glooctl https://github.com/r-ryantm/nixpkgs/archive/d23a9cf25c5dabd9b2e09e32715960f83b183570.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/d23a9cf25c5dabd9b2e09e32715960f83b183570#glooctl ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/pa128iy5f0jjcydq6w6krzlx2dca0y42-glooctl-1.16.9 ls -la /nix/store/pa128iy5f0jjcydq6w6krzlx2dca0y42-glooctl-1.16.9/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • glooctl
--- ###### Maintainer pings https://api.github.com/repos/NixOS/nixpkgs/pulls/298955 [result] Success updating glooctl 1.16.8 -> 1.16.9 https://github.com/solo-io/gloo/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.CPANChanges 0.400002 -> 0.500003 https://repology.org/project/perl:cpan-changes/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.tstools, using log file: /var/log/nixpkgs-update/rPackages.tstools/2024-03-25.log rPackages.tstools 0.4.2 -> 0.4.3 https://repology.org/project/r:tstools/versions attrpath: rPackages.tstools Checking auto update branch... No auto update branch exists Old version 0.4.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.tstools 0.4.2 -> 0.4.3 https://repology.org/project/r:tstools/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath loudmouth, using log file: /var/log/nixpkgs-update/loudmouth/2024-03-25.log loudmouth 1.5.3 -> 1.5.4 https://repology.org/project/loudmouth/versions attrpath: loudmouth Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/loudmouth/default.nix b/pkgs/development/libraries/loudmouth/default.nix index d1a8c4887249..28173b17f620 100644 --- a/pkgs/development/libraries/loudmouth/default.nix +++ b/pkgs/development/libraries/loudmouth/default.nix @@ -1,12 +1,12 @@ { lib, stdenv, fetchurl, openssl, libidn, glib, pkg-config, zlib, darwin }: stdenv.mkDerivation rec { - version = "1.5.3"; + version = "1.5.4"; pname = "loudmouth"; src = fetchurl { url = "https://mcabber.com/files/loudmouth/${pname}-${version}.tar.bz2"; - sha256 = "0b6kd5gpndl9nzis3n6hcl0ldz74bnbiypqgqa1vgb0vrcar8cjl"; + sha256 = "sha256-McvJHB/dzFNGszc7j7RVlOnqnMf+NtBZXokSxHrZTQ0="; }; configureFlags = [ "--with-ssl=openssl" ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A loudmouth nix build failed. /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/gkkabfk5kccd5j8fm1hlrb71pmpcbw1p-glib-2.78.4/lib/glib-2.0/include -I/nix/store/y0s3wgc8mbd5dnvk6y4jzx24wv9sib9r-libidn-1.42-dev/include -DLM_COMPILATION -DRUNTIME_ENDIAN -g -O2 -Wall -Wall -Wunused -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare -Werror -c -o lm-ssl-openssl.lo lm-ssl-openssl.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/gkkabfk5kccd5j8fm1hlrb71pmpcbw1p-glib-2.78.4/lib/glib-2.0/include -I/nix/store/y0s3wgc8mbd5dnvk6y4jzx24wv9sib9r-libidn-1.42-dev/include -DLM_COMPILATION -DRUNTIME_ENDIAN -g -O2 -Wall -Wall -Wunused -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare -Werror -c lm-ssl-openssl.c -fPIC -DPIC -o .libs/lm-ssl-openssl.o /nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/gkkabfk5kccd5j8fm1hlrb71pmpcbw1p-glib-2.78.4/lib/glib-2.0/include -I/nix/store/y0s3wgc8mbd5dnvk6y4jzx24wv9sib9r-libidn-1.42-dev/include -DLM_COMPILATION -DRUNTIME_ENDIAN -g -O2 -Wall -Wall -Wunused -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare -Werror -c -o lm-utils.lo lm-utils.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include -I/nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/gkkabfk5kccd5j8fm1hlrb71pmpcbw1p-glib-2.78.4/lib/glib-2.0/include -I/nix/store/y0s3wgc8mbd5dnvk6y4jzx24wv9sib9r-libidn-1.42-dev/include -DLM_COMPILATION -DRUNTIME_ENDIAN -g -O2 -Wall -Wall -Wunused -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare -Werror -c lm-utils.c -fPIC -DPIC -o .libs/lm-utils.o lm-utils.c: In function '_lm_utils_generate_id': lm-utils.c:80:5: error: 'GTimeVal' is deprecated: Use 'GDateTime' instead []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Werror=deprecated-declarations]8;;] 80 | GTimeVal tv; | ^~~~~~~~ In file included from /nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0/glib/galloca.h:34, from /nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0/glib.h:32, from lm-utils.c:33: /nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0/glib/gtypes.h:580:8: note: declared here 580 | struct _GTimeVal | ^~~~~~~~~ lm-utils.c:83:5: error: 'g_get_current_time' is deprecated: Use 'g_get_real_time' instead []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Werror=deprecated-declarations]8;;] 83 | g_get_current_time (&tv); | ^~~~~~~~~~~~~~~~~~ In file included from /nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0/glib/giochannel.h:35, from /nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0/glib.h:56: /nix/store/f13s3bc6qna2q4qmrgvqg1b4mcr1rzjp-glib-2.78.4-dev/include/glib-2.0/glib/gmain.h:728:8: note: declared here 728 | void g_get_current_time (GTimeVal *result); | ^~~~~~~~~~~~~~~~~~ cc1: all warnings being treated as errors make[3]: *** [Makefile:677: lm-utils.lo] Error 1 make[3]: Leaving directory '/build/loudmouth-1.5.4/loudmouth' make[2]: *** [Makefile:528: all] Error 2 make[2]: Leaving directory '/build/loudmouth-1.5.4/loudmouth' make[1]: *** [Makefile:512: all-recursive] Error 1 make[1]: Leaving directory '/build/loudmouth-1.5.4' make: *** [Makefile:420: all] Error 2 [result] Failed to update loudmouth 1.5.3 -> 1.5.4 https://repology.org/project/loudmouth/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nodePackages.eas-cli, using log file: /var/log/nixpkgs-update/nodePackages.eas-cli/2024-03-25.log nodePackages.eas-cli 7.6.0 -> 7.6.1 https://github.com/expo/eas-cli/releases attrpath: nodePackages.eas-cli Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update nodePackages.eas-cli 7.6.0 -> 7.6.1 https://github.com/expo/eas-cli/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nodePackages_latest.eas-cli, using log file: /var/log/nixpkgs-update/nodePackages_latest.eas-cli/2024-03-25.log nodePackages_latest.eas-cli 7.6.0 -> 7.6.1 https://github.com/expo/eas-cli/releases attrpath: nodePackages_latest.eas-cli Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update nodePackages_latest.eas-cli 7.6.0 -> 7.6.1 https://github.com/expo/eas-cli/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.affyPara, using log file: /var/log/nixpkgs-update/rPackages.affyPara/2024-03-25.log rPackages.affyPara 1.51.0 -> 1.54.0 https://repology.org/project/r:affypara/versions attrpath: rPackages.affyPara Checking auto update branch... No auto update branch exists Old version 1.51.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.affyPara 1.51.0 -> 1.54.0 https://repology.org/project/r:affypara/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath qbs, using log file: /var/log/nixpkgs-update/qbs/2024-03-25.log qbs 1.24.1 -> 2.2.2 https://repology.org/project/qbs/versions attrpath: qbs Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/tools/build-managers/qbs/default.nix b/pkgs/development/tools/build-managers/qbs/default.nix index 9d1305f77675..54800fe55cd8 100644 --- a/pkgs/development/tools/build-managers/qbs/default.nix +++ b/pkgs/development/tools/build-managers/qbs/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "qbs"; - version = "1.24.1"; + version = "2.2.2"; src = fetchFromGitHub { owner = "qbs"; repo = "qbs"; rev = "v${version}"; - sha256 = "sha256-nL7UZh29Oecu3RvXYg5xsin2IvPWpApleLH37sEdSAI="; + sha256 = "sha256-JQGr507r0nqoEXqu9s9xIsE0ac7L+0siu8RhmuYktfA="; }; nativeBuildInputs = [ qmake ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A qbs nix build failed. got build log for 'qbs' from 'daemon' @nix { "action": "setPhase", "phase": "qmakePrePhase" } Running phase: qmakePrePhase @nix { "action": "setPhase", "phase": "qtPreHook" } Running phase: qtPreHook @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/7vjh0dz43dfxkl3bnb0ks9i4aqrcc9jw-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase QMAKEPATH=/nix/store/62jj0ky87hh1rxrjcz6w44ix2798skc2-qtbase-5.15.12-dev:/nix/store/3rycbxanwzk4h99fim6w1h13iaqrs4ml-qtscript-5.15.16-dev:/nix/store/svabnlicjg19dqgdsr744mvbyb93p333-qttools-5.15.12-dev:/nix/store/vxjx8fkd0vrl6xf0lz3iliwdg81277q6-qtdeclarative-5.15.12-dev:/nix/store/c675awh2xkjj0lp41ixi9cvjhlh7wg08-qtsvg-5.15.12-dev qmake PREFIX=/nix/store/qyg9d3q4ghkxz580bil3alxq37hh2fkz-qbs-2.2.2 NIX_OUTPUT_OUT=/nix/store/qyg9d3q4ghkxz580bil3alxq37hh2fkz-qbs-2.2.2 NIX_OUTPUT_DEV=/nix/store/qyg9d3q4ghkxz580bil3alxq37hh2fkz-qbs-2.2.2 NIX_OUTPUT_BIN=/nix/store/qyg9d3q4ghkxz580bil3alxq37hh2fkz-qbs-2.2.2 NIX_OUTPUT_DOC=/nix/store/qyg9d3q4ghkxz580bil3alxq37hh2fkz-qbs-2.2.2/share/doc/qt-5.15.12 NIX_OUTPUT_QML=/nix/store/qyg9d3q4ghkxz580bil3alxq37hh2fkz-qbs-2.2.2/lib/qt-5.15.12/qml NIX_OUTPUT_PLUGIN=/nix/store/qyg9d3q4ghkxz580bil3alxq37hh2fkz-qbs-2.2.2/lib/qt-5.15.12/plugins CONFIG+=release CONFIG+=nostrip QBS_INSTALL_PREFIX=$(out) qbs.pro QMAKE_LRELEASE=/nix/store/svabnlicjg19dqgdsr744mvbyb93p333-qttools-5.15.12-dev/bin/lrelease Cannot find file: qbs.pro. [result] Failed to update qbs 1.24.1 -> 2.2.2 https://repology.org/project/qbs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mygui, using log file: /var/log/nixpkgs-update/mygui/2024-03-25.log mygui 3.4.2 -> 3.4.3 https://repology.org/project/mygui/versions attrpath: mygui Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/mygui/default.nix b/pkgs/development/libraries/mygui/default.nix index c785e640ccb0..ab9089ec8cfa 100644 --- a/pkgs/development/libraries/mygui/default.nix +++ b/pkgs/development/libraries/mygui/default.nix @@ -20,13 +20,13 @@ let in stdenv.mkDerivation rec { pname = "mygui"; - version = "3.4.2"; + version = "3.4.3"; src = fetchFromGitHub { owner = "MyGUI"; repo = "mygui"; rev = "MyGUI${version}"; - hash = "sha256-yBV0ImOFJlqBPqqOjXYe4SFO2liSGZCEwvehED5Ubj4="; + hash = "sha256-qif9trHgtWpYiDVXY3cjRsXypjjjgStX8tSWCnXhXlk="; }; patches = [ [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A mygui nix build failed. got build log for 'mygui' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/g6svn65669f5cz93b2n6lykq66s98v31-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/rmcr285h6j33p1j0jqh0d4pyjsicv5dq-disable-framework.patch patching file CMake/Utils/MyGUIConfigTargets.cmake Hunk #1 FAILED at 418. 1 out of 1 hunk FAILED -- saving rejects to file CMake/Utils/MyGUIConfigTargets.cmake.rej [result] Failed to update mygui 3.4.2 -> 3.4.3 https://repology.org/project/mygui/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.psycopg, using log file: /var/log/nixpkgs-update/python311Packages.psycopg/2024-03-25.log python311Packages.psycopg 0 -> 1 attrpath: python311Packages.psycopg Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/czzhcy8npf2gimgj86rllrl4lky1icxq-packages.json.drv building '/nix/store/czzhcy8npf2gimgj86rllrl4lky1icxq-packages.json.drv'... Going to be running update for following packages: - python3.11-psycopg-3.1.17 Press Enter key to continue... Running update for: - python3.11-psycopg-3.1.17: UPDATING ... - python3.11-psycopg-3.1.17: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.psycopg 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xrootd, using log file: /var/log/nixpkgs-update/xrootd/2024-03-25.log xrootd 5.6.6 -> 5.6.9 https://repology.org/project/xrootd/versions attrpath: xrootd Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update xrootd 5.6.6 -> 5.6.9 https://repology.org/project/xrootd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.dataverifyr, using log file: /var/log/nixpkgs-update/rPackages.dataverifyr/2024-03-25.log rPackages.dataverifyr 0.1.5 -> 0.1.8 https://repology.org/project/r:dataverifyr/versions attrpath: rPackages.dataverifyr Checking auto update branch... No auto update branch exists Old version 0.1.5" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.dataverifyr 0.1.5 -> 0.1.8 https://repology.org/project/r:dataverifyr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath agenda, using log file: /var/log/nixpkgs-update/agenda/2024-03-25.log agenda 0 -> 1 attrpath: agenda Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] cannot link '/nix/store/.links/15kk4gkgbs56s1x94ydix5j32ql788wrvxzy1xyg0hp5c09sfnf2' to '/nix/store/39g2gvy3y2543b5rng82jgsrq4ckbdv9-packages.json.drv': No space left on device this derivation will be built: /nix/store/39g2gvy3y2543b5rng82jgsrq4ckbdv9-packages.json.drv building '/nix/store/39g2gvy3y2543b5rng82jgsrq4ckbdv9-packages.json.drv'... Going to be running update for following packages: - agenda-1.1.2 Press Enter key to continue... Running update for: - agenda-1.1.2: UPDATING ... - agenda-1.1.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update agenda 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pantheon.switchboard-plug-keyboard, using log file: /var/log/nixpkgs-update/pantheon.switchboard-plug-keyboard/2024-03-25.log pantheon.switchboard-plug-keyboard 0 -> 1 attrpath: pantheon.switchboard-plug-keyboard Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/71nwj8fqv921j8gw7wiw6z2p8y7mcdzh-packages.json.drv building '/nix/store/71nwj8fqv921j8gw7wiw6z2p8y7mcdzh-packages.json.drv'... Going to be running update for following packages: - switchboard-plug-keyboard-3.2.1 Press Enter key to continue... Running update for: - switchboard-plug-keyboard-3.2.1: UPDATING ... - switchboard-plug-keyboard-3.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pantheon.switchboard-plug-keyboard 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.phik, using log file: /var/log/nixpkgs-update/python311Packages.phik/2024-03-25.log python311Packages.phik 0 -> 1 attrpath: python311Packages.phik Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/a7y5amvzs4dvp8wv8rvf48zcz0i07i1m-packages.json.drv building '/nix/store/a7y5amvzs4dvp8wv8rvf48zcz0i07i1m-packages.json.drv'... Going to be running update for following packages: - python3.11-phik-0.12.4 Press Enter key to continue... Running update for: - python3.11-phik-0.12.4: UPDATING ... - python3.11-phik-0.12.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.phik 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.ZonemasterEngine 4.6.1 -> 5.0.0 https://repology.org/project/perl:zonemaster-engine/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ioping, using log file: /var/log/nixpkgs-update/ioping/2024-03-25.log ioping 1.2 -> 1.3 https://repology.org/project/ioping/versions attrpath: ioping Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update ioping 1.2 -> 1.3 https://repology.org/project/ioping/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath centrifugo, using log file: /var/log/nixpkgs-update/centrifugo/2024-03-25.log centrifugo 0 -> 1 attrpath: centrifugo Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] skipping because derivation has updateScript [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/r529zymfxfz6g38bysjqzmh7waad7jv0-packages.json.drv building '/nix/store/r529zymfxfz6g38bysjqzmh7waad7jv0-packages.json.drv'... Going to be running update for following packages: - centrifugo-5.3.0 Press Enter key to continue... Running update for: - centrifugo-5.3.0: UPDATING ... - centrifugo-5.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update centrifugo 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.snapcast, using log file: /var/log/nixpkgs-update/python311Packages.snapcast/2024-03-25.log python311Packages.snapcast 0 -> 1 attrpath: python311Packages.snapcast Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bikgrfbp3g15flsiv1gvx8843bd48cl3-packages.json.drv building '/nix/store/bikgrfbp3g15flsiv1gvx8843bd48cl3-packages.json.drv'... Going to be running update for following packages: - python3.11-snapcast-2.3.6 Press Enter key to continue... Running update for: - python3.11-snapcast-2.3.6: UPDATING ... - python3.11-snapcast-2.3.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.snapcast 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nhentai, using log file: /var/log/nixpkgs-update/nhentai/2024-03-25.log nhentai 0 -> 1 attrpath: nhentai Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2g9dpr1b626dcjsn6si8d9c2i16v3shb-packages.json.drv building '/nix/store/2g9dpr1b626dcjsn6si8d9c2i16v3shb-packages.json.drv'... Going to be running update for following packages: - nhentai-0.5.3 Press Enter key to continue... Running update for: - nhentai-0.5.3: UPDATING ... - nhentai-0.5.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update nhentai 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath heimdall, using log file: /var/log/nixpkgs-update/heimdall/2024-03-25.log heimdall 1.4.2 -> 2.0.2 https://repology.org/project/heimdall/versions attrpath: heimdall Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv building '/nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv'... trying https://github.com/Benjamin-Dobell/Heimdall/archive/v2.0.2.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/Benjamin-Dobell/Heimdall/archive/v2.0.2.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'heimdall.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv /nix/store/jb9rjzs6h721nap9x3q9vl0ziw2qwskq-heimdall-2.0.2.drv building '/nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv'... trying https://github.com/Benjamin-Dobell/Heimdall/archive/v2.0.2.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/Benjamin-Dobell/Heimdall/archive/v2.0.2.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/ii6ar1vwx1minkssr539ym8r637cpq5a-source.drv'. error: 1 dependencies of derivation '/nix/store/jb9rjzs6h721nap9x3q9vl0ziw2qwskq-heimdall-2.0.2.drv' failed to build [result] Failed to update heimdall 1.4.2 -> 2.0.2 https://repology.org/project/heimdall/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hplip, using log file: /var/log/nixpkgs-update/hplip/2024-03-25.log hplip 0 -> 1 attrpath: hplip Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/07j23sfmjxcriyh1vbwwylqviki9552s-packages.json.drv building '/nix/store/07j23sfmjxcriyh1vbwwylqviki9552s-packages.json.drv'... Going to be running update for following packages: - hplip-3.23.8 Press Enter key to continue... Running update for: - hplip-3.23.8: UPDATING ... - hplip-3.23.8: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update hplip 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.jsons, using log file: /var/log/nixpkgs-update/python311Packages.jsons/2024-03-25.log python311Packages.jsons 0 -> 1 attrpath: python311Packages.jsons Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/x593xj6p9xblpg9g7af8c2lha8w5c5g3-packages.json.drv building '/nix/store/x593xj6p9xblpg9g7af8c2lha8w5c5g3-packages.json.drv'... Going to be running update for following packages: - python3.11-jsons-1.6.3 Press Enter key to continue... Running update for: - python3.11-jsons-1.6.3: UPDATING ... - python3.11-jsons-1.6.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.jsons 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.lcov-cobertura, using log file: /var/log/nixpkgs-update/python311Packages.lcov-cobertura/2024-03-25.log python311Packages.lcov-cobertura 0 -> 1 attrpath: python311Packages.lcov-cobertura Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ica5w2krh9shprz89nbbkhl6ng1gp7xq-packages.json.drv building '/nix/store/ica5w2krh9shprz89nbbkhl6ng1gp7xq-packages.json.drv'... Going to be running update for following packages: - python3.11-lcov-cobertura-2.0.2 Press Enter key to continue... Running update for: - python3.11-lcov-cobertura-2.0.2: UPDATING ... - python3.11-lcov-cobertura-2.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.lcov-cobertura 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rfaRm, using log file: /var/log/nixpkgs-update/rPackages.rfaRm/2024-03-25.log rPackages.rfaRm 1.14.0 -> 1.14.2 https://repology.org/project/r:rfarm/versions attrpath: rPackages.rfaRm Checking auto update branch... No auto update branch exists Old version 1.14.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rfaRm 1.14.0 -> 1.14.2 https://repology.org/project/r:rfarm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.odp-amsterdam, using log file: /var/log/nixpkgs-update/python311Packages.odp-amsterdam/2024-03-25.log python311Packages.odp-amsterdam 0 -> 1 attrpath: python311Packages.odp-amsterdam Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/0y2i08nn1dlb0diw9nby4vcak1h3sr55-packages.json.drv building '/nix/store/0y2i08nn1dlb0diw9nby4vcak1h3sr55-packages.json.drv'... Going to be running update for following packages: - python3.11-odp-amsterdam-6.0.1 Press Enter key to continue... Running update for: - python3.11-odp-amsterdam-6.0.1: UPDATING ... - python3.11-odp-amsterdam-6.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.odp-amsterdam 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.shodan, using log file: /var/log/nixpkgs-update/python311Packages.shodan/2024-03-25.log python311Packages.shodan 0 -> 1 attrpath: python311Packages.shodan Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ag1bxakh31z20wfb6i61yapsvswxw80q-packages.json.drv building '/nix/store/ag1bxakh31z20wfb6i61yapsvswxw80q-packages.json.drv'... Going to be running update for following packages: - python3.11-shodan-1.31.0 Press Enter key to continue... Running update for: - python3.11-shodan-1.31.0: UPDATING ... - python3.11-shodan-1.31.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.shodan 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.twisted, using log file: /var/log/nixpkgs-update/python311Packages.twisted/2024-03-25.log python311Packages.twisted 0 -> 1 attrpath: python311Packages.twisted Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/cjabs60jkb07r1bi3yk5qf5560k0vvka-packages.json.drv building '/nix/store/cjabs60jkb07r1bi3yk5qf5560k0vvka-packages.json.drv'... Going to be running update for following packages: - python3.11-twisted-24.3.0 Press Enter key to continue... Running update for: - python3.11-twisted-24.3.0: UPDATING ... - python3.11-twisted-24.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.twisted 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath neovim-remote, using log file: /var/log/nixpkgs-update/neovim-remote/2024-03-25.log neovim-remote 0 -> 1 attrpath: neovim-remote Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/0qzawx71fr6g1944yazpwh2wn8nw4f9f-packages.json.drv building '/nix/store/0qzawx71fr6g1944yazpwh2wn8nw4f9f-packages.json.drv'... Going to be running update for following packages: - neovim-remote-2.5.1 Press Enter key to continue... Running update for: - neovim-remote-2.5.1: UPDATING ... - neovim-remote-2.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update neovim-remote 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.gtts, using log file: /var/log/nixpkgs-update/python311Packages.gtts/2024-03-25.log python311Packages.gtts 0 -> 1 attrpath: python311Packages.gtts Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/vvr7xzpxgmzxy8isgk1icd6psv66qcrj-packages.json.drv building '/nix/store/vvr7xzpxgmzxy8isgk1icd6psv66qcrj-packages.json.drv'... Going to be running update for following packages: - python3.11-gtts-2.5.1 Press Enter key to continue... Running update for: - python3.11-gtts-2.5.1: UPDATING ... - python3.11-gtts-2.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.gtts 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.nbsphinx, using log file: /var/log/nixpkgs-update/python311Packages.nbsphinx/2024-03-25.log python311Packages.nbsphinx 0 -> 1 attrpath: python311Packages.nbsphinx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/b4haq9kaq8y6l646cpjds2d26j1i9k89-packages.json.drv building '/nix/store/b4haq9kaq8y6l646cpjds2d26j1i9k89-packages.json.drv'... Going to be running update for following packages: - python3.11-nbsphinx-0.9.3 Press Enter key to continue... Running update for: - python3.11-nbsphinx-0.9.3: UPDATING ... - python3.11-nbsphinx-0.9.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nbsphinx 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.uptime-kuma-monitor, using log file: /var/log/nixpkgs-update/python311Packages.uptime-kuma-monitor/2024-03-25.log python311Packages.uptime-kuma-monitor 0 -> 1 attrpath: python311Packages.uptime-kuma-monitor Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/r402bgvyz5a9bydmj9sixdpkw8bd9nv4-packages.json.drv building '/nix/store/r402bgvyz5a9bydmj9sixdpkw8bd9nv4-packages.json.drv'... Going to be running update for following packages: - python3.11-uptime-kuma-monitor-1.0.0 Press Enter key to continue... Running update for: - python3.11-uptime-kuma-monitor-1.0.0: UPDATING ... - python3.11-uptime-kuma-monitor-1.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.uptime-kuma-monitor 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath poetryPlugins.poetry-audit-plugin, using log file: /var/log/nixpkgs-update/poetryPlugins.poetry-audit-plugin/2024-03-25.log poetryPlugins.poetry-audit-plugin 0 -> 1 attrpath: poetryPlugins.poetry-audit-plugin Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/3r6a4vwnfa8fqmb5s2gb2fdpnymjbgj1-packages.json.drv building '/nix/store/3r6a4vwnfa8fqmb5s2gb2fdpnymjbgj1-packages.json.drv'... Going to be running update for following packages: - python3.11-poetry-audit-plugin-0.4.0 Press Enter key to continue... Running update for: - python3.11-poetry-audit-plugin-0.4.0: UPDATING ... - python3.11-poetry-audit-plugin-0.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update poetryPlugins.poetry-audit-plugin 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath eddy, using log file: /var/log/nixpkgs-update/eddy/2024-03-25.log eddy 0 -> 1 attrpath: eddy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/lid0h6y08rhkfgfyk83n6h6is07hf23r-packages.json.drv building '/nix/store/lid0h6y08rhkfgfyk83n6h6is07hf23r-packages.json.drv'... Going to be running update for following packages: - eddy-1.2.1 Press Enter key to continue... Running update for: - eddy-1.2.1: UPDATING ... - eddy-1.2.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/applications/graphics/eddy/default.nix b/pkgs/applications/graphics/eddy/default.nix index 6dac49fc5d15..ddeef688e5c0 100644 --- a/pkgs/applications/graphics/eddy/default.nix +++ b/pkgs/applications/graphics/eddy/default.nix @@ -8,13 +8,13 @@ python3Packages.buildPythonApplication rec { pname = "eddy"; - version = "1.2.1"; + version = "3.5.2"; src = fetchFromGitHub { owner = "obdasystems"; repo = pname; - rev = "v${version}"; - sha256 = "12j77bbva5py9bd57c80cmjvf8vll40h19n81h16lvv2r2r7jynh"; + rev = "refs/tags/v${version}"; + sha256 = "sha256-9Ftix8ATTW8M3neBm5la8uBpqUk2b0Bjl62MWC2UFAk="; }; propagatedBuildInputs = [ An auto update branch exists with message `eddy: 1.2.1 -> 3.5.2`. New version is 3.5.2. An auto update branch exists with an equal or greater version [result] Failed to update eddy 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.yapf, using log file: /var/log/nixpkgs-update/python311Packages.yapf/2024-03-25.log python311Packages.yapf 0 -> 1 attrpath: python311Packages.yapf Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/yqllrc15mf65fd8f3smzs7x55nz0nrh6-packages.json.drv building '/nix/store/yqllrc15mf65fd8f3smzs7x55nz0nrh6-packages.json.drv'... Going to be running update for following packages: - python3.11-yapf-0.40.2 Press Enter key to continue... Running update for: - python3.11-yapf-0.40.2: UPDATING ... - python3.11-yapf-0.40.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.yapf 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath meld, using log file: /var/log/nixpkgs-update/meld/2024-03-25.log meld 0 -> 1 attrpath: meld Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/r0vxcndvi8wc0jvyrpl2lxkyfr18kwaf-packages.json.drv building '/nix/store/r0vxcndvi8wc0jvyrpl2lxkyfr18kwaf-packages.json.drv'... Going to be running update for following packages: - meld-3.22.1 Press Enter key to continue... Running update for: - meld-3.22.1: UPDATING ... - meld-3.22.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/applications/version-management/meld/default.nix b/pkgs/applications/version-management/meld/default.nix index 563e7362d51d..3b2f52f00774 100644 --- a/pkgs/applications/version-management/meld/default.nix +++ b/pkgs/applications/version-management/meld/default.nix @@ -18,13 +18,13 @@ python3.pkgs.buildPythonApplication rec { pname = "meld"; - version = "3.22.1"; + version = "3.22.2"; format = "other"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "sha256-bdO9MtvUNBq6djD7lTd393x3aB7qIjazZB1iKo+QaDY="; + sha256 = "sha256-RqCnE/vNGxU7N3oeB1fIziVcmCJGdljqz72JsekjFu8="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/s7ygl2dp8s5asy16l3v6r5p7cxgni30s-meld-3.22.2" [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
3 packages marked as broken and skipped:
  • rabbitvcs
  • rabbitvcs.cli
  • rabbitvcs.dist
1 package built:
  • meld
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for meld is: Visual diff and merge tool meta.homepage for meld is: https://meld.app/ ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 3.22.2 with grep in /nix/store/s7ygl2dp8s5asy16l3v6r5p7cxgni30s-meld-3.22.2 - found 3.22.2 in filename of file in /nix/store/s7ygl2dp8s5asy16l3v6r5p7cxgni30s-meld-3.22.2 ---
Rebuild report (if merged into master) (click to expand) ``` 2 total rebuild path(s) 2 package rebuild(s) First fifty rebuilds by attrpath meld rabbitvcs ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/s7ygl2dp8s5asy16l3v6r5p7cxgni30s-meld-3.22.2 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A meld https://github.com/r-ryantm/nixpkgs/archive/b3d366e8a21a1ed6a740cb153c8a05695641c557.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/b3d366e8a21a1ed6a740cb153c8a05695641c557#meld ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/s7ygl2dp8s5asy16l3v6r5p7cxgni30s-meld-3.22.2 ls -la /nix/store/s7ygl2dp8s5asy16l3v6r5p7cxgni30s-meld-3.22.2/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
3 packages marked as broken and skipped:
  • rabbitvcs
  • rabbitvcs.cli
  • rabbitvcs.dist
1 package built:
  • meld
--- ###### Maintainer pings cc @jtojnar @mimame for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298962 [result] Success updating meld 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.minikerberos, using log file: /var/log/nixpkgs-update/python311Packages.minikerberos/2024-03-25.log python311Packages.minikerberos 0 -> 1 attrpath: python311Packages.minikerberos Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/j2zrgkzg8dw0lp7qvwnxk5h2hd6p8szr-packages.json.drv building '/nix/store/j2zrgkzg8dw0lp7qvwnxk5h2hd6p8szr-packages.json.drv'... Going to be running update for following packages: - python3.11-minikerberos-0.4.4 Press Enter key to continue... Running update for: - python3.11-minikerberos-0.4.4: UPDATING ... - python3.11-minikerberos-0.4.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.minikerberos 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.spectral-cube, using log file: /var/log/nixpkgs-update/python311Packages.spectral-cube/2024-03-25.log python311Packages.spectral-cube 0 -> 1 attrpath: python311Packages.spectral-cube Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/dvxsc84zb8wmwg1nyrwx6wyqsz0gqi72-packages.json.drv building '/nix/store/dvxsc84zb8wmwg1nyrwx6wyqsz0gqi72-packages.json.drv'... Going to be running update for following packages: - python3.11-spectral-cube-0.6.5 Press Enter key to continue... Running update for: - python3.11-spectral-cube-0.6.5: UPDATING ... - python3.11-spectral-cube-0.6.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.spectral-cube 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyinstrument, using log file: /var/log/nixpkgs-update/python311Packages.pyinstrument/2024-03-25.log python311Packages.pyinstrument 0 -> 1 attrpath: python311Packages.pyinstrument Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ds26is5amgfr6s50c3f1kvsqswb8icyg-packages.json.drv building '/nix/store/ds26is5amgfr6s50c3f1kvsqswb8icyg-packages.json.drv'... Going to be running update for following packages: - python3.11-pyinstrument-4.6.0 Press Enter key to continue... Running update for: - python3.11-pyinstrument-4.6.0: UPDATING ... - python3.11-pyinstrument-4.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyinstrument 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyqwikswitch, using log file: /var/log/nixpkgs-update/python311Packages.pyqwikswitch/2024-03-25.log python311Packages.pyqwikswitch 0 -> 1 attrpath: python311Packages.pyqwikswitch Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/civ3i8cp51nhkqivisgq5p5yav606bad-packages.json.drv building '/nix/store/civ3i8cp51nhkqivisgq5p5yav606bad-packages.json.drv'... Going to be running update for following packages: - python3.11-pyqwikswitch-0.94 Press Enter key to continue... Running update for: - python3.11-pyqwikswitch-0.94: UPDATING ... - python3.11-pyqwikswitch-0.94: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyqwikswitch 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.gotailwind, using log file: /var/log/nixpkgs-update/python311Packages.gotailwind/2024-03-25.log python311Packages.gotailwind 0 -> 1 attrpath: python311Packages.gotailwind Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/chz6cbrfakddb0j2mnb88y5rddih9j1x-packages.json.drv building '/nix/store/chz6cbrfakddb0j2mnb88y5rddih9j1x-packages.json.drv'... Going to be running update for following packages: - python3.11-gotailwind-0.2.2 Press Enter key to continue... Running update for: - python3.11-gotailwind-0.2.2: UPDATING ... - python3.11-gotailwind-0.2.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.gotailwind 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.solaredge, using log file: /var/log/nixpkgs-update/python311Packages.solaredge/2024-03-25.log python311Packages.solaredge 0 -> 1 attrpath: python311Packages.solaredge Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/5hw89lki4hxdylm7zqabh4qvzsyrr4va-packages.json.drv building '/nix/store/5hw89lki4hxdylm7zqabh4qvzsyrr4va-packages.json.drv'... Going to be running update for following packages: - python3.11-solaredge-0.0.4 Press Enter key to continue... Running update for: - python3.11-solaredge-0.0.4: UPDATING ... - python3.11-solaredge-0.0.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.solaredge 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mynewt-newt, using log file: /var/log/nixpkgs-update/mynewt-newt/2024-03-25.log mynewt-newt 1.10.0 -> 1.11.0 https://repology.org/project/mynewt-newt/versions attrpath: mynewt-newt Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = "sha256-/LK+NSs7YZkw6TRvBQcn6/SszIwAfXN0rt2AKSBV7CE=" [golangModuleVersion] Replaced vendorHash with sha256-D+OfUnYQKnb6dubN0utqc2KCeSYkK0jMLYmu/rLzuNQ= Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A mynewt-newt nix build failed. got build log for 'mynewt-newt' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/7lsj1zarh17vja95cskfi608dz4sa1my-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase @nix { "action": "setPhase", "phase": "buildPhase" } Running phase: buildPhase Building subPackage ./newt # golang.org/x/sys/unix vendor/golang.org/x/sys/unix/syscall.go:83:16: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod) vendor/golang.org/x/sys/unix/syscall_linux.go:1018:20: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod) vendor/golang.org/x/sys/unix/syscall_linux.go:2289:9: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod) vendor/golang.org/x/sys/unix/syscall_unix.go:118:7: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod) vendor/golang.org/x/sys/unix/sysvshm_unix.go:33:7: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod) [result] Failed to update mynewt-newt 1.10.0 -> 1.11.0 https://repology.org/project/mynewt-newt/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.bayesdfa, using log file: /var/log/nixpkgs-update/rPackages.bayesdfa/2024-03-25.log rPackages.bayesdfa 1.3.1 -> 1.3.3 https://repology.org/project/r:bayesdfa/versions attrpath: rPackages.bayesdfa Checking auto update branch... No auto update branch exists Old version 1.3.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.bayesdfa 1.3.1 -> 1.3.3 https://repology.org/project/r:bayesdfa/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.x11-hash, using log file: /var/log/nixpkgs-update/python311Packages.x11-hash/2024-03-25.log python311Packages.x11-hash 0 -> 1 attrpath: python311Packages.x11-hash Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] cannot link '/nix/store/.links/08w3fj7xdm4gvrsbaq6qv63vxpjcy2g4m9mmdggla3iid32mjsvr' to '/nix/store/igw9n2ls8b9h2zm9i92zl20brly5z14j-nixpkgs-update-script.drv': No space left on device this derivation will be built: /nix/store/fimbfackh8m1smxgxhzcrifc4zkvhsrv-packages.json.drv building '/nix/store/fimbfackh8m1smxgxhzcrifc4zkvhsrv-packages.json.drv'... Going to be running update for following packages: - python3.11-x11-hash-1.4 Press Enter key to continue... Running update for: - python3.11-x11-hash-1.4: UPDATING ... - python3.11-x11-hash-1.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.x11-hash 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.apispec-webframeworks, using log file: /var/log/nixpkgs-update/python311Packages.apispec-webframeworks/2024-03-25.log python311Packages.apispec-webframeworks 0 -> 1 attrpath: python311Packages.apispec-webframeworks Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6zjykkx8gkzfyhdnz42sshap0sq9y293-packages.json.drv building '/nix/store/6zjykkx8gkzfyhdnz42sshap0sq9y293-packages.json.drv'... Going to be running update for following packages: - python3.11-apispec-webframeworks-1.1.0 Press Enter key to continue... Running update for: - python3.11-apispec-webframeworks-1.1.0: UPDATING ... - python3.11-apispec-webframeworks-1.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.apispec-webframeworks 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nanomsg, using log file: /var/log/nixpkgs-update/nanomsg/2024-03-25.log nanomsg 1.1.5 -> 1.2.1 https://repology.org/project/nanomsg/versions attrpath: nanomsg Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update nanomsg 1.1.5 -> 1.2.1 https://repology.org/project/nanomsg/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.stickytape, using log file: /var/log/nixpkgs-update/python311Packages.stickytape/2024-03-25.log python311Packages.stickytape 0 -> 1 attrpath: python311Packages.stickytape Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/db3vfnhwa0z7fr8nmyppg1c3191sfdbs-packages.json.drv building '/nix/store/db3vfnhwa0z7fr8nmyppg1c3191sfdbs-packages.json.drv'... Going to be running update for following packages: - python3.11-stickytape-0.2.1 Press Enter key to continue... Running update for: - python3.11-stickytape-0.2.1: UPDATING ... - python3.11-stickytape-0.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.stickytape 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.yamale, using log file: /var/log/nixpkgs-update/python311Packages.yamale/2024-03-25.log python311Packages.yamale 0 -> 1 attrpath: python311Packages.yamale Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/4nqhw9d279kvfizkj4khc37afdd90kp0-packages.json.drv building '/nix/store/4nqhw9d279kvfizkj4khc37afdd90kp0-packages.json.drv'... Going to be running update for following packages: - python3.11-yamale-5.1.0 Press Enter key to continue... Running update for: - python3.11-yamale-5.1.0: UPDATING ... - python3.11-yamale-5.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.yamale 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pytube, using log file: /var/log/nixpkgs-update/python311Packages.pytube/2024-03-25.log python311Packages.pytube 0 -> 1 attrpath: python311Packages.pytube Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/wwc8rid8jiaiyy4y6w7yg1k7n9sgg3wm-packages.json.drv building '/nix/store/wwc8rid8jiaiyy4y6w7yg1k7n9sgg3wm-packages.json.drv'... Going to be running update for following packages: - python3.11-pytube-15.0.0 Press Enter key to continue... Running update for: - python3.11-pytube-15.0.0: UPDATING ... - python3.11-pytube-15.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytube 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.hypercorn, using log file: /var/log/nixpkgs-update/python311Packages.hypercorn/2024-03-25.log python311Packages.hypercorn 0 -> 1 attrpath: python311Packages.hypercorn Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/lcgrfk9k7x2h0wbnb6gam1idlry599d0-packages.json.drv building '/nix/store/lcgrfk9k7x2h0wbnb6gam1idlry599d0-packages.json.drv'... Going to be running update for following packages: - python3.11-hypercorn-0.14.3 Press Enter key to continue... Running update for: - python3.11-hypercorn-0.14.3: UPDATING ... - python3.11-hypercorn-0.14.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.hypercorn 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath _9pfs, using log file: /var/log/nixpkgs-update/_9pfs/2024-03-25.log _9pfs 0 -> 1 attrpath: _9pfs Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/pbmxl97s8k0rncp69y84a36r9463p9cg-packages.json.drv building '/nix/store/pbmxl97s8k0rncp69y84a36r9463p9cg-packages.json.drv'... Going to be running update for following packages: - 9pfs-0.3 Press Enter key to continue... Running update for: - 9pfs-0.3: UPDATING ... - 9pfs-0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update _9pfs 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnomeExtensions.hotel-manager, using log file: /var/log/nixpkgs-update/gnomeExtensions.hotel-manager/2024-03-25.log gnomeExtensions.hotel-manager 20 -> 22 https://repology.org/project/gnome:hotel-manager/versions attrpath: gnomeExtensions.hotel-manager Checking auto update branch... No auto update branch exists Old version 20" not present in master derivation file with contents: { pkgs, lib, stdenv, fetchzip, nixosTests }: let buildGnomeExtension = { # Every gnome extension has a UUID. It's the name of the extension folder once unpacked # and can always be found in the metadata.json of every extension. uuid, name, pname, description, # extensions.gnome.org extension URL link, # Extension version numbers are integers version, sha256, # Hex-encoded string of JSON bytes metadata, }: stdenv.mkDerivation { pname = "gnome-shell-extension-${pname}"; version = builtins.toString version; src = fetchzip { url = "https://extensions.gnome.org/extension-data/${ builtins.replaceStrings [ "@" ] [ "" ] uuid }.v${builtins.toString version}.shell-extension.zip"; inherit sha256; stripRoot = false; # The download URL may change content over time. This is because the # metadata.json is automatically generated, and parts of it can be changed # without making a new release. We simply substitute the possibly changed fields # with their content from when we last updated, and thus get a deterministic output # hash. postFetch = '' echo "${metadata}" | base64 --decode > $out/metadata.json ''; }; nativeBuildInputs = with pkgs; [ buildPackages.glib ]; buildPhase = '' runHook preBuild if [ -d schemas ]; then glib-compile-schemas --strict schemas fi runHook postBuild ''; installPhase = '' runHook preInstall mkdir -p $out/share/gnome-shell/extensions/ cp -r -T . $out/share/gnome-shell/extensions/${uuid} runHook postInstall ''; meta = { description = builtins.head (lib.splitString "\n" description); longDescription = description; homepage = link; license = lib.licenses.gpl2Plus; # https://wiki.gnome.org/Projects/GnomeShell/Extensions/Review#Licensing maintainers = with lib.maintainers; [ piegames ]; }; passthru = { extensionPortalSlug = pname; # Store the extension's UUID, because we might need it at some places extensionUuid = uuid; tests = { gnome-extensions = nixosTests.gnome-extensions; }; }; }; in lib.makeOverridable buildGnomeExtension [result] Failed to update gnomeExtensions.hotel-manager 20 -> 22 https://repology.org/project/gnome:hotel-manager/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath terraform-providers.nomad, using log file: /var/log/nixpkgs-update/terraform-providers.nomad/2024-03-25.log terraform-providers.nomad 0 -> 1 attrpath: terraform-providers.nomad Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.nomad 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.dockerfile-parse, using log file: /var/log/nixpkgs-update/python311Packages.dockerfile-parse/2024-03-25.log python311Packages.dockerfile-parse 0 -> 1 attrpath: python311Packages.dockerfile-parse Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7n2sv8v90ya3vhj580zqlad981y7ldmr-packages.json.drv building '/nix/store/7n2sv8v90ya3vhj580zqlad981y7ldmr-packages.json.drv'... Going to be running update for following packages: - python3.11-dockerfile-parse-2.0.1 Press Enter key to continue... Running update for: - python3.11-dockerfile-parse-2.0.1: UPDATING ... - python3.11-dockerfile-parse-2.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dockerfile-parse 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyviz-comms, using log file: /var/log/nixpkgs-update/python311Packages.pyviz-comms/2024-03-25.log python311Packages.pyviz-comms 0 -> 1 attrpath: python311Packages.pyviz-comms Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6bww28bfbpykr1rhyzix9i9sdpx07py1-packages.json.drv building '/nix/store/6bww28bfbpykr1rhyzix9i9sdpx07py1-packages.json.drv'... Going to be running update for following packages: - python3.11-pyviz_comms-2.2.1 Press Enter key to continue... Running update for: - python3.11-pyviz_comms-2.2.1: UPDATING ... - python3.11-pyviz_comms-2.2.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pyviz-comms/default.nix b/pkgs/development/python-modules/pyviz-comms/default.nix index 4b3678494990..4613afd288f0 100644 --- a/pkgs/development/python-modules/pyviz-comms/default.nix +++ b/pkgs/development/python-modules/pyviz-comms/default.nix @@ -7,11 +7,11 @@ buildPythonPackage rec { pname = "pyviz_comms"; - version = "2.2.1"; + version = "3.0.2"; src = fetchPypi { inherit pname version; - hash = "sha256-omFFuM5D0tk0s8aCbXe5E84QXFKOsuSUyJCz41Jd3zM="; + hash = "sha256-MWffkyZWQWxL1xEgXa1H6Yaj664fMWJY3cJvngFRPvc="; }; propagatedBuildInputs = [ param ]; No auto update branch exists [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python311Packages.pyviz-comms nix build failed. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/_distutils/core.py", line 159, in setup dist.parse_config_files() File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/dist.py", line 627, in parse_config_files pyprojecttoml.apply_configuration(self, filename, ignore_option_errors) File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 67, in apply_configuration config = read_configuration(filepath, True, ignore_option_errors, dist) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 132, in read_configuration return expand_configuration(asdict, root_dir, ignore_option_errors, dist) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 157, in expand_configuration return _ConfigExpander(config, root_dir, ignore_option_errors, dist).expand() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 205, in expand self._expand_all_dynamic(dist, package_dir) File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 243, in _expand_all_dynamic obtained_dynamic = { ^ File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 244, in field: self._obtain(dist, field, package_dir) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 293, in _obtain self._ensure_previously_set(dist, field) File "/nix/store/ia0zlw106xb1d3vk9swyh8hgb0jfaycc-python3.11-setuptools-69.1.1/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 269, in _ensure_previously_set raise InvalidConfigError(msg) setuptools.errors.InvalidConfigError: No configuration found for dynamic 'description'. Some dynamic fields need to be specified via `tool.setuptools.dynamic` others must be specified via the equivalent attribute in `setup.py`. /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1578: pop_var_context: head of shell_variables not a function context [result] Failed to update python311Packages.pyviz-comms 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.opensearch-py, using log file: /var/log/nixpkgs-update/python312Packages.opensearch-py/2024-03-25.log python312Packages.opensearch-py 2.4.2 -> 2.5.0 https://github.com/opensearch-project/opensearch-py/releases attrpath: python312Packages.opensearch-py Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/8zzr18mlxn8b3xyylz475d169l9rl3a0-packages.json.drv building '/nix/store/8zzr18mlxn8b3xyylz475d169l9rl3a0-packages.json.drv'... Going to be running update for following packages: - python3.12-opensearch-py-2.4.2 Press Enter key to continue... Running update for: - python3.12-opensearch-py-2.4.2: UPDATING ... - python3.12-opensearch-py-2.4.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/opensearch-py/default.nix b/pkgs/development/python-modules/opensearch-py/default.nix index da0c13d63d61..0dd102c1aca2 100644 --- a/pkgs/development/python-modules/opensearch-py/default.nix +++ b/pkgs/development/python-modules/opensearch-py/default.nix @@ -27,14 +27,14 @@ buildPythonPackage rec { pname = "opensearch-py"; - version = "2.4.2"; + version = "2.5.0"; pyproject = true; src = fetchFromGitHub { owner = "opensearch-project"; repo = "opensearch-py"; rev = "refs/tags/v${version}"; - hash = "sha256-MPuHdjhsrccKYUIDlDYGoXBbBu/V+q43Puf0e5j8vhU="; + hash = "sha256-q3idblGMwRBwxLohnF6yizos9edNTfhgp8upTDw3R78="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python312Packages.opensearch-py nix build failed. adding 'opensearchpy/helpers/query.py' adding 'opensearchpy/helpers/search.py' adding 'opensearchpy/helpers/signer.py' adding 'opensearchpy/helpers/test.py' adding 'opensearchpy/helpers/update_by_query.py' adding 'opensearchpy/helpers/utils.py' adding 'opensearchpy/helpers/wrappers.py' adding 'opensearchpy/helpers/response/__init__.py' adding 'opensearchpy/helpers/response/aggs.py' adding 'opensearchpy/helpers/response/hit.py' adding 'opensearchpy/plugins/__init__.py' adding 'opensearchpy/plugins/alerting.py' adding 'opensearchpy/plugins/index_management.py' adding 'opensearchpy/plugins/knn.py' adding 'opensearch_py-2.5.0.dist-info/AUTHORS' adding 'opensearch_py-2.5.0.dist-info/LICENSE.txt' adding 'opensearch_py-2.5.0.dist-info/METADATA' adding 'opensearch_py-2.5.0.dist-info/NOTICE.txt' adding 'opensearch_py-2.5.0.dist-info/WHEEL' adding 'opensearch_py-2.5.0.dist-info/top_level.txt' adding 'opensearch_py-2.5.0.dist-info/RECORD' removing build/bdist.linux-x86_64/wheel Successfully built opensearch_py-2.5.0-py2.py3-none-any.whl Finished creating a wheel... Finished executing pypaBuildPhase @nix { "action": "setPhase", "phase": "pythonRuntimeDepsCheckHook" } Running phase: pythonRuntimeDepsCheckHook Executing pythonRuntimeDepsCheck Checking runtime dependencies for opensearch_py-2.5.0-py2.py3-none-any.whl - urllib3<2,>=1.26.18 not satisfied by version 2.2.1 [result] Failed to update python312Packages.opensearch-py 2.4.2 -> 2.5.0 https://github.com/opensearch-project/opensearch-py/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO currently don't know how to update perl [result] Failed to update perl536Packages.DateTimeTimeZone 2.60 -> 2.62 https://repology.org/project/perl:datetime-timezone/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.coveffectsplot, using log file: /var/log/nixpkgs-update/rPackages.coveffectsplot/2024-03-25.log rPackages.coveffectsplot 1.0.4 -> 1.0.5 https://repology.org/project/r:coveffectsplot/versions attrpath: rPackages.coveffectsplot Checking auto update branch... No auto update branch exists Old version 1.0.4" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.coveffectsplot 1.0.4 -> 1.0.5 https://repology.org/project/r:coveffectsplot/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath poezio, using log file: /var/log/nixpkgs-update/poezio/2024-03-25.log poezio 0 -> 1 attrpath: poezio Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/hgig7d1yhrgg8smghlld07bsg8vyd6dq-packages.json.drv building '/nix/store/hgig7d1yhrgg8smghlld07bsg8vyd6dq-packages.json.drv'... Going to be running update for following packages: - poezio-0.13.1 Press Enter key to continue... Running update for: - poezio-0.13.1: UPDATING ... - poezio-0.13.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update poezio 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath vimgolf, using log file: /var/log/nixpkgs-update/vimgolf/2024-03-25.log vimgolf 0 -> 1 attrpath: vimgolf Checking auto update branch... The derivation has no 'version' attribute, so do not know how to figure out the version while doing an updateScript update [result] Failed to update vimgolf 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cmake, using log file: /var/log/nixpkgs-update/cmake/2024-03-25.log cmake 0 -> 1 attrpath: cmake Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/z5xabclr2kin4pzxp9w10gp9ng08l1if-packages.json.drv building '/nix/store/z5xabclr2kin4pzxp9w10gp9ng08l1if-packages.json.drv'... Going to be running update for following packages: - cmake-3.28.3 Press Enter key to continue... Running update for: - cmake-3.28.3: UPDATING ... - cmake-3.28.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/by-name/cm/cmake/package.nix b/pkgs/by-name/cm/cmake/package.nix index a9b29a3245d5..e39baaef8cf6 100644 --- a/pkgs/by-name/cm/cmake/package.nix +++ b/pkgs/by-name/cm/cmake/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation (finalAttrs: { + lib.optionalString isMinimalBuild "-minimal" + lib.optionalString cursesUI "-cursesUI" + lib.optionalString qt5UI "-qt5UI"; - version = "3.28.3"; + version = "3.29.0"; src = fetchurl { url = "https://cmake.org/files/v${lib.versions.majorMinor finalAttrs.version}/cmake-${finalAttrs.version}.tar.gz"; - hash = "sha256-crdXDlyFk95qxKtDO3PqsYxfsyiIBGDIbOMmCBQa1cE="; + hash = "sha256-oGaWMKrnuqSoIoBIvzC2Ivnp/Y7oztuUF1Tp44aGx3g="; }; patches = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/9fgijrv0w5v7amb8waf385h7jg3l5dws-cmake-3.29.0" Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for cmake is: Cross-platform, open-source build system generator meta.homepage for cmake is: https://cmake.org/ meta.changelog for cmake is: https://cmake.org/cmake/help/v3.29/release/3.29.html ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 3.29.0 with grep in /nix/store/9fgijrv0w5v7amb8waf385h7jg3l5dws-cmake-3.29.0 - found 3.29.0 in filename of file in /nix/store/9fgijrv0w5v7amb8waf385h7jg3l5dws-cmake-3.29.0 ---
Rebuild report (if merged into master) (click to expand) ``` 51585 total rebuild path(s) 51585 package rebuild(s) First fifty rebuilds by attrpath ArchiSteamFarm BeatSaberModManager CHOWTapeModel ChowCentaur ChowKick ChowPhaser CuboCore.coreaction CuboCore.corearchiver CuboCore.corefm CuboCore.coregarage CuboCore.corehunt CuboCore.coreimage CuboCore.coreinfo CuboCore.corekeyboard CuboCore.corepad CuboCore.corepaint CuboCore.corepdf CuboCore.corepins CuboCore.corerenamer CuboCore.coreshot CuboCore.corestats CuboCore.corestuff CuboCore.coreterminal CuboCore.coretime CuboCore.coretoppings CuboCore.coreuniverse CuboCore.libcprime CuboCore.libcsys DisnixWebService EmptyEpsilon Fabric HentaiAtHome LAStools LASzip LASzip2 LibreArp LibreArp-lv2 Literate MIDIVisualizer MMA OSCAR OVMF OVMFFull QuadProgpp R SDL SDL2 SDL2_Pango SDL2_gfx ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/9fgijrv0w5v7amb8waf385h7jg3l5dws-cmake-3.29.0 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A cmake https://github.com/r-ryantm/nixpkgs/archive/3eedc01a980ac4be464fd5dd2f22801cba72f5a0.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/3eedc01a980ac4be464fd5dd2f22801cba72f5a0#cmake ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/9fgijrv0w5v7amb8waf385h7jg3l5dws-cmake-3.29.0 ls -la /nix/store/9fgijrv0w5v7amb8waf385h7jg3l5dws-cmake-3.29.0/bin ``` ---

### Pre-merge build results NixPkgs review skipped --- ###### Maintainer pings cc @ttuegel @LnL7 @AndersonTorres for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298979 [result] Success updating cmake 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath yabai, using log file: /var/log/nixpkgs-update/yabai/2024-03-25.log yabai 7.0.2 -> 7.0.3 https://github.com/koekeishiya/yabai/releases attrpath: yabai Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command --extra-experimental-features flakes eval .#yabai --apply "p: builtins.hasAttr \"updateScript\" p" Standard error:  error: … while calling a functor (an attribute set with a '__functor' attribute) at /nix/store/pcyfi18vf89f4dl7483186f43d8k78lb-source/lib/customisation.nix:264:13: 263| in if missingArgs == {} 264| then makeOverridable f allArgs | ^ 265| # This needs to be an abort so it can't be caught with `builtins.tryEval`, … while evaluating a branch condition at /nix/store/pcyfi18vf89f4dl7483186f43d8k78lb-source/lib/customisation.nix:148:7: 147| in 148| if isAttrs result then | ^ 149| result // { (stack trace truncated; use '--show-trace' to show the full trace) error: Unsupported platform x86_64-linux [result] Failed to update yabai 7.0.2 -> 7.0.3 https://github.com/koekeishiya/yabai/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath vcluster, using log file: /var/log/nixpkgs-update/vcluster/2024-03-25.log vcluster 0.19.4 -> 0.19.5 https://github.com/loft-sh/vcluster/releases attrpath: vcluster Checking auto update branch... No auto update branch exists Old version 0.19.4" not present in master derivation file with contents: { lib, go, buildGoModule, fetchFromGitHub, installShellFiles, testers, vcluster }: buildGoModule rec { pname = "vcluster"; version = "0.19.5"; src = fetchFromGitHub { owner = "loft-sh"; repo = "vcluster"; rev = "v${version}"; hash = "sha256-V+Y2LekBYlKZU53BsYCW6ADSMJOxkwSK9hbFGXBaa9o="; }; vendorHash = null; subPackages = [ "cmd/vclusterctl" ]; ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.goVersion=${lib.getVersion go}" ]; nativeBuildInputs = [ installShellFiles ]; # Test is disabled because e2e tests expect k8s. doCheck = false; installPhase = '' runHook preInstall mkdir -p $out/bin install -Dm755 "$GOPATH/bin/vclusterctl" -T $out/bin/vcluster runHook postInstall ''; postInstall = '' installShellCompletion --cmd vcluster \ --bash <($out/bin/vcluster completion bash) \ --fish <($out/bin/vcluster completion fish) \ --zsh <($out/bin/vcluster completion zsh) ''; passthru.tests.version = testers.testVersion { package = vcluster; command = "vcluster --version"; }; meta = { changelog = "https://github.com/loft-sh/vcluster/releases/tag/v${version}"; description = "Create fully functional virtual Kubernetes clusters"; downloadPage = "https://github.com/loft-sh/vcluster"; homepage = "https://www.vcluster.com/"; license = lib.licenses.asl20; mainProgram = "vcluster"; maintainers = with lib.maintainers; [ berryp peterromfeldhk qjoly superherointj ]; }; } [result] Failed to update vcluster 0.19.4 -> 0.19.5 https://github.com/loft-sh/vcluster/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.flit-scm, using log file: /var/log/nixpkgs-update/python311Packages.flit-scm/2024-03-25.log python311Packages.flit-scm 0 -> 1 attrpath: python311Packages.flit-scm Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ccfn4fvj6gpmf06bx4m9gipq3xj4k1cl-packages.json.drv building '/nix/store/ccfn4fvj6gpmf06bx4m9gipq3xj4k1cl-packages.json.drv'... Going to be running update for following packages: - python3.11-flit-scm-1.7.0 Press Enter key to continue... Running update for: - python3.11-flit-scm-1.7.0: UPDATING ... - python3.11-flit-scm-1.7.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.flit-scm 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xlife, using log file: /var/log/nixpkgs-update/xlife/2024-03-25.log xlife 6.7.5 -> 6.7.6 https://repology.org/project/xlife/versions attrpath: xlife Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/graphics/xlife/default.nix b/pkgs/applications/graphics/xlife/default.nix index 482134269d2b..94c2aa949ad7 100644 --- a/pkgs/applications/graphics/xlife/default.nix +++ b/pkgs/applications/graphics/xlife/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation { pname = "xlife"; - version = "6.7.5"; + version = "6.7.6"; src = fetchsvn { url = "https://svn.code.sf.net/p/xlife-cal/xlife/trunk"; rev = "365"; - sha256 = "1gadlcp32s179kd7ypxr8cymd6s060p6z4c2vnx94i8bmiw3nn8h"; + sha256 = "sha256-EFk7eKwLRZK63YKRby4wQJtWPUO5X3/aTCdoMS6jTb0="; }; nativeBuildInputs = with xorg; [ imake gccmakedep ]; rev equal; no update necessary [result] Failed to update xlife 6.7.5 -> 6.7.6 https://repology.org/project/xlife/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyuca, using log file: /var/log/nixpkgs-update/python311Packages.pyuca/2024-03-25.log python311Packages.pyuca 0 -> 1 attrpath: python311Packages.pyuca Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/j502mz12m7c8cpac8fs0nryq9yj9j405-packages.json.drv building '/nix/store/j502mz12m7c8cpac8fs0nryq9yj9j405-packages.json.drv'... Going to be running update for following packages: - python3.11-pyuca-1.2 Press Enter key to continue... Running update for: - python3.11-pyuca-1.2: UPDATING ... - python3.11-pyuca-1.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyuca 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath source-serif, using log file: /var/log/nixpkgs-update/source-serif/2024-03-25.log source-serif 4.005 -> 4.005R https://github.com/adobe-fonts/source-serif/releases attrpath: source-serif Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv building '/nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv'... trying https://github.com/adobe-fonts/source-serif/archive/refs/tags/4.005RR.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/adobe-fonts/source-serif/archive/refs/tags/4.005RR.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'source-serif.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv /nix/store/6ckvyxadb90083dz8ai7ljzx8pxmmjwr-source-serif-4.005R.drv building '/nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv'... trying https://github.com/adobe-fonts/source-serif/archive/refs/tags/4.005RR.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/adobe-fonts/source-serif/archive/refs/tags/4.005RR.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/5glmyfcg5971d3ydk94g7swv6x0xrhfw-source.drv'. error: 1 dependencies of derivation '/nix/store/6ckvyxadb90083dz8ai7ljzx8pxmmjwr-source-serif-4.005R.drv' failed to build [result] Failed to update source-serif 4.005 -> 4.005R https://github.com/adobe-fonts/source-serif/releases [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.audiotools, using log file: /var/log/nixpkgs-update/python311Packages.audiotools/2024-03-25.log python311Packages.audiotools 0 -> 1 attrpath: python311Packages.audiotools Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/80xl7fd29zb2jv1flhq442ab20ldcfqq-packages.json.drv building '/nix/store/80xl7fd29zb2jv1flhq442ab20ldcfqq-packages.json.drv'... Going to be running update for following packages: - python3.11-audiotools-3.1.1 Press Enter key to continue... Running update for: - python3.11-audiotools-3.1.1: UPDATING ... - python3.11-audiotools-3.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.audiotools 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.sortedcollections, using log file: /var/log/nixpkgs-update/python311Packages.sortedcollections/2024-03-25.log python311Packages.sortedcollections 0 -> 1 attrpath: python311Packages.sortedcollections Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/hpai3ji0h4gh4mihglnabb9gdr99rag7-packages.json.drv building '/nix/store/hpai3ji0h4gh4mihglnabb9gdr99rag7-packages.json.drv'... Going to be running update for following packages: - python3.11-sortedcollections-2.1.0 Press Enter key to continue... Running update for: - python3.11-sortedcollections-2.1.0: UPDATING ... - python3.11-sortedcollections-2.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sortedcollections 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.lark, using log file: /var/log/nixpkgs-update/python311Packages.lark/2024-03-25.log python311Packages.lark 0 -> 1 attrpath: python311Packages.lark Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7q6qcd4bwhxl1xl94268k0qvss5n8ssp-packages.json.drv building '/nix/store/7q6qcd4bwhxl1xl94268k0qvss5n8ssp-packages.json.drv'... Going to be running update for following packages: - python3.11-lark-1.1.9 Press Enter key to continue... Running update for: - python3.11-lark-1.1.9: UPDATING ... - python3.11-lark-1.1.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.lark 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.eduvpn-common, using log file: /var/log/nixpkgs-update/python311Packages.eduvpn-common/2024-03-25.log python311Packages.eduvpn-common 0 -> 1 attrpath: python311Packages.eduvpn-common Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/4n2mdvx8ml907mk4g2n6ypvq2b4kmm3k-packages.json.drv building '/nix/store/4n2mdvx8ml907mk4g2n6ypvq2b4kmm3k-packages.json.drv'... Going to be running update for following packages: - python3.11-eduvpn-common-1.2.0 Press Enter key to continue... Running update for: - python3.11-eduvpn-common-1.2.0: UPDATING ... - python3.11-eduvpn-common-1.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.eduvpn-common 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nyx, using log file: /var/log/nixpkgs-update/nyx/2024-03-25.log nyx 0 -> 1 attrpath: nyx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/vfi9jbg7r2m6byrr98ykwcnmkbhh553l-packages.json.drv building '/nix/store/vfi9jbg7r2m6byrr98ykwcnmkbhh553l-packages.json.drv'... Going to be running update for following packages: - nyx-2.1.0 Press Enter key to continue... Running update for: - nyx-2.1.0: UPDATING ... - nyx-2.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update nyx 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath csv2odf, using log file: /var/log/nixpkgs-update/csv2odf/2024-03-25.log csv2odf 0 -> 1 attrpath: csv2odf Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bz855krf7c4k1zzh9y3sl32da4gn10bd-packages.json.drv building '/nix/store/bz855krf7c4k1zzh9y3sl32da4gn10bd-packages.json.drv'... Going to be running update for following packages: - csv2odf-2.09 Press Enter key to continue... Running update for: - csv2odf-2.09: UPDATING ... - csv2odf-2.09: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update csv2odf 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.ncclient, using log file: /var/log/nixpkgs-update/python311Packages.ncclient/2024-03-25.log python311Packages.ncclient 0 -> 1 attrpath: python311Packages.ncclient Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] cannot link '/nix/store/.links/15x4rmykmrc3yqs9km3p0qkcy5jkii4vvdvs55z25jr04ghpzsv2' to '/nix/store/af54nj8a9dd31i0qwzwi805sjyjx1yx4-packages.json.drv': No space left on device this derivation will be built: /nix/store/af54nj8a9dd31i0qwzwi805sjyjx1yx4-packages.json.drv building '/nix/store/af54nj8a9dd31i0qwzwi805sjyjx1yx4-packages.json.drv'... Going to be running update for following packages: - python3.11-ncclient-0.6.15 Press Enter key to continue... Running update for: - python3.11-ncclient-0.6.15: UPDATING ... - python3.11-ncclient-0.6.15: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ncclient 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath discord, using log file: /var/log/nixpkgs-update/discord/2024-03-25.log discord 0 -> 1 attrpath: discord Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] these 2 derivations will be built: /nix/store/fbcbmlrk90fz51x4liyw2lhqvjvd3p59-discord-update-script.drv /nix/store/zc0rccmm6mvlyw1n1x1v805g38pwax2w-packages.json.drv building '/nix/store/fbcbmlrk90fz51x4liyw2lhqvjvd3p59-discord-update-script.drv'... building '/nix/store/zc0rccmm6mvlyw1n1x1v805g38pwax2w-packages.json.drv'... Going to be running update for following packages: - discord-0.0.46 Press Enter key to continue... Running update for: - discord-0.0.46: UPDATING ... - discord-0.0.46: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update discord 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyzipper, using log file: /var/log/nixpkgs-update/python311Packages.pyzipper/2024-03-25.log python311Packages.pyzipper 0 -> 1 attrpath: python311Packages.pyzipper Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/18rdw48rh09ab4blmxqnvakbrr0x44gc-packages.json.drv building '/nix/store/18rdw48rh09ab4blmxqnvakbrr0x44gc-packages.json.drv'... Going to be running update for following packages: - python3.11-pyzipper-0.3.6 Press Enter key to continue... Running update for: - python3.11-pyzipper-0.3.6: UPDATING ... - python3.11-pyzipper-0.3.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyzipper 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bzrtp, using log file: /var/log/nixpkgs-update/bzrtp/2024-03-25.log bzrtp 5.2.111 -> 5.3.34 https://repology.org/project/bzrtp/versions attrpath: bzrtp Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/bzrtp/default.nix b/pkgs/development/libraries/bzrtp/default.nix index 6cbe6fc1899d..7dad383a5ff9 100644 --- a/pkgs/development/libraries/bzrtp/default.nix +++ b/pkgs/development/libraries/bzrtp/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { pname = "bzrtp"; - version = "5.2.111"; + version = "5.3.34"; src = fetchFromGitLab { domain = "gitlab.linphone.org"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { group = "BC"; repo = pname; rev = version; - hash = "sha256-sLvvQhJ9uVt/dx57xs9ftY/ETi46xmyGDH8372zpqj8="; + hash = "sha256-dw4B3sedfFVOM9Uxww2W7o5NyfuntUW2/1Uy4egqHOE="; }; buildInputs = [ bctoolbox sqlite ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A bzrtp nix build failed. -- Detecting C compiler ABI info - done -- Check for working C compiler: /nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/gcc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/g++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Setting install rpath to -- Looking for sqrt in m -- Looking for sqrt in m - found CMake Error at CMakeLists.txt:49 (find_package): By not providing "FindBCToolbox.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "BCToolbox", but CMake did not find one. Could not find a package configuration file provided by "BCToolbox" (requested version 5.3.0) with any of the following names: BCToolboxConfig.cmake bctoolbox-config.cmake Add the installation prefix of "BCToolbox" to CMAKE_PREFIX_PATH or set "BCToolbox_DIR" to a directory containing one of the above files. If "BCToolbox" provides a separate development package or SDK, be sure it has been installed.  -- Configuring incomplete, errors occurred! [result] Failed to update bzrtp 5.2.111 -> 5.3.34 https://repology.org/project/bzrtp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.tidycomm, using log file: /var/log/nixpkgs-update/rPackages.tidycomm/2024-03-25.log rPackages.tidycomm 0.2.1 -> 0.4.1 https://repology.org/project/r:tidycomm/versions attrpath: rPackages.tidycomm Checking auto update branch... No auto update branch exists Old version 0.2.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.tidycomm 0.2.1 -> 0.4.1 https://repology.org/project/r:tidycomm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.fastshap, using log file: /var/log/nixpkgs-update/rPackages.fastshap/2024-03-25.log rPackages.fastshap 0.1.0 -> 0.1.1 https://repology.org/project/r:fastshap/versions attrpath: rPackages.fastshap Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.fastshap 0.1.0 -> 0.1.1 https://repology.org/project/r:fastshap/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.RUnit, using log file: /var/log/nixpkgs-update/rPackages.RUnit/2024-03-25.log rPackages.RUnit 0.4.32 -> 0.4.33 https://repology.org/project/r:runit/versions attrpath: rPackages.RUnit Checking auto update branch... No auto update branch exists Old version 0.4.32" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.RUnit 0.4.32 -> 0.4.33 https://repology.org/project/r:runit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ifstat-legacy, using log file: /var/log/nixpkgs-update/ifstat-legacy/2024-03-25.log ifstat-legacy 1.1 -> 1.1.1 https://repology.org/project/ifstat/versions attrpath: ifstat-legacy Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv building '/nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv'... trying http://gael.roualland.free.fr/ifstat/ifstat-1.1.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download ifstat-1.1.1.tar.gz from any mirror error: builder for '/nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://gael.roualland.free.fr/ifstat/ifstat-1.1.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download ifstat-1.1.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ifstat-legacy.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv /nix/store/mgin6zafz9f0r3ijgh3jvx9yp8cdk9si-ifstat-legacy-1.1.1.drv building '/nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv'... trying http://gael.roualland.free.fr/ifstat/ifstat-1.1.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download ifstat-1.1.1.tar.gz from any mirror error: builder for '/nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://gael.roualland.free.fr/ifstat/ifstat-1.1.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download ifstat-1.1.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/qlb4jmnd2x25gcf210hx53jd56l7irx6-ifstat-1.1.1.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/mgin6zafz9f0r3ijgh3jvx9yp8cdk9si-ifstat-legacy-1.1.1.drv' failed to build [result] Failed to update ifstat-legacy 1.1 -> 1.1.1 https://repology.org/project/ifstat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.paropt, using log file: /var/log/nixpkgs-update/rPackages.paropt/2024-03-25.log rPackages.paropt 0.3.2 -> 0.3.3 https://repology.org/project/r:paropt/versions attrpath: rPackages.paropt Checking auto update branch... No auto update branch exists Old version 0.3.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.paropt 0.3.2 -> 0.3.3 https://repology.org/project/r:paropt/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.mppR, using log file: /var/log/nixpkgs-update/rPackages.mppR/2024-03-25.log rPackages.mppR 1.4.0 -> 1.5.0 https://repology.org/project/r:mppr/versions attrpath: rPackages.mppR Checking auto update branch... No auto update branch exists Old version 1.4.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.mppR 1.4.0 -> 1.5.0 https://repology.org/project/r:mppr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.MsQuality, using log file: /var/log/nixpkgs-update/rPackages.MsQuality/2024-03-25.log rPackages.MsQuality 1.2.0 -> 1.2.1 https://repology.org/project/r:msquality/versions attrpath: rPackages.MsQuality Checking auto update branch... No auto update branch exists Old version 1.2.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.MsQuality 1.2.0 -> 1.2.1 https://repology.org/project/r:msquality/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.graphicalExtremes, using log file: /var/log/nixpkgs-update/rPackages.graphicalExtremes/2024-03-25.log rPackages.graphicalExtremes 0.3.0 -> 0.3.1 https://repology.org/project/r:graphicalextremes/versions attrpath: rPackages.graphicalExtremes Checking auto update branch... No auto update branch exists Old version 0.3.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.graphicalExtremes 0.3.0 -> 0.3.1 https://repology.org/project/r:graphicalextremes/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath obs-studio-plugins.obs-pipewire-audio-capture, using log file: /var/log/nixpkgs-update/obs-studio-plugins.obs-pipewire-audio-capture/2024-03-25.log obs-studio-plugins.obs-pipewire-audio-capture 1.1.3 -> 1.1.4 https://repology.org/project/obs-pipewire-audio-capture/versions attrpath: obs-studio-plugins.obs-pipewire-audio-capture Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update obs-studio-plugins.obs-pipewire-audio-capture 1.1.3 -> 1.1.4 https://repology.org/project/obs-pipewire-audio-capture/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cakelisp, using log file: /var/log/nixpkgs-update/cakelisp/2024-03-25.log cakelisp 0 -> 1 attrpath: cakelisp Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/w3k6qybr6ssi66hmk6bismgjhw9jma2j-packages.json.drv building '/nix/store/w3k6qybr6ssi66hmk6bismgjhw9jma2j-packages.json.drv'... Going to be running update for following packages: - cakelisp-0.3.0-unstable-2024-02-21 Press Enter key to continue... Running update for: - cakelisp-0.3.0-unstable-2024-02-21: UPDATING ... - cakelisp-0.3.0-unstable-2024-02-21: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/compilers/cakelisp/default.nix b/pkgs/development/compilers/cakelisp/default.nix index 9f8939708cec..699172a1630f 100644 --- a/pkgs/development/compilers/cakelisp/default.nix +++ b/pkgs/development/compilers/cakelisp/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation { pname = "cakelisp"; # using unstable as it's the only version that builds against gcc-13 - version = "0.3.0-unstable-2024-02-21"; + version = "unstable-2024-03-21"; src = fetchgit { url = "https://macoy.me/code/macoy/cakelisp"; - rev = "75ce620b265bf83c6952c0093df2b9d4f7f32a54"; - hash = "sha256-X+tWq2QQogy4d042pcVuldc80jcClYtV09Jr91rHJl4="; + rev = "6bde4b8002e4825116f3b18291a012bf1729f497"; + hash = "sha256-jpwVHiDRVa6QoYxsasmiV1IdbBqZj0tU5EBruOHfzYg="; }; buildInputs = [ gcc ]; No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/9v3zsghn3rpc0di3mn6bk74r251kqf7s-cakelisp-unstable-2024-03-21" Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • cakelisp
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for cakelisp is: A performance-oriented Lisp-like language meta.homepage for cakelisp is: https://macoy.me/code/macoy/cakelisp ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found unstable-2024-03-21 in filename of file in /nix/store/9v3zsghn3rpc0di3mn6bk74r251kqf7s-cakelisp-unstable-2024-03-21 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath cakelisp ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/9v3zsghn3rpc0di3mn6bk74r251kqf7s-cakelisp-unstable-2024-03-21 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A cakelisp https://github.com/r-ryantm/nixpkgs/archive/8f0a6fe189ca9ee37ec3cc7817e3e941c457997a.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/8f0a6fe189ca9ee37ec3cc7817e3e941c457997a#cakelisp ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/9v3zsghn3rpc0di3mn6bk74r251kqf7s-cakelisp-unstable-2024-03-21 ls -la /nix/store/9v3zsghn3rpc0di3mn6bk74r251kqf7s-cakelisp-unstable-2024-03-21/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
  • cakelisp
--- ###### Maintainer pings cc @sbond75 for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/298995 [result] Success updating cakelisp 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.qimage2ndarray, using log file: /var/log/nixpkgs-update/python311Packages.qimage2ndarray/2024-03-25.log python311Packages.qimage2ndarray 0 -> 1 attrpath: python311Packages.qimage2ndarray Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/f1p941i3nac60fdbzl9xymqzychqmakj-packages.json.drv building '/nix/store/f1p941i3nac60fdbzl9xymqzychqmakj-packages.json.drv'... Going to be running update for following packages: - python3.11-qimage2ndarray-1.10.0 Press Enter key to continue... Running update for: - python3.11-qimage2ndarray-1.10.0: UPDATING ... - python3.11-qimage2ndarray-1.10.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.qimage2ndarray 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.SQLDataFrame, using log file: /var/log/nixpkgs-update/rPackages.SQLDataFrame/2024-03-25.log rPackages.SQLDataFrame 1.16.0 -> 1.17.0 https://repology.org/project/r:sqldataframe/versions attrpath: rPackages.SQLDataFrame Checking auto update branch... No auto update branch exists Old version 1.16.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.SQLDataFrame 1.16.0 -> 1.17.0 https://repology.org/project/r:sqldataframe/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.flask-openid, using log file: /var/log/nixpkgs-update/python311Packages.flask-openid/2024-03-25.log python311Packages.flask-openid 0 -> 1 attrpath: python311Packages.flask-openid Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/0xn4my9gql8cn4vdzdvnv63vn9n97r35-packages.json.drv building '/nix/store/0xn4my9gql8cn4vdzdvnv63vn9n97r35-packages.json.drv'... Going to be running update for following packages: - python3.11-flask-openid-1.3.0 Press Enter key to continue... Running update for: - python3.11-flask-openid-1.3.0: UPDATING ... - python3.11-flask-openid-1.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.flask-openid 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath haskellPackages.time_1_12_2, using log file: /var/log/nixpkgs-update/haskellPackages.time_1_12_2/2024-03-25.log haskellPackages.time_1_12_2 1.12.2 -> 1.13 https://repology.org/project/haskell:time/versions attrpath: haskellPackages.time_1_12_2 Checking auto update branch... No auto update branch exists Version in attr path haskellPackages.time_1_12_2 not compatible with 1.13 [result] Failed to update haskellPackages.time_1_12_2 1.12.2 -> 1.13 https://repology.org/project/haskell:time/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hfinger, using log file: /var/log/nixpkgs-update/hfinger/2024-03-25.log hfinger 0 -> 1 attrpath: hfinger Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/mgsv2gsfn2bqq1bxsj6cmbbdagdwqvh6-packages.json.drv building '/nix/store/mgsv2gsfn2bqq1bxsj6cmbbdagdwqvh6-packages.json.drv'... Going to be running update for following packages: - hfinger-0.2.2 Press Enter key to continue... Running update for: - hfinger-0.2.2: UPDATING ... - hfinger-0.2.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update hfinger 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pytest-click, using log file: /var/log/nixpkgs-update/python311Packages.pytest-click/2024-03-25.log python311Packages.pytest-click 0 -> 1 attrpath: python311Packages.pytest-click Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/kzpnxg6x9c01lfvdfdxbm0gxyv51ixp3-packages.json.drv building '/nix/store/kzpnxg6x9c01lfvdfdxbm0gxyv51ixp3-packages.json.drv'... Going to be running update for following packages: - python3.11-pytest-click-1.1.0 Press Enter key to continue... Running update for: - python3.11-pytest-click-1.1.0: UPDATING ... - python3.11-pytest-click-1.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytest-click 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.python-ipmi, using log file: /var/log/nixpkgs-update/python311Packages.python-ipmi/2024-03-25.log python311Packages.python-ipmi 0 -> 1 attrpath: python311Packages.python-ipmi Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/m8i0v33fvy371v1bh5fs3ys06m2gd85g-packages.json.drv building '/nix/store/m8i0v33fvy371v1bh5fs3ys06m2gd85g-packages.json.drv'... Going to be running update for following packages: - python3.11-python-ipmi-0.5.5 Press Enter key to continue... Running update for: - python3.11-python-ipmi-0.5.5: UPDATING ... - python3.11-python-ipmi-0.5.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-ipmi 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.matchpy, using log file: /var/log/nixpkgs-update/python311Packages.matchpy/2024-03-25.log python311Packages.matchpy 0 -> 1 attrpath: python311Packages.matchpy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/wjl3vbr3sk0xbxnsfjlbll4xrlw3cial-packages.json.drv building '/nix/store/wjl3vbr3sk0xbxnsfjlbll4xrlw3cial-packages.json.drv'... Going to be running update for following packages: - python3.11-matchpy-0.5.5 Press Enter key to continue... Running update for: - python3.11-matchpy-0.5.5: UPDATING ... - python3.11-matchpy-0.5.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.matchpy 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.google-cloud-appengine-logging, using log file: /var/log/nixpkgs-update/python311Packages.google-cloud-appengine-logging/2024-03-25.log python311Packages.google-cloud-appengine-logging 0 -> 1 attrpath: python311Packages.google-cloud-appengine-logging Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/gr3cg6kcxlbdysvd6p4l4hi45gn2w7bd-packages.json.drv building '/nix/store/gr3cg6kcxlbdysvd6p4l4hi45gn2w7bd-packages.json.drv'... Going to be running update for following packages: - python3.11-google-cloud-appengine-logging-1.4.3 Press Enter key to continue... Running update for: - python3.11-google-cloud-appengine-logging-1.4.3: UPDATING ... - python3.11-google-cloud-appengine-logging-1.4.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.google-cloud-appengine-logging 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.optimum, using log file: /var/log/nixpkgs-update/python311Packages.optimum/2024-03-25.log python311Packages.optimum 0 -> 1 attrpath: python311Packages.optimum Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/77l4nsdjbvz8awfvxr1p56msmiyg0jcr-packages.json.drv building '/nix/store/77l4nsdjbvz8awfvxr1p56msmiyg0jcr-packages.json.drv'... Going to be running update for following packages: - python3.11-optimum-1.17.1 Press Enter key to continue... Running update for: - python3.11-optimum-1.17.1: UPDATING ... - python3.11-optimum-1.17.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/optimum/default.nix b/pkgs/development/python-modules/optimum/default.nix index d30873b91537..2b8a9415fc2c 100644 --- a/pkgs/development/python-modules/optimum/default.nix +++ b/pkgs/development/python-modules/optimum/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "optimum"; - version = "1.17.1"; + version = "1.18.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -31,7 +31,7 @@ buildPythonPackage rec { owner = "huggingface"; repo = "optimum"; rev = "refs/tags/v${version}"; - hash = "sha256-21y7pFRCZqwNaZR+TcXH2KIK5IZuLVq0wgIQqByyEf8="; + hash = "sha256-svNavPO/3ARqcBDpvaAdbbSqFpzgUY72vy2J1d4Bt90="; }; propagatedBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/6gjyb6xbjqjv93vivq5wl5qdyba443ch-python3.11-optimum-1.18.0" Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 4 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 7 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 5 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 6 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 8 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 14 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 9 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 10 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 13 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 12 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 Waiting for OfBorg: https://events.ofborg.org/stats.php's evaluator.messages.waiting = 11 [check][nixpkgs-review] Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
2 packages marked as broken and skipped:
  • python311Packages.openllm
  • python311Packages.openllm.dist
4 packages built:
  • python311Packages.optimum
  • python311Packages.optimum.dist
  • python312Packages.optimum
  • python312Packages.optimum.dist
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from passthru.updateScript. meta.description for python311Packages.optimum is: Accelerate training and inference of 🤗 Transformers and 🤗 Diffusers with easy to use hardware optimization tools meta.homepage for python311Packages.optimum is: https://github.com/huggingface/optimum meta.changelog for python311Packages.optimum is: https://github.com/huggingface/optimum/releases/tag/refs/tags/v1.18.0 ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.18.0 with grep in /nix/store/6gjyb6xbjqjv93vivq5wl5qdyba443ch-python3.11-optimum-1.18.0 - found 1.18.0 in filename of file in /nix/store/6gjyb6xbjqjv93vivq5wl5qdyba443ch-python3.11-optimum-1.18.0 ---
Rebuild report (if merged into master) (click to expand) ``` 3 total rebuild path(s) 3 package rebuild(s) First fifty rebuilds by attrpath python311Packages.openllm python311Packages.optimum python312Packages.optimum ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/6gjyb6xbjqjv93vivq5wl5qdyba443ch-python3.11-optimum-1.18.0 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A python311Packages.optimum https://github.com/r-ryantm/nixpkgs/archive/b40b968abeecff504b165fa8bd557d93aebbe762.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/b40b968abeecff504b165fa8bd557d93aebbe762#python311Packages.optimum ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/6gjyb6xbjqjv93vivq5wl5qdyba443ch-python3.11-optimum-1.18.0 ls -la /nix/store/6gjyb6xbjqjv93vivq5wl5qdyba443ch-python3.11-optimum-1.18.0/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review --extra-nixpkgs-config '{ allowInsecurePredicate = x: true; }'` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
2 packages marked as broken and skipped:
  • python311Packages.openllm
  • python311Packages.openllm.dist
4 packages built:
  • python311Packages.optimum
  • python311Packages.optimum.dist
  • python312Packages.optimum
  • python312Packages.optimum.dist
--- ###### Maintainer pings cc @natsukium for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/299018 [result] Success updating python311Packages.optimum 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.aiobotocore, using log file: /var/log/nixpkgs-update/python311Packages.aiobotocore/2024-03-25.log python311Packages.aiobotocore 0 -> 1 attrpath: python311Packages.aiobotocore Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/l2hrwhwz53l5a8mzr2f67671n5fa119h-packages.json.drv building '/nix/store/l2hrwhwz53l5a8mzr2f67671n5fa119h-packages.json.drv'... Going to be running update for following packages: - python3.11-aiobotocore-2.12.1 Press Enter key to continue... Running update for: - python3.11-aiobotocore-2.12.1: UPDATING ... - python3.11-aiobotocore-2.12.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aiobotocore 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nextinspace, using log file: /var/log/nixpkgs-update/nextinspace/2024-03-25.log nextinspace 0 -> 1 attrpath: nextinspace Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/rfp30f1qc58h0yfzhkisw4lsk9i17g81-packages.json.drv building '/nix/store/rfp30f1qc58h0yfzhkisw4lsk9i17g81-packages.json.drv'... Going to be running update for following packages: - nextinspace-2.0.5 Press Enter key to continue... Running update for: - nextinspace-2.0.5: UPDATING ... - nextinspace-2.0.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update nextinspace 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnomeExtensions.start-overlay-in-application-view, using log file: /var/log/nixpkgs-update/gnomeExtensions.start-overlay-in-application-view/2024-03-25.log gnomeExtensions.start-overlay-in-application-view 6 -> 436.1.0 https://repology.org/project/gnome:start-overlay-in-application-view/versions attrpath: gnomeExtensions.start-overlay-in-application-view Checking auto update branch... No auto update branch exists Old version 6" not present in master derivation file with contents: { pkgs, lib, stdenv, fetchzip, nixosTests }: let buildGnomeExtension = { # Every gnome extension has a UUID. It's the name of the extension folder once unpacked # and can always be found in the metadata.json of every extension. uuid, name, pname, description, # extensions.gnome.org extension URL link, # Extension version numbers are integers version, sha256, # Hex-encoded string of JSON bytes metadata, }: stdenv.mkDerivation { pname = "gnome-shell-extension-${pname}"; version = builtins.toString version; src = fetchzip { url = "https://extensions.gnome.org/extension-data/${ builtins.replaceStrings [ "@" ] [ "" ] uuid }.v${builtins.toString version}.shell-extension.zip"; inherit sha256; stripRoot = false; # The download URL may change content over time. This is because the # metadata.json is automatically generated, and parts of it can be changed # without making a new release. We simply substitute the possibly changed fields # with their content from when we last updated, and thus get a deterministic output # hash. postFetch = '' echo "${metadata}" | base64 --decode > $out/metadata.json ''; }; nativeBuildInputs = with pkgs; [ buildPackages.glib ]; buildPhase = '' runHook preBuild if [ -d schemas ]; then glib-compile-schemas --strict schemas fi runHook postBuild ''; installPhase = '' runHook preInstall mkdir -p $out/share/gnome-shell/extensions/ cp -r -T . $out/share/gnome-shell/extensions/${uuid} runHook postInstall ''; meta = { description = builtins.head (lib.splitString "\n" description); longDescription = description; homepage = link; license = lib.licenses.gpl2Plus; # https://wiki.gnome.org/Projects/GnomeShell/Extensions/Review#Licensing maintainers = with lib.maintainers; [ piegames ]; }; passthru = { extensionPortalSlug = pname; # Store the extension's UUID, because we might need it at some places extensionUuid = uuid; tests = { gnome-extensions = nixosTests.gnome-extensions; }; }; }; in lib.makeOverridable buildGnomeExtension [result] Failed to update gnomeExtensions.start-overlay-in-application-view 6 -> 436.1.0 https://repology.org/project/gnome:start-overlay-in-application-view/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.sphinx, using log file: /var/log/nixpkgs-update/python311Packages.sphinx/2024-03-25.log python311Packages.sphinx 0 -> 1 attrpath: python311Packages.sphinx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/m7vr3byibrnwyhdfay2jl6334k9js031-packages.json.drv building '/nix/store/m7vr3byibrnwyhdfay2jl6334k9js031-packages.json.drv'... Going to be running update for following packages: - python3.11-sphinx-7.2.6 Press Enter key to continue... Running update for: - python3.11-sphinx-7.2.6: UPDATING ... - python3.11-sphinx-7.2.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sphinx 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.skidl, using log file: /var/log/nixpkgs-update/python311Packages.skidl/2024-03-25.log python311Packages.skidl 0 -> 1 attrpath: python311Packages.skidl Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/q8mwj47d3c4l1chx57lpaai7dadi3fby-packages.json.drv building '/nix/store/q8mwj47d3c4l1chx57lpaai7dadi3fby-packages.json.drv'... Going to be running update for following packages: - python3.11-skidl-1.0.0 Press Enter key to continue... Running update for: - python3.11-skidl-1.0.0: UPDATING ... - python3.11-skidl-1.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.skidl 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.hawkesbow, using log file: /var/log/nixpkgs-update/rPackages.hawkesbow/2024-03-25.log rPackages.hawkesbow 1.0.2 -> 1.0.3 https://repology.org/project/r:hawkesbow/versions attrpath: rPackages.hawkesbow Checking auto update branch... No auto update branch exists Old version 1.0.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.hawkesbow 1.0.2 -> 1.0.3 https://repology.org/project/r:hawkesbow/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath deepin.dtkgui, using log file: /var/log/nixpkgs-update/deepin.dtkgui/2024-03-25.log deepin.dtkgui 5.6.22 -> 5.6.25 https://repology.org/project/dtkgui/versions attrpath: deepin.dtkgui deepin packages are upgraded in lockstep https://github.com/NixOS/nixpkgs/pull/52327#issuecomment-447684194 [result] Failed to update deepin.dtkgui 5.6.22 -> 5.6.25 https://repology.org/project/dtkgui/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.can, using log file: /var/log/nixpkgs-update/python311Packages.can/2024-03-25.log python311Packages.can 0 -> 1 attrpath: python311Packages.can Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/8w179xr98kk28p1d56828q4xxayq2f78-packages.json.drv building '/nix/store/8w179xr98kk28p1d56828q4xxayq2f78-packages.json.drv'... Going to be running update for following packages: - python3.11-can-4.3.1 Press Enter key to continue... Running update for: - python3.11-can-4.3.1: UPDATING ... - python3.11-can-4.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.can 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.aiosmtplib, using log file: /var/log/nixpkgs-update/python311Packages.aiosmtplib/2024-03-25.log python311Packages.aiosmtplib 0 -> 1 attrpath: python311Packages.aiosmtplib Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/v0aay5556ncy9qy0j5l5x7n4pnxwllm7-packages.json.drv building '/nix/store/v0aay5556ncy9qy0j5l5x7n4pnxwllm7-packages.json.drv'... Going to be running update for following packages: - python3.11-aiosmtplib-3.0.1 Press Enter key to continue... Running update for: - python3.11-aiosmtplib-3.0.1: UPDATING ... - python3.11-aiosmtplib-3.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aiosmtplib 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.circuit-webhook, using log file: /var/log/nixpkgs-update/python311Packages.circuit-webhook/2024-03-25.log python311Packages.circuit-webhook 0 -> 1 attrpath: python311Packages.circuit-webhook Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/5m4gfs54z4pkzwirvgk6wdw2bi0516k6-packages.json.drv building '/nix/store/5m4gfs54z4pkzwirvgk6wdw2bi0516k6-packages.json.drv'... Going to be running update for following packages: - python3.11-circuit-webhook-1.0.1 Press Enter key to continue... Running update for: - python3.11-circuit-webhook-1.0.1: UPDATING ... - python3.11-circuit-webhook-1.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.circuit-webhook 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hyprnome, using log file: /var/log/nixpkgs-update/hyprnome/2024-03-25.log hyprnome 0 -> 1 attrpath: hyprnome Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] skipping because derivation has updateScript [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/h06gnlxh5xh5vx9vs4yxpaa8p2m0id7b-packages.json.drv building '/nix/store/h06gnlxh5xh5vx9vs4yxpaa8p2m0id7b-packages.json.drv'... Going to be running update for following packages: - hyprnome-0.2.0 Press Enter key to continue... Running update for: - hyprnome-0.2.0: UPDATING ... - hyprnome-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update hyprnome 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.parsermd, using log file: /var/log/nixpkgs-update/rPackages.parsermd/2024-03-25.log rPackages.parsermd 0.1.2 -> 0.1.3 https://repology.org/project/r:parsermd/versions attrpath: rPackages.parsermd Checking auto update branch... No auto update branch exists Old version 0.1.2" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.parsermd 0.1.2 -> 0.1.3 https://repology.org/project/r:parsermd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath octodns-providers.gandi, using log file: /var/log/nixpkgs-update/octodns-providers.gandi/2024-03-25.log octodns-providers.gandi 0 -> 1 attrpath: octodns-providers.gandi Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/hk6nrsgfwmyccq0jzfmya9sv7rsy1qq0-packages.json.drv building '/nix/store/hk6nrsgfwmyccq0jzfmya9sv7rsy1qq0-packages.json.drv'... Going to be running update for following packages: - python3.11-octodns-gandi-0.0.3 Press Enter key to continue... Running update for: - python3.11-octodns-gandi-0.0.3: UPDATING ... - python3.11-octodns-gandi-0.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update octodns-providers.gandi 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.face, using log file: /var/log/nixpkgs-update/python311Packages.face/2024-03-25.log python311Packages.face 0 -> 1 attrpath: python311Packages.face Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/57k45n7dl2jpsmy12fl57vc12n34hfcy-packages.json.drv building '/nix/store/57k45n7dl2jpsmy12fl57vc12n34hfcy-packages.json.drv'... Going to be running update for following packages: - python3.11-face-22.0.0 Press Enter key to continue... Running update for: - python3.11-face-22.0.0: UPDATING ... - python3.11-face-22.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.face 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bcompare, using log file: /var/log/nixpkgs-update/bcompare/2024-03-25.log bcompare 4.4.6.27483 -> 4.4.7.28397 https://repology.org/project/bcompare/versions attrpath: bcompare Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update bcompare 4.4.6.27483 -> 4.4.7.28397 https://repology.org/project/bcompare/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath terraform-providers.temporalcloud, using log file: /var/log/nixpkgs-update/terraform-providers.temporalcloud/2024-03-25.log terraform-providers.temporalcloud 0 -> 1 attrpath: terraform-providers.temporalcloud Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.temporalcloud 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.scrapy, using log file: /var/log/nixpkgs-update/python311Packages.scrapy/2024-03-25.log python311Packages.scrapy 0 -> 1 attrpath: python311Packages.scrapy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/4ffiy5pwascbr632wr3rxrlh72gj3r8l-packages.json.drv building '/nix/store/4ffiy5pwascbr632wr3rxrlh72gj3r8l-packages.json.drv'... Going to be running update for following packages: - python3.11-scrapy-2.11.1 Press Enter key to continue... Running update for: - python3.11-scrapy-2.11.1: UPDATING ... - python3.11-scrapy-2.11.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.scrapy 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.opentelemetry-instrumentation-grpc, using log file: /var/log/nixpkgs-update/python311Packages.opentelemetry-instrumentation-grpc/2024-03-25.log python311Packages.opentelemetry-instrumentation-grpc 0 -> 1 attrpath: python311Packages.opentelemetry-instrumentation-grpc Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9ffp70cxn926wcqjai3dsab0s4rrib5d-packages.json.drv building '/nix/store/9ffp70cxn926wcqjai3dsab0s4rrib5d-packages.json.drv'... Going to be running update for following packages: - python3.11-opentelemetry-instrumentation-grpc-0.44b0 Press Enter key to continue... Running update for: - python3.11-opentelemetry-instrumentation-grpc-0.44b0: UPDATING ... - python3.11-opentelemetry-instrumentation-grpc-0.44b0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.opentelemetry-instrumentation-grpc 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath v8, using log file: /var/log/nixpkgs-update/v8/2024-03-25.log v8 9.7.106.18 -> 12.1.285.24 https://repology.org/project/v8/versions attrpath: v8 Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update v8 9.7.106.18 -> 12.1.285.24 https://repology.org/project/v8/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.dbutils, using log file: /var/log/nixpkgs-update/python311Packages.dbutils/2024-03-25.log python311Packages.dbutils 0 -> 1 attrpath: python311Packages.dbutils Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/51jycnzkl1zdkblsd7c3k97iq85bhi80-packages.json.drv building '/nix/store/51jycnzkl1zdkblsd7c3k97iq85bhi80-packages.json.drv'... Going to be running update for following packages: - python3.11-dbutils-3.0.3 Press Enter key to continue... Running update for: - python3.11-dbutils-3.0.3: UPDATING ... - python3.11-dbutils-3.0.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/dbutils/default.nix b/pkgs/development/python-modules/dbutils/default.nix index 570f770e7777..6ad343870470 100644 --- a/pkgs/development/python-modules/dbutils/default.nix +++ b/pkgs/development/python-modules/dbutils/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "dbutils"; - version = "3.0.3"; + version = "3.1.0"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -15,7 +15,7 @@ buildPythonPackage rec { src = fetchPypi { inherit version; pname = "DBUtils"; - hash = "sha256-jkhWWxKtK0sfIU3gKU3utLKFePWyq7QNaMKSS2TX4Ac="; + hash = "sha256-6lKLoRBjJA7qgjRevG98yTJMBuQulCCwC80kWpW/zCQ="; }; nativeCheckInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python311Packages.dbutils nix build failed. Sourcing python-catch-conflicts-hook.sh Sourcing setuptools-check-hook Using setuptoolsCheckPhase Sourcing pytest-check-hook Using pytestCheckPhase Removing setuptoolsCheckPhase @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/p2fykn8viaffhksdw0wa3xxqivpg8a2c-DBUtils-3.1.0.tar.gz source root is DBUtils-3.1.0 setting SOURCE_DATE_EPOCH to timestamp 1710681450 of file DBUtils-3.1.0/setup.cfg @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase no configure script, doing nothing @nix { "action": "setPhase", "phase": "buildPhase" } Running phase: buildPhase Executing setuptoolsBuildPhase Traceback (most recent call last): File "/build/DBUtils-3.1.0/nix_run_setup", line 8, in exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec')) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/tokenize.py", line 396, in open buffer = _builtin_open(filename, 'rb') ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: 'setup.py' /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1578: pop_var_context: head of shell_variables not a function context [result] Failed to update python311Packages.dbutils 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyrect, using log file: /var/log/nixpkgs-update/python311Packages.pyrect/2024-03-25.log python311Packages.pyrect 0 -> 1 attrpath: python311Packages.pyrect Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7qbaila7ljnqqqi0mk5grzhds2gz81if-packages.json.drv building '/nix/store/7qbaila7ljnqqqi0mk5grzhds2gz81if-packages.json.drv'... Going to be running update for following packages: - python3.11-pyrect-0.2.0 Press Enter key to continue... Running update for: - python3.11-pyrect-0.2.0: UPDATING ... - python3.11-pyrect-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyrect 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pure-python-adb-homeassistant, using log file: /var/log/nixpkgs-update/python311Packages.pure-python-adb-homeassistant/2024-03-25.log python311Packages.pure-python-adb-homeassistant 0 -> 1 attrpath: python311Packages.pure-python-adb-homeassistant Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/h9mwd2jijc4k7k8awvjslsv2hvjkwx2r-packages.json.drv building '/nix/store/h9mwd2jijc4k7k8awvjslsv2hvjkwx2r-packages.json.drv'... Going to be running update for following packages: - python3.11-pure-python-adb-homeassistant-0.1.7.dev0 Press Enter key to continue... Running update for: - python3.11-pure-python-adb-homeassistant-0.1.7.dev0: UPDATING ... - python3.11-pure-python-adb-homeassistant-0.1.7.dev0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pure-python-adb-homeassistant 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pocket-updater-utility, using log file: /var/log/nixpkgs-update/pocket-updater-utility/2024-03-25.log pocket-updater-utility 0 -> 1 attrpath: pocket-updater-utility Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/dk0hmhg5a0khd7xf0zr72763qg8gqxld-packages.json.drv building '/nix/store/dk0hmhg5a0khd7xf0zr72763qg8gqxld-packages.json.drv'... Going to be running update for following packages: - pupdate-3.9.0 Press Enter key to continue... Running update for: - pupdate-3.9.0: UPDATING ... - pupdate-3.9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pocket-updater-utility 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pydevd, using log file: /var/log/nixpkgs-update/python311Packages.pydevd/2024-03-25.log python311Packages.pydevd 0 -> 1 attrpath: python311Packages.pydevd Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/jk52kvf26spp4sair71biajcww49yyz3-packages.json.drv building '/nix/store/jk52kvf26spp4sair71biajcww49yyz3-packages.json.drv'... Going to be running update for following packages: - python3.11-pydevd-2.10.0 Press Enter key to continue... Running update for: - python3.11-pydevd-2.10.0: UPDATING ... - python3.11-pydevd-2.10.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pydevd 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xmrig-mo, using log file: /var/log/nixpkgs-update/xmrig-mo/2024-03-25.log xmrig-mo 6.21.0-mo2 -> 6.21.1 https://repology.org/project/xmrig-mo/versions attrpath: xmrig-mo Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update xmrig-mo 6.21.0-mo2 -> 6.21.1 https://repology.org/project/xmrig-mo/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.ledgerblue, using log file: /var/log/nixpkgs-update/python311Packages.ledgerblue/2024-03-25.log python311Packages.ledgerblue 0 -> 1 attrpath: python311Packages.ledgerblue Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7kzvdkyqca4grhdispphzgjdzmz13mvn-packages.json.drv building '/nix/store/7kzvdkyqca4grhdispphzgjdzmz13mvn-packages.json.drv'... Going to be running update for following packages: - python3.11-ledgerblue-0.1.48 Press Enter key to continue... Running update for: - python3.11-ledgerblue-0.1.48: UPDATING ... - python3.11-ledgerblue-0.1.48: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ledgerblue 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pantheon.switchboard-plug-printers, using log file: /var/log/nixpkgs-update/pantheon.switchboard-plug-printers/2024-03-25.log pantheon.switchboard-plug-printers 0 -> 1 attrpath: pantheon.switchboard-plug-printers Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/54p6h19pzy3f6dmgv1nf9wg2d27rd6bl-packages.json.drv building '/nix/store/54p6h19pzy3f6dmgv1nf9wg2d27rd6bl-packages.json.drv'... Going to be running update for following packages: - switchboard-plug-printers-2.2.1 Press Enter key to continue... Running update for: - switchboard-plug-printers-2.2.1: UPDATING ... - switchboard-plug-printers-2.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pantheon.switchboard-plug-printers 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.sniffio, using log file: /var/log/nixpkgs-update/python311Packages.sniffio/2024-03-25.log python311Packages.sniffio 0 -> 1 attrpath: python311Packages.sniffio Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/f51zqh0yvm5dxv13svdkqw67lprnjpc8-packages.json.drv building '/nix/store/f51zqh0yvm5dxv13svdkqw67lprnjpc8-packages.json.drv'... Going to be running update for following packages: - python3.11-sniffio-1.3.1 Press Enter key to continue... Running update for: - python3.11-sniffio-1.3.1: UPDATING ... - python3.11-sniffio-1.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sniffio 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath s3ql, using log file: /var/log/nixpkgs-update/s3ql/2024-03-25.log s3ql 0 -> 1 attrpath: s3ql Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/qahpwifyqaninji45lfbqdmjhcb8zl74-packages.json.drv building '/nix/store/qahpwifyqaninji45lfbqdmjhcb8zl74-packages.json.drv'... cannot link '/nix/store/.links/0384zy399zxmh4i9w24sbz96pfy6ml9vpi5cb7ackg19285sr162' to '/nix/store/6hgp6353aycki8fhlc99mzl6fcls5k1y-packages.json': No space left on device Going to be running update for following packages: - s3ql-4.0.0 Press Enter key to continue... Running update for: - s3ql-4.0.0: UPDATING ... - s3ql-4.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update s3ql 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.venstarcolortouch, using log file: /var/log/nixpkgs-update/python311Packages.venstarcolortouch/2024-03-25.log python311Packages.venstarcolortouch 0 -> 1 attrpath: python311Packages.venstarcolortouch Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9bgpyxmg4pbshasq0yhisi4m7an9p2yp-packages.json.drv building '/nix/store/9bgpyxmg4pbshasq0yhisi4m7an9p2yp-packages.json.drv'... Going to be running update for following packages: - python3.11-venstarcolortouch-0.19 Press Enter key to continue... Running update for: - python3.11-venstarcolortouch-0.19: UPDATING ... - python3.11-venstarcolortouch-0.19: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.venstarcolortouch 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath r128gain, using log file: /var/log/nixpkgs-update/r128gain/2024-03-25.log r128gain 0 -> 1 attrpath: r128gain Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/mnkmrg2bq852rgpxy2xgbr24prbg8ylc-packages.json.drv building '/nix/store/mnkmrg2bq852rgpxy2xgbr24prbg8ylc-packages.json.drv'... Going to be running update for following packages: - r128gain-1.0.3 Press Enter key to continue... Running update for: - r128gain-1.0.3: UPDATING ... - r128gain-1.0.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/applications/audio/r128gain/default.nix b/pkgs/applications/audio/r128gain/default.nix index 6cf7f41f10ce..3575d717738f 100644 --- a/pkgs/applications/audio/r128gain/default.nix +++ b/pkgs/applications/audio/r128gain/default.nix @@ -9,13 +9,13 @@ python3Packages.buildPythonApplication rec { pname = "r128gain"; - version = "1.0.3"; + version = "1.0.7"; src = fetchFromGitHub { owner = "desbma"; repo = "r128gain"; rev = version; - sha256 = "0w2i2szajv1vcmc96w0fczdr8xc28ijcf1gdg180f21gi6yh96sc"; + sha256 = "JyKacDqjIKTNl2GjbJPkgbakF8HR4Jd4czAtOaemDH8="; }; patches = [ No auto update branch exists There might already be an open PR for this update: - r128gain: 1.0.3 -> 1.0.7 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/239196" [result] Failed to update r128gain 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.click, using log file: /var/log/nixpkgs-update/python311Packages.click/2024-03-25.log python311Packages.click 0 -> 1 attrpath: python311Packages.click Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/8xvzwl98mvvwisgz3hkda78lql445lzy-packages.json.drv building '/nix/store/8xvzwl98mvvwisgz3hkda78lql445lzy-packages.json.drv'... Going to be running update for following packages: - python3.11-click-8.1.7 Press Enter key to continue... Running update for: - python3.11-click-8.1.7: UPDATING ... - python3.11-click-8.1.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.click 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.speechbrain, using log file: /var/log/nixpkgs-update/python311Packages.speechbrain/2024-03-25.log python311Packages.speechbrain 0 -> 1 attrpath: python311Packages.speechbrain Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/g32ld50mdd6cdcnnrkkk1qw305fqb8bz-packages.json.drv building '/nix/store/g32ld50mdd6cdcnnrkkk1qw305fqb8bz-packages.json.drv'... Going to be running update for following packages: - python3.11-speechbrain-1.0.0 Press Enter key to continue... Running update for: - python3.11-speechbrain-1.0.0: UPDATING ... - python3.11-speechbrain-1.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.speechbrain 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.django-rest-auth, using log file: /var/log/nixpkgs-update/python311Packages.django-rest-auth/2024-03-25.log python311Packages.django-rest-auth 0 -> 1 attrpath: python311Packages.django-rest-auth Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/xspx3dzbhch5pdjmb7z1gxi1hqrwhjsw-packages.json.drv building '/nix/store/xspx3dzbhch5pdjmb7z1gxi1hqrwhjsw-packages.json.drv'... Going to be running update for following packages: - python3.11-django-rest-auth-0.9.5 Press Enter key to continue... Running update for: - python3.11-django-rest-auth-0.9.5: UPDATING ... - python3.11-django-rest-auth-0.9.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.django-rest-auth 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.mkdocstrings-python, using log file: /var/log/nixpkgs-update/python311Packages.mkdocstrings-python/2024-03-25.log python311Packages.mkdocstrings-python 0 -> 1 attrpath: python311Packages.mkdocstrings-python Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/f4kafgzrmqh9gav6jp95ci8mw64s5c19-packages.json.drv building '/nix/store/f4kafgzrmqh9gav6jp95ci8mw64s5c19-packages.json.drv'... Going to be running update for following packages: - python3.11-mkdocstrings-python-1.9.0 Press Enter key to continue... Running update for: - python3.11-mkdocstrings-python-1.9.0: UPDATING ... - python3.11-mkdocstrings-python-1.9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mkdocstrings-python 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.flipr-api, using log file: /var/log/nixpkgs-update/python311Packages.flipr-api/2024-03-25.log python311Packages.flipr-api 0 -> 1 attrpath: python311Packages.flipr-api Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/1snr8yhcirg6v4dm9g3d1j94inh66k5v-packages.json.drv building '/nix/store/1snr8yhcirg6v4dm9g3d1j94inh66k5v-packages.json.drv'... Going to be running update for following packages: - python3.11-flipr-api-1.5.1 Press Enter key to continue... Running update for: - python3.11-flipr-api-1.5.1: UPDATING ... - python3.11-flipr-api-1.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.flipr-api 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyowm, using log file: /var/log/nixpkgs-update/python311Packages.pyowm/2024-03-25.log python311Packages.pyowm 0 -> 1 attrpath: python311Packages.pyowm Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/b3g093m0ndp396r3zy0hrnd00krq4w68-packages.json.drv building '/nix/store/b3g093m0ndp396r3zy0hrnd00krq4w68-packages.json.drv'... Going to be running update for following packages: - python3.11-pyowm-3.3.0 Press Enter key to continue... Running update for: - python3.11-pyowm-3.3.0: UPDATING ... - python3.11-pyowm-3.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyowm 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pycxx, using log file: /var/log/nixpkgs-update/python311Packages.pycxx/2024-03-25.log python311Packages.pycxx 0 -> 1 attrpath: python311Packages.pycxx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/rygvjfqisqiy77y374kgypf80yv012yx-packages.json.drv building '/nix/store/rygvjfqisqiy77y374kgypf80yv012yx-packages.json.drv'... Going to be running update for following packages: - python3.11-pycxx-7.1.4 Press Enter key to continue... Running update for: - python3.11-pycxx-7.1.4: UPDATING ... - python3.11-pycxx-7.1.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pycxx 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath aspellDicts.be, using log file: /var/log/nixpkgs-update/aspellDicts.be/2024-03-25.log aspellDicts.be 0 -> 1 attrpath: aspellDicts.be Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] these 2 derivations will be built: /nix/store/3jjk8abmyirj6gqqipxcb7zb2z92i3l9-update-aspellDict-be.drv /nix/store/pwq8s4n3vyj830rd261lq8kd3rxxii2k-packages.json.drv building '/nix/store/3jjk8abmyirj6gqqipxcb7zb2z92i3l9-update-aspellDict-be.drv'... building '/nix/store/pwq8s4n3vyj830rd261lq8kd3rxxii2k-packages.json.drv'... Going to be running update for following packages: - aspell-dict-be-0.01 Press Enter key to continue... Running update for: - aspell-dict-be-0.01: UPDATING ... - aspell-dict-be-0.01: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update aspellDicts.be 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.mongoengine, using log file: /var/log/nixpkgs-update/python311Packages.mongoengine/2024-03-25.log python311Packages.mongoengine 0 -> 1 attrpath: python311Packages.mongoengine Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/axsxwdmyrskg4ir7lm7hyp07d6qmcpib-packages.json.drv building '/nix/store/axsxwdmyrskg4ir7lm7hyp07d6qmcpib-packages.json.drv'... Going to be running update for following packages: - python3.11-mongoengine-0.28.2 Press Enter key to continue... Running update for: - python3.11-mongoengine-0.28.2: UPDATING ... - python3.11-mongoengine-0.28.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mongoengine 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.dissect-cim, using log file: /var/log/nixpkgs-update/python311Packages.dissect-cim/2024-03-25.log python311Packages.dissect-cim 0 -> 1 attrpath: python311Packages.dissect-cim Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/s55alv5kcl55bqlgjq5ahhlz3yl8pjlb-packages.json.drv building '/nix/store/s55alv5kcl55bqlgjq5ahhlz3yl8pjlb-packages.json.drv'... Going to be running update for following packages: - python3.11-dissect-cim-3.8 Press Enter key to continue... Running update for: - python3.11-dissect-cim-3.8: UPDATING ... - python3.11-dissect-cim-3.8: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dissect-cim 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath metis, using log file: /var/log/nixpkgs-update/metis/2024-03-25.log metis 5.1.0 -> 5.2.1 https://repology.org/project/metis/versions attrpath: metis Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv building '/nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv'... trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.2.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 4863 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download metis-5.2.1.tar.gz from any mirror error: builder for '/nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.2.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 4863 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download metis-5.2.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'metis.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv /nix/store/y357cyfvdfap21qayvw9j02s1gv5mpsm-metis-5.2.1.drv building '/nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv'... trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.2.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 4863 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download metis-5.2.1.tar.gz from any mirror error: builder for '/nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.2.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 4863 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download metis-5.2.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/mq69mqfhkgkgxipnclmbp3zk75p9sw6l-metis-5.2.1.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/y357cyfvdfap21qayvw9j02s1gv5mpsm-metis-5.2.1.drv' failed to build [result] Failed to update metis 5.1.0 -> 5.2.1 https://repology.org/project/metis/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO @volth asked to not update xfce [result] Failed to update xfce.xfce4-windowck-plugin 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.solc-select, using log file: /var/log/nixpkgs-update/python311Packages.solc-select/2024-03-25.log python311Packages.solc-select 0 -> 1 attrpath: python311Packages.solc-select Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ki02ifm617snhbb21vkhmny8cy95z2g9-packages.json.drv building '/nix/store/ki02ifm617snhbb21vkhmny8cy95z2g9-packages.json.drv'... Going to be running update for following packages: - python3.11-solc-select-1.0.4 Press Enter key to continue... Running update for: - python3.11-solc-select-1.0.4: UPDATING ... - python3.11-solc-select-1.0.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.solc-select 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.cpyparsing, using log file: /var/log/nixpkgs-update/python311Packages.cpyparsing/2024-03-25.log python311Packages.cpyparsing 0 -> 1 attrpath: python311Packages.cpyparsing Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/8vlgsa7ynfb2lpi2a2gxq83kpb3rq6fh-packages.json.drv building '/nix/store/8vlgsa7ynfb2lpi2a2gxq83kpb3rq6fh-packages.json.drv'... cannot link '/nix/store/.links/1bwhf0w5cbj4nda6wf5cz064knwmls71sxc8fz6balzpyl65kl7x' to '/nix/store/q75gzwsfz22mk46b126maihl4n0r4f4q-packages.json': No space left on device Going to be running update for following packages: - python3.11-cpyparsing-2.4.7.2.3.2 Press Enter key to continue... Running update for: - python3.11-cpyparsing-2.4.7.2.3.2: UPDATING ... - python3.11-cpyparsing-2.4.7.2.3.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.cpyparsing 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath valgrind, using log file: /var/log/nixpkgs-update/valgrind/2024-03-25.log valgrind 0 -> 1 attrpath: valgrind Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] these 2 derivations will be built: /nix/store/3djwa7kkxy3rljq3kjbxrgkrg0a3z6ma-update-valgrind.drv /nix/store/nfxggl90ig5z8ishpkv2lfl5ff418wqm-packages.json.drv building '/nix/store/3djwa7kkxy3rljq3kjbxrgkrg0a3z6ma-update-valgrind.drv'... building '/nix/store/nfxggl90ig5z8ishpkv2lfl5ff418wqm-packages.json.drv'... Going to be running update for following packages: - valgrind-3.22.0 Press Enter key to continue... Running update for: - valgrind-3.22.0: UPDATING ... - valgrind-3.22.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update valgrind 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.Babel, using log file: /var/log/nixpkgs-update/python311Packages.Babel/2024-03-25.log python311Packages.Babel 0 -> 1 attrpath: python311Packages.Babel Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ma1bw0fkkrlxlvzn8l95rzmipn8xx5bb-packages.json.drv building '/nix/store/ma1bw0fkkrlxlvzn8l95rzmipn8xx5bb-packages.json.drv'... Going to be running update for following packages: - python3.11-babel-2.14.0 Press Enter key to continue... Running update for: - python3.11-babel-2.14.0: UPDATING ... - python3.11-babel-2.14.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.Babel 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nextcloud-news-updater, using log file: /var/log/nixpkgs-update/nextcloud-news-updater/2024-03-25.log nextcloud-news-updater 0 -> 1 attrpath: nextcloud-news-updater Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/sdcqmmd612hw97yzpcn4qw5yjgqgkgqm-packages.json.drv building '/nix/store/sdcqmmd612hw97yzpcn4qw5yjgqgkgqm-packages.json.drv'... Going to be running update for following packages: - nextcloud-news-updater-11.0.0 Press Enter key to continue... Running update for: - nextcloud-news-updater-11.0.0: UPDATING ... - nextcloud-news-updater-11.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update nextcloud-news-updater 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath tcpkali, using log file: /var/log/nixpkgs-update/tcpkali/2024-03-25.log tcpkali 1.1.1 -> 1.1.1.20180104 https://repology.org/project/tcpkali/versions attrpath: tcpkali Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv building '/nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv'... trying https://github.com/machinezone/tcpkali/archive/v1.1.1.20180104.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/machinezone/tcpkali/archive/v1.1.1.20180104.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'tcpkali.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv /nix/store/wwli3k4r77gdw9dq15j20nbp21iwdgfm-tcpkali-1.1.1.20180104.drv building '/nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv'... trying https://github.com/machinezone/tcpkali/archive/v1.1.1.20180104.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/machinezone/tcpkali/archive/v1.1.1.20180104.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/789v1ncbkzaimzp0b0s0wyyml6w4xx8w-source.drv'. error: 1 dependencies of derivation '/nix/store/wwli3k4r77gdw9dq15j20nbp21iwdgfm-tcpkali-1.1.1.20180104.drv' failed to build [result] Failed to update tcpkali 1.1.1 -> 1.1.1.20180104 https://repology.org/project/tcpkali/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath llvmPackages.mlir, using log file: /var/log/nixpkgs-update/llvmPackages.mlir/2024-03-25.log llvmPackages.mlir 17.0.6 -> 18.1.2 https://repology.org/project/mlir/versions attrpath: llvmPackages.mlir Checking auto update branch... No auto update branch exists Old version 17.0.6" not present in master derivation file with contents: { lib, stdenv, llvm_meta , buildLlvmTools , monorepoSrc, runCommand , cmake , ninja , libxml2 , libllvm , version , doCheck ? (!stdenv.isx86_32 /* TODO: why */) && (!stdenv.hostPlatform.isMusl) }: stdenv.mkDerivation rec { pname = "mlir"; inherit version doCheck; # Blank llvm dir just so relative path works src = runCommand "${pname}-src-${version}" {} '' mkdir -p "$out" cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/mlir "$out" cp -r ${monorepoSrc}/third-party "$out/third-party" mkdir -p "$out/llvm" ''; sourceRoot = "${src.name}/mlir"; patches = [ ./gnu-install-dirs.patch ]; nativeBuildInputs = [ cmake ninja ]; buildInputs = [ libllvm libxml2 ]; cmakeFlags = [ "-DLLVM_BUILD_TOOLS=ON" # Install headers as well "-DLLVM_INSTALL_TOOLCHAIN_ONLY=OFF" "-DMLIR_TOOLS_INSTALL_DIR=${placeholder "out"}/bin/" "-DLLVM_ENABLE_IDE=OFF" "-DLLD_INSTALL_PACKAGE_DIR=${placeholder "out"}/lib/cmake/mlir" "-DLLVM_BUILD_TESTS=${if doCheck then "ON" else "OFF"}" "-DLLVM_ENABLE_FFI=ON" "-DLLVM_HOST_TRIPLE=${stdenv.hostPlatform.config}" "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.hostPlatform.config}" "-DLLVM_ENABLE_DUMP=ON" ] ++ lib.optionals stdenv.hostPlatform.isStatic [ # Disables building of shared libs, -fPIC is still injected by cc-wrapper "-DLLVM_ENABLE_PIC=OFF" "-DLLVM_BUILD_STATIC=ON" "-DLLVM_LINK_LLVM_DYLIB=OFF" ] ++ lib.optionals ((stdenv.hostPlatform != stdenv.buildPlatform) && !(stdenv.buildPlatform.canExecute stdenv.hostPlatform)) [ "-DLLVM_TABLEGEN_EXE=${buildLlvmTools.llvm}/bin/llvm-tblgen" "-DMLIR_TABLEGEN_EXE=${buildLlvmTools.mlir}/bin/mlir-tblgen" ]; outputs = [ "out" "dev" ]; meta = llvm_meta // { homepage = "https://mlir.llvm.org/"; description = "Multi-Level IR Compiler Framework"; longDescription = '' The MLIR project is a novel approach to building reusable and extensible compiler infrastructure. MLIR aims to address software fragmentation, improve compilation for heterogeneous hardware, significantly reduce the cost of building domain specific compilers, and aid in connecting existing compilers together. ''; }; } [result] Failed to update llvmPackages.mlir 17.0.6 -> 18.1.2 https://repology.org/project/mlir/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.verbalisr, using log file: /var/log/nixpkgs-update/rPackages.verbalisr/2024-03-25.log rPackages.verbalisr 0.5.1 -> 0.5.2 https://repology.org/project/r:verbalisr/versions attrpath: rPackages.verbalisr Checking auto update branch... No auto update branch exists Old version 0.5.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.verbalisr 0.5.1 -> 0.5.2 https://repology.org/project/r:verbalisr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.florabr, using log file: /var/log/nixpkgs-update/rPackages.florabr/2024-03-25.log rPackages.florabr 1.0.1 -> 1.1.0 https://repology.org/project/r:florabr/versions attrpath: rPackages.florabr Checking auto update branch... No auto update branch exists Old version 1.0.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.florabr 1.0.1 -> 1.1.0 https://repology.org/project/r:florabr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.gpuctypes, using log file: /var/log/nixpkgs-update/python311Packages.gpuctypes/2024-03-25.log python311Packages.gpuctypes 0 -> 1 attrpath: python311Packages.gpuctypes Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/azrfra5vfy25n1zdr5qm6qx6r4vih91h-packages.json.drv building '/nix/store/azrfra5vfy25n1zdr5qm6qx6r4vih91h-packages.json.drv'... Going to be running update for following packages: - python3.11-gpuctypes-0.3.0 Press Enter key to continue... Running update for: - python3.11-gpuctypes-0.3.0: UPDATING ... - python3.11-gpuctypes-0.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.gpuctypes 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.GofCens, using log file: /var/log/nixpkgs-update/rPackages.GofCens/2024-03-25.log rPackages.GofCens 0.92 -> 0.98 https://repology.org/project/r:gofcens/versions attrpath: rPackages.GofCens Checking auto update branch... No auto update branch exists Old version 0.92" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.GofCens 0.92 -> 0.98 https://repology.org/project/r:gofcens/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath octopus, using log file: /var/log/nixpkgs-update/octopus/2024-03-25.log octopus 13.0 -> 14.0 https://repology.org/project/octopus-tddft-code/versions attrpath: octopus Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/applications/science/chemistry/octopus/default.nix b/pkgs/applications/science/chemistry/octopus/default.nix index 93fec7149604..3acdcfc6e2b6 100644 --- a/pkgs/applications/science/chemistry/octopus/default.nix +++ b/pkgs/applications/science/chemistry/octopus/default.nix @@ -30,13 +30,13 @@ assert (blas.isILP64 == arpack.isILP64); stdenv.mkDerivation rec { pname = "octopus"; - version = "13.0"; + version = "14.0"; src = fetchFromGitLab { owner = "octopus-code"; repo = "octopus"; rev = version; - sha256 = "sha256-CZ+Qmv6aBQ6w11mLvTP6QAJzaGs+vmmXuNGnSyAqVDU="; + sha256 = "sha256-wQ2I+10ZHLKamW3j6AUtq2KZVm6d29+JxYgwvBKz9DU="; }; nativeBuildInputs = [ [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A octopus nix build failed. Running phase: fixupPhase shrinking RPATHs of ELF executables and libraries in /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0 shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/octopus shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-conductivity shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-oscillator-strength shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-vibrational_spectrum shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-convert shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-spin_susceptibility shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-propagation_spectrum shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-center-geom shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-wannier90 shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-infrared_spectrum shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-dielectric-function shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-tdtdm shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-help shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-casida_spectrum shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-floquet shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-local_multipoles shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-photoelectron_spectrum shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-unfold shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-xyz-anim shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/oct-harmonic-spectrum shrinking /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/lib/libsymspg.so.0.0.0 checking for references to /build/ in /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0... RPATH of binary /nix/store/67ahm38sjwf643mjnmcbqziqxp3kb7v4-octopus-14.0/bin/octopus contains a forbidden reference to /build/ find: 'standard output': Broken pipe find: write error /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 74: pop_var_context: head of shell_variables not a function context /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1439: pop_var_context: head of shell_variables not a function context /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1578: pop_var_context: head of shell_variables not a function context [result] Failed to update octopus 13.0 -> 14.0 https://repology.org/project/octopus-tddft-code/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.DDPNA, using log file: /var/log/nixpkgs-update/rPackages.DDPNA/2024-03-25.log rPackages.DDPNA 0.3.1 -> 0.3.3 https://repology.org/project/r:ddpna/versions attrpath: rPackages.DDPNA Checking auto update branch... No auto update branch exists Old version 0.3.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.DDPNA 0.3.1 -> 0.3.3 https://repology.org/project/r:ddpna/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath a2ps, using log file: /var/log/nixpkgs-update/a2ps/2024-03-25.log a2ps 4.15.5 -> 4.15.6 https://repology.org/project/a2ps/versions attrpath: a2ps Checking auto update branch... No auto update branch exists Old version 4.15.5" not present in master derivation file with contents: { lib , stdenv , fetchurl , autoconf , bison , file , perl , pkg-config , boehmgc , gperf , libpaper }: stdenv.mkDerivation rec { pname = "a2ps"; version = "4.15.6"; src = fetchurl { url = "mirror://gnu/a2ps/a2ps-${version}.tar.gz"; hash = "sha256-h/+dgByxGWkYHVuM+LZeZeWyS7DHahuCXoCY8pBvvfQ="; }; postPatch = '' substituteInPlace afm/make_fonts_map.sh --replace "/bin/rm" "rm" substituteInPlace tests/defs.in --replace "/bin/rm" "rm" ''; nativeBuildInputs = [ autoconf bison file perl pkg-config ]; buildInputs = [ boehmgc gperf libpaper ]; strictDeps = true; meta = with lib; { description = "An Anything to PostScript converter and pretty-printer"; longDescription = '' GNU a2ps converts files into PostScript for printing or viewing. It uses a nice default format, usually two pages on each physical page, borders surrounding pages, headers with useful information (page number, printing date, file name or supplied header), line numbering, symbol substitution as well as pretty printing for a wide range of programming languages. ''; homepage = "https://www.gnu.org/software/a2ps/"; license = licenses.gpl3Plus; maintainers = [ maintainers.bennofs ]; platforms = platforms.unix; }; } [result] Failed to update a2ps 4.15.5 -> 4.15.6 https://repology.org/project/a2ps/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.UCSCXenaShiny, using log file: /var/log/nixpkgs-update/rPackages.UCSCXenaShiny/2024-03-25.log rPackages.UCSCXenaShiny 1.1.10 -> 2.0.0 https://repology.org/project/r:ucscxenashiny/versions attrpath: rPackages.UCSCXenaShiny Checking auto update branch... No auto update branch exists Old version 1.1.10" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.UCSCXenaShiny 1.1.10 -> 2.0.0 https://repology.org/project/r:ucscxenashiny/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.correctR, using log file: /var/log/nixpkgs-update/rPackages.correctR/2024-03-25.log rPackages.correctR 0.1.3 -> 0.2.1 https://repology.org/project/r:correctr/versions attrpath: rPackages.correctR Checking auto update branch... No auto update branch exists Old version 0.1.3" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.correctR 0.1.3 -> 0.2.1 https://repology.org/project/r:correctr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.RedeR, using log file: /var/log/nixpkgs-update/rPackages.RedeR/2024-03-25.log rPackages.RedeR 2.6.0 -> 2.6.1 https://repology.org/project/r:reder/versions attrpath: rPackages.RedeR Checking auto update branch... No auto update branch exists Old version 2.6.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.RedeR 2.6.0 -> 2.6.1 https://repology.org/project/r:reder/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.rrvgo, using log file: /var/log/nixpkgs-update/rPackages.rrvgo/2024-03-25.log rPackages.rrvgo 1.14.1 -> 1.14.2 https://repology.org/project/r:rrvgo/versions attrpath: rPackages.rrvgo Checking auto update branch... No auto update branch exists Old version 1.14.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.rrvgo 1.14.1 -> 1.14.2 https://repology.org/project/r:rrvgo/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath geoclue2-with-demo-agent, using log file: /var/log/nixpkgs-update/geoclue2-with-demo-agent/2024-03-25.log geoclue2-with-demo-agent 2.7.0 -> 2.7.1 https://repology.org/project/geoclue/versions attrpath: geoclue2-with-demo-agent Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/libraries/geoclue/default.nix b/pkgs/development/libraries/geoclue/default.nix index c2bf28d71045..6ba2c2d655a8 100644 --- a/pkgs/development/libraries/geoclue/default.nix +++ b/pkgs/development/libraries/geoclue/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { pname = "geoclue"; - version = "2.7.0"; + version = "2.7.1"; outputs = [ "out" "dev" "devdoc" ]; @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { owner = "geoclue"; repo = "geoclue"; rev = version; - hash = "sha256-vzarUg4lBEXYkH+n9SY8SYr0gHUX94PSTDmKd957gyc="; + hash = "sha256-19ggfFo6B9KOhCJfdTSgHoXPL3qDKtlc9DeIF99WxiQ="; }; patches = [ [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A geoclue2-with-demo-agent nix build failed. got build log for 'geoclue2-with-demo-agent' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/3ijlcfn7q1ksln90rrlphjnh90z977qd-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/1a8za0wgnx9b8jaazy478lcmhqzwr047-add-option-for-installation-sysconfdir.patch patching file data/meson.build Hunk #4 FAILED at 37. 1 out of 4 hunks FAILED -- saving rejects to file data/meson.build.rej patching file demo/meson.build patching file meson.build patching file meson_options.txt [result] Failed to update geoclue2-with-demo-agent 2.7.0 -> 2.7.1 https://repology.org/project/geoclue/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath futhark, using log file: /var/log/nixpkgs-update/futhark/2024-03-25.log futhark 0.25.13 -> 0.25.14 https://repology.org/project/futhark/versions attrpath: futhark Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update futhark 0.25.13 -> 0.25.14 https://repology.org/project/futhark/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.tensorstore, using log file: /var/log/nixpkgs-update/python312Packages.tensorstore/2024-03-25.log python312Packages.tensorstore 0.1.53 -> 0.1.56 https://repology.org/project/python:tensorstore/versions attrpath: python312Packages.tensorstore Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/a4qb9jf9aljrnkhiidw6svyzd24csd08-packages.json.drv building '/nix/store/a4qb9jf9aljrnkhiidw6svyzd24csd08-packages.json.drv'... Going to be running update for following packages: - python3.12-tensorstore-0.1.53 Press Enter key to continue... Running update for: - python3.12-tensorstore-0.1.53: UPDATING ... - python3.12-tensorstore-0.1.53: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.tensorstore 0.1.53 -> 0.1.56 https://repology.org/project/python:tensorstore/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.pycxx, using log file: /var/log/nixpkgs-update/python312Packages.pycxx/2024-03-25.log python312Packages.pycxx 7.1.4 -> 7.1.10 https://repology.org/project/python:pycxx/versions attrpath: python312Packages.pycxx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/pvn6cb8l9dy5dyx8cccbzwgzjss9sqp6-packages.json.drv building '/nix/store/pvn6cb8l9dy5dyx8cccbzwgzjss9sqp6-packages.json.drv'... Going to be running update for following packages: - python3.12-pycxx-7.1.4 Press Enter key to continue... Running update for: - python3.12-pycxx-7.1.4: UPDATING ... - python3.12-pycxx-7.1.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.pycxx 7.1.4 -> 7.1.10 https://repology.org/project/python:pycxx/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bmake, using log file: /var/log/nixpkgs-update/bmake/2024-03-25.log bmake 20240301 -> 20240314 https://repology.org/project/bmake/versions attrpath: bmake Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/by-name/bm/bmake/package.nix b/pkgs/by-name/bm/bmake/package.nix index fe4e8b6ed6dd..36442912345d 100644 --- a/pkgs/by-name/bm/bmake/package.nix +++ b/pkgs/by-name/bm/bmake/package.nix @@ -11,11 +11,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "bmake"; - version = "20240301"; + version = "20240314"; src = fetchurl { url = "http://www.crufty.net/ftp/pub/sjg/bmake-${finalAttrs.version}.tar.gz"; - hash = "sha256-JM4L46z8i5PHWgeWxi7swWN246fAVXCzAtIEgOOOn1k="; + hash = "sha256-+akG10h2mcng0sE1cAwtCI2l/NDy9nYSZ6V6q/6jH+s="; }; patches = [ [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A bmake nix build failed. got build log for 'bmake' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/0045ssvhhfzw91p8p5p3is0l9pbdwc0b-bmake-20240314.tar.gz source root is bmake setting SOURCE_DATE_EPOCH to timestamp 1710875300 of file bmake/unit-tests/Makefile @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/cjmjpci5i6wfzsv8y17j49z2kigzc1s3-001-bootstrap-fix.diff patching file make-bootstrap.sh.in Hunk #1 succeeded at 5 with fuzz 1 (offset 1 line). applying patch /nix/store/v8pmsjav20d272a4kw2ngviw9rd8fj98-002-dont-test-while-installing.diff patching file boot-strap Hunk #1 FAILED at 413. Hunk #2 succeeded at 461 (offset 27 lines). 1 out of 2 hunks FAILED -- saving rejects to file boot-strap.rej [result] Failed to update bmake 20240301 -> 20240314 https://repology.org/project/bmake/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath editres, using log file: /var/log/nixpkgs-update/editres/2024-03-25.log editres 1.0.8 -> 1.0.9 https://repology.org/project/editres/versions attrpath: editres Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/tools/graphics/editres/default.nix b/pkgs/tools/graphics/editres/default.nix index ce8b2e0a4ff6..f40ba0181972 100644 --- a/pkgs/tools/graphics/editres/default.nix +++ b/pkgs/tools/graphics/editres/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "editres"; - version = "1.0.8"; + version = "1.0.9"; src = fetchurl { url = "mirror://xorg/individual/app/editres-${version}.tar.gz"; - sha256 = "sha256-LVbWB3vHZ6+n4DD+ssNy/mvok/7EApoj9FodVZ/YRq4="; + sha256 = "sha256-/gaZBP9hP0qS7Dy+fDSgEfLQOWqSDoze9fu5eCnVo7Y="; }; nativeBuildInputs = [ pkg-config ]; [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A editres nix build failed. checking if gcc supports -Wredundant-decls... yes checking if gcc supports -Wlogical-op... yes checking if gcc supports -Werror=implicit... yes checking if gcc supports -Werror=nonnull... yes checking if gcc supports -Werror=init-self... yes checking if gcc supports -Werror=main... yes checking if gcc supports -Werror=missing-braces... yes checking if gcc supports -Werror=sequence-point... yes checking if gcc supports -Werror=return-type... yes checking if gcc supports -Werror=trigraphs... yes checking if gcc supports -Werror=array-bounds... yes checking if gcc supports -Werror=write-strings... yes checking if gcc supports -Werror=address... yes checking if gcc supports -Werror=int-to-pointer-cast... yes checking if gcc supports -Werror=pointer-to-int-cast... yes checking if gcc supports -pedantic... yes checking if gcc supports -Werror... yes checking if gcc supports -Werror=attributes... yes checking whether make supports nested variables... (cached) yes checking for EDITRES... no configure: error: Package requirements (xaw7 x11 xt >= 1.0.99.1 xmu xproto >= 7.0.17 xkbfile) were not met: No package 'xkbfile' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables EDITRES_CFLAGS and EDITRES_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. [result] Failed to update editres 1.0.8 -> 1.0.9 https://repology.org/project/editres/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python3Minimal, using log file: /var/log/nixpkgs-update/python3Minimal/2024-03-25.log python3Minimal 3.11.8 -> 3.12.2 https://repology.org/project/python/versions attrpath: python3Minimal Checking auto update branch... No auto update branch exists Old version 3.11.8" not present in master derivation file with contents: { lib , stdenv , fetchurl , fetchpatch , fetchgit # build dependencies , autoconf-archive , autoreconfHook , nukeReferences , pkg-config , python-setup-hook # runtime dependencies , bzip2 , expat , libffi , libxcrypt , mpdecimal , ncurses , openssl , sqlite , xz , zlib # platform-specific dependencies , bash , configd , darwin , windows # optional dependencies , bluezSupport ? false, bluez , mimetypesSupport ? true, mailcap , tzdata , withGdbm ? !stdenv.hostPlatform.isWindows, gdbm , withReadline ? !stdenv.hostPlatform.isWindows, readline , x11Support ? false, tcl, tk, tix, libX11, xorgproto # splicing/cross , pythonAttr ? "python${sourceVersion.major}${sourceVersion.minor}" , self , pkgsBuildBuild , pkgsBuildHost , pkgsBuildTarget , pkgsHostHost , pkgsTargetTarget # build customization , sourceVersion , hash , passthruFun , stripConfig ? false , stripIdlelib ? false , stripTests ? false , stripTkinter ? false , rebuildBytecode ? true , stripBytecode ? true , includeSiteCustomize ? true , static ? stdenv.hostPlatform.isStatic , enableFramework ? false , noldconfigPatch ? ./. + "/${sourceVersion.major}.${sourceVersion.minor}/no-ldconfig.patch" , enableGIL ? true # pgo (not reproducible) + -fno-semantic-interposition # https://docs.python.org/3/using/configure.html#cmdoption-enable-optimizations , enableOptimizations ? false # improves performance, but remains reproducible , enableNoSemanticInterposition ? true # enabling LTO on 32bit arch causes downstream packages to fail when linking # enabling LTO on *-darwin causes python3 to fail when linking. , enableLTO ? stdenv.is64bit && stdenv.isLinux # enable asserts to ensure the build remains reproducible , reproducibleBuild ? false # for the Python package set , packageOverrides ? (self: super: {}) # tests , testers } @ inputs: # Note: this package is used for bootstrapping fetchurl, and thus # cannot use fetchpatch! All mutable patches (generated by GitHub or # cgit) that are needed here should be included directly in Nixpkgs as # files. assert x11Support -> tcl != null && tk != null && xorgproto != null && libX11 != null; assert bluezSupport -> bluez != null; assert lib.assertMsg (enableFramework -> stdenv.isDarwin) "Framework builds are only supported on Darwin."; assert lib.assertMsg (reproducibleBuild -> stripBytecode) "Deterministic builds require stripping bytecode."; assert lib.assertMsg (reproducibleBuild -> (!enableOptimizations)) "Deterministic builds are not achieved when optimizations are enabled."; assert lib.assertMsg (reproducibleBuild -> (!rebuildBytecode)) "Deterministic builds are not achieved when (default unoptimized) bytecode is created."; let inherit (lib) concatMapStringsSep concatStringsSep enableFeature getDev getLib optionals optionalString replaceStrings versionOlder ; buildPackages = pkgsBuildHost; inherit (passthru) pythonOnBuildForHost; tzdataSupport = tzdata != null && passthru.pythonAtLeast "3.9"; passthru = let # When we override the interpreter we also need to override the spliced versions of the interpreter inputs' = lib.filterAttrs (n: v: ! lib.isDerivation v && n != "passthruFun") inputs; override = attr: let python = attr.override (inputs' // { self = python; }); in python; in passthruFun rec { inherit self sourceVersion packageOverrides; implementation = "cpython"; libPrefix = "python${pythonVersion}"; executable = libPrefix; pythonVersion = with sourceVersion; "${major}.${minor}"; sitePackages = "lib/${libPrefix}/site-packages"; inherit hasDistutilsCxxPatch pythonAttr; pythonOnBuildForBuild = override pkgsBuildBuild.${pythonAttr}; pythonOnBuildForHost = override pkgsBuildHost.${pythonAttr}; pythonOnBuildForTarget = override pkgsBuildTarget.${pythonAttr}; pythonOnHostForHost = override pkgsHostHost.${pythonAttr}; pythonOnTargetForTarget = lib.optionalAttrs (lib.hasAttr pythonAttr pkgsTargetTarget) (override pkgsTargetTarget.${pythonAttr}); }; version = with sourceVersion; "${major}.${minor}.${patch}${suffix}"; nativeBuildInputs = [ nukeReferences ] ++ optionals (!stdenv.isDarwin) [ autoconf-archive # needed for AX_CHECK_COMPILE_FLAG autoreconfHook pkg-config ] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ buildPackages.stdenv.cc pythonOnBuildForHost ] ++ optionals (stdenv.cc.isClang && (!stdenv.hostPlatform.useAndroidPrebuilt or false) && (enableLTO || enableOptimizations)) [ stdenv.cc.cc.libllvm.out ]; buildInputs = lib.filter (p: p != null) ([ bzip2 expat libffi libxcrypt mpdecimal ncurses openssl sqlite xz zlib ] ++ optionals bluezSupport [ bluez ] ++ optionals enableFramework [ darwin.apple_sdk.frameworks.Cocoa ] ++ optionals stdenv.hostPlatform.isMinGW [ windows.dlfcn windows.mingw_w64_pthreads ] ++ optionals stdenv.isDarwin [ configd ] ++ optionals tzdataSupport [ tzdata ] ++ optionals withGdbm [ gdbm ] ++ optionals withReadline [ readline ] ++ optionals x11Support [ libX11 tcl tk xorgproto ]); hasDistutilsCxxPatch = !(stdenv.cc.isGNU or false); pythonOnBuildForHostInterpreter = if stdenv.hostPlatform == stdenv.buildPlatform then "$out/bin/python" else pythonOnBuildForHost.interpreter; src = fetchurl { url = with sourceVersion; "https://www.python.org/ftp/python/${major}.${minor}.${patch}/Python-${version}.tar.xz"; inherit hash; }; # The CPython interpreter contains a _sysconfigdata_ # module that is imported by the sysconfig and distutils.sysconfig modules. # The sysconfigdata module is generated at build time and contains settings # required for building Python extension modules, such as include paths and # other compiler flags. By default, the sysconfigdata module is loaded from # the currently running interpreter (ie. the build platform interpreter), but # when cross-compiling we want to load it from the host platform interpreter. # This can be done using the _PYTHON_SYSCONFIGDATA_NAME environment variable. # The _PYTHON_HOST_PLATFORM variable also needs to be set to get the correct # platform suffix on extension modules. The correct values for these variables # are not documented, and must be derived from the configure script (see links # below). sysconfigdataHook = with stdenv.hostPlatform; with passthru; let machdep = if isWindows then "win32" else parsed.kernel.name; # win32 is added by Fedora’s patch # https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L428 # The configure script uses "arm" as the CPU name for all 32-bit ARM # variants when cross-compiling, but native builds include the version # suffix, so we do the same. pythonHostPlatform = let cpu = { # According to PEP600, Python's name for the Power PC # architecture is "ppc", not "powerpc". Without the Rosetta # Stone below, the PEP600 requirement that "${ARCH} matches # the return value from distutils.util.get_platform()" fails. # https://peps.python.org/pep-0600/ powerpc = "ppc"; powerpcle = "ppcle"; powerpc64 = "ppc64"; powerpc64le = "ppc64le"; }.${parsed.cpu.name} or parsed.cpu.name; in "${machdep}-${cpu}"; # https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L724 multiarchCpu = if isAarch32 then if parsed.cpu.significantByte.name == "littleEndian" then "arm" else "armeb" else if isx86_32 then "i386" else parsed.cpu.name; pythonAbiName = let # python's build doesn't match the nixpkgs abi in some cases. # https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L724 nixpkgsPythonAbiMappings = { "gnuabielfv2" = "gnu"; "muslabielfv2" = "musl"; }; pythonAbi = nixpkgsPythonAbiMappings.${parsed.abi.name} or parsed.abi.name; in # Python <3.11 doesn't distinguish musl and glibc and always prefixes with "gnu" if versionOlder version "3.11" then replaceStrings [ "musl" ] [ "gnu" ] pythonAbi else pythonAbi; multiarch = if isDarwin then "darwin" else if isWindows then "" else "${multiarchCpu}-${machdep}-${pythonAbiName}"; abiFlags = optionalString isPy37 "m"; # https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L78 pythonSysconfigdataName = "_sysconfigdata_${abiFlags}_${machdep}_${multiarch}"; in '' sysconfigdataHook() { if [ "$1" = '${placeholder "out"}' ]; then export _PYTHON_HOST_PLATFORM='${pythonHostPlatform}' export _PYTHON_SYSCONFIGDATA_NAME='${pythonSysconfigdataName}' fi } addEnvHooks "$hostOffset" sysconfigdataHook ''; execSuffix = stdenv.hostPlatform.extensions.executable; in with passthru; stdenv.mkDerivation (finalAttrs: { pname = "python3"; inherit src version; inherit nativeBuildInputs; buildInputs = lib.optionals (!stdenv.hostPlatform.isWindows) [ bash # only required for patchShebangs ] ++ buildInputs; prePatch = optionalString stdenv.isDarwin '' substituteInPlace configure --replace-fail '`/usr/bin/arch`' '"i386"' '' + optionalString (pythonOlder "3.9" && stdenv.isDarwin && x11Support) '' # Broken on >= 3.9; replaced with ./3.9/darwin-tcl-tk.patch substituteInPlace setup.py --replace-fail /Library/Frameworks /no-such-path ''; patches = [ # Disable the use of ldconfig in ctypes.util.find_library (since # ldconfig doesn't work on NixOS), and don't use # ctypes.util.find_library during the loading of the uuid module # (since it will do a futile invocation of gcc (!) to find # libuuid, slowing down program startup a lot). noldconfigPatch # Make sure that the virtualenv activation scripts are # owner-writable, so venvs can be recreated without permission # errors. ] ++ optionals (pythonOlder "3.13") [ ./virtualenv-permissions.patch ] ++ optionals (pythonAtLeast "3.13") [ ./3.13/virtualenv-permissions.patch ] ++ optionals mimetypesSupport [ # Make the mimetypes module refer to the right file ./mimetypes.patch ] ++ optionals (pythonAtLeast "3.7" && pythonOlder "3.11") [ # Fix darwin build https://bugs.python.org/issue34027 ./3.7/darwin-libutil.patch ] ++ optionals (pythonAtLeast "3.11") [ ./3.11/darwin-libutil.patch ] ++ optionals (pythonAtLeast "3.9" && pythonOlder "3.11" && stdenv.isDarwin) [ # Stop checking for TCL/TK in global macOS locations ./3.9/darwin-tcl-tk.patch ] ++ optionals (hasDistutilsCxxPatch && pythonOlder "3.12") [ # Fix for http://bugs.python.org/issue1222585 # Upstream distutils is calling C compiler to compile C++ code, which # only works for GCC and Apple Clang. This makes distutils to call C++ # compiler when needed. ( if pythonAtLeast "3.7" && pythonOlder "3.11" then ./3.7/python-3.x-distutils-C++.patch else if pythonAtLeast "3.11" then ./3.11/python-3.x-distutils-C++.patch else fetchpatch { url = "https://bugs.python.org/file48016/python-3.x-distutils-C++.patch"; sha256 = "1h18lnpx539h5lfxyk379dxwr8m2raigcjixkf133l4xy3f4bzi2"; } ) ] ++ optionals (pythonAtLeast "3.7" && pythonOlder "3.12") [ # LDSHARED now uses $CC instead of gcc. Fixes cross-compilation of extension modules. ./3.8/0001-On-all-posix-systems-not-just-Darwin-set-LDSHARED-if.patch # Use sysconfigdata to find headers. Fixes cross-compilation of extension modules. ./3.7/fix-finding-headers-when-cross-compiling.patch ] ++ optionals (pythonOlder "3.12") [ # https://github.com/python/cpython/issues/90656 ./loongarch-support.patch ] ++ optionals (pythonAtLeast "3.11" && pythonOlder "3.13") [ # backport fix for https://github.com/python/cpython/issues/95855 ./platform-triplet-detection.patch ] ++ optionals (stdenv.hostPlatform.isMinGW) (let # https://src.fedoraproject.org/rpms/mingw-python3 mingw-patch = fetchgit { name = "mingw-python-patches"; url = "https://src.fedoraproject.org/rpms/mingw-python3.git"; rev = "45c45833ab9e5480ad0ae00778a05ebf35812ed4"; # for python 3.11.5 at the time of writing. sha256 = "sha256-KIyNvO6MlYTrmSy9V/DbzXm5OsIuyT/BEpuo7Umm9DI="; }; in [ "${mingw-patch}/*.patch" ]); postPatch = optionalString (!stdenv.hostPlatform.isWindows) '' substituteInPlace Lib/subprocess.py \ --replace-fail "'/bin/sh'" "'${bash}/bin/sh'" '' + optionalString mimetypesSupport '' substituteInPlace Lib/mimetypes.py \ --replace-fail "@mime-types@" "${mailcap}" '' + optionalString (pythonOlder "3.13" && x11Support && (tix != null)) '' substituteInPlace "Lib/tkinter/tix.py" --replace-fail \ "os.environ.get('TIX_LIBRARY')" \ "os.environ.get('TIX_LIBRARY') or '${tix}/lib'" ''; env = { CPPFLAGS = concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs); LDFLAGS = concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs); LIBS = "${optionalString (!stdenv.isDarwin) "-lcrypt"}"; NIX_LDFLAGS = lib.optionalString (stdenv.cc.isGNU && !stdenv.hostPlatform.isStatic) ({ "glibc" = "-lgcc_s"; "musl" = "-lgcc_eh"; }."${stdenv.hostPlatform.libc}" or ""); # Determinism: We fix the hashes of str, bytes and datetime objects. PYTHONHASHSEED=0; }; # https://docs.python.org/3/using/configure.html configureFlags = [ "--without-ensurepip" "--with-system-expat" ] ++ optionals (!(stdenv.isDarwin && pythonAtLeast "3.12")) [ # ./Modules/_decimal/_decimal.c:4673:6: error: "No valid combination of CONFIG_64, CONFIG_32 and _PyHASH_BITS" # https://hydra.nixos.org/build/248410479/nixlog/2/tail "--with-system-libmpdec" ] ++ optionals (openssl != null) [ "--with-openssl=${openssl.dev}" ] ++ optionals tzdataSupport [ "--with-tzpath=${tzdata}/share/zoneinfo" ] ++ optionals (execSuffix != "") [ "--with-suffix=${execSuffix}" ] ++ optionals enableLTO [ "--with-lto" ] ++ optionals (!static && !enableFramework) [ "--enable-shared" ] ++ optionals enableFramework [ "--enable-framework=${placeholder "out"}/Library/Frameworks" ] ++ optionals (pythonAtLeast "3.13") [ (enableFeature enableGIL "gil") ] ++ optionals enableOptimizations [ "--enable-optimizations" ] ++ optionals (sqlite != null) [ "--enable-loadable-sqlite-extensions" ] ++ optionals (libxcrypt != null) [ "CFLAGS=-I${libxcrypt}/include" "LIBS=-L${libxcrypt}/lib" ] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ "ac_cv_buggy_getaddrinfo=no" # Assume little-endian IEEE 754 floating point when cross compiling "ac_cv_little_endian_double=yes" "ac_cv_big_endian_double=no" "ac_cv_mixed_endian_double=no" "ac_cv_x87_double_rounding=yes" "ac_cv_tanh_preserves_zero_sign=yes" # Generally assume that things are present and work "ac_cv_posix_semaphores_enabled=yes" "ac_cv_broken_sem_getvalue=no" "ac_cv_wchar_t_signed=yes" "ac_cv_rshift_extends_sign=yes" "ac_cv_broken_nice=no" "ac_cv_broken_poll=no" "ac_cv_working_tzset=yes" "ac_cv_have_long_long_format=yes" "ac_cv_have_size_t_format=yes" "ac_cv_computed_gotos=yes" # Both fail when building for windows, normally configure checks this by itself but on other platforms this is set to yes always. "ac_cv_file__dev_ptmx=${if stdenv.hostPlatform.isWindows then "no" else "yes"}" "ac_cv_file__dev_ptc=${if stdenv.hostPlatform.isWindows then "no" else "yes"}" ] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform && pythonAtLeast "3.11") [ "--with-build-python=${pythonOnBuildForHostInterpreter}" ] ++ optionals stdenv.hostPlatform.isLinux [ # Never even try to use lchmod on linux, # don't rely on detecting glibc-isms. "ac_cv_func_lchmod=no" ] ++ optionals static [ "LDFLAGS=-static" ]; preConfigure = optionalString (pythonOlder "3.12") '' # Improve purity for path in /usr /sw /opt /pkg; do substituteInPlace ./setup.py --replace-warn $path /no-such-path done '' + optionalString stdenv.isDarwin '' # Override the auto-detection in setup.py, which assumes a universal build export PYTHON_DECIMAL_WITH_MACHINE=${if stdenv.isAarch64 then "uint128" else "x64"} '' + optionalString (stdenv.isDarwin && x11Support && pythonAtLeast "3.11") '' export TCLTK_LIBS="-L${tcl}/lib -L${tk}/lib -l${tcl.libPrefix} -l${tk.libPrefix}" export TCLTK_CFLAGS="-I${tcl}/include -I${tk}/include" '' + optionalString stdenv.hostPlatform.isMusl '' export NIX_CFLAGS_COMPILE+=" -DTHREAD_STACK_SIZE=0x100000" '' + # enableNoSemanticInterposition essentially sets that CFLAG -fno-semantic-interposition # which changes how symbols are looked up. This essentially means we can't override # libpython symbols via LD_PRELOAD anymore. This is common enough as every build # that uses --enable-optimizations has the same "issue". # # The Fedora wiki has a good article about their journey towards enabling this flag: # https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup optionalString enableNoSemanticInterposition '' export CFLAGS_NODIST="-fno-semantic-interposition" ''; setupHook = python-setup-hook sitePackages; postInstall = let # References *not* to nuke from (sys)config files keep-references = concatMapStringsSep " " (val: "-e ${val}") ([ (placeholder "out") libxcrypt ] ++ optionals tzdataSupport [ tzdata ]); in lib.optionalString enableFramework '' for dir in include lib share; do ln -s $out/Library/Frameworks/Python.framework/Versions/Current/$dir $out/$dir done '' + '' # needed for some packages, especially packages that backport functionality # to 2.x from 3.x for item in $out/lib/${libPrefix}/test/*; do if [[ "$item" != */test_support.py* && "$item" != */test/support && "$item" != */test/libregrtest && "$item" != */test/regrtest.py* ]]; then rm -rf "$item" else echo $item fi done touch $out/lib/${libPrefix}/test/__init__.py # Determinism: Windows installers were not deterministic. # We're also not interested in building Windows installers. find "$out" -name 'wininst*.exe' | xargs -r rm -f # Use Python3 as default python ln -s "$out/bin/idle3" "$out/bin/idle" ln -s "$out/bin/pydoc3" "$out/bin/pydoc" ln -s "$out/bin/python3${execSuffix}" "$out/bin/python${execSuffix}" ln -s "$out/bin/python3-config" "$out/bin/python-config" ln -s "$out/lib/pkgconfig/python3.pc" "$out/lib/pkgconfig/python.pc" ln -sL "$out/share/man/man1/python3.1.gz" "$out/share/man/man1/python.1.gz" # Get rid of retained dependencies on -dev packages, and remove # some $TMPDIR references to improve binary reproducibility. # Note that the .pyc file of _sysconfigdata.py should be regenerated! for i in $out/lib/${libPrefix}/_sysconfigdata*.py $out/lib/${libPrefix}/config-${sourceVersion.major}${sourceVersion.minor}*/Makefile; do sed -i $i -e "s|$TMPDIR|/no-such-path|g" done # Further get rid of references. https://github.com/NixOS/nixpkgs/issues/51668 find $out/lib/python*/config-* -type f -print -exec nuke-refs ${keep-references} '{}' + find $out/lib -name '_sysconfigdata*.py*' -print -exec nuke-refs ${keep-references} '{}' + # Make the sysconfigdata module accessible on PYTHONPATH # This allows build Python to import host Python's sysconfigdata mkdir -p "$out/${sitePackages}" ln -s "$out/lib/${libPrefix}/"_sysconfigdata*.py "$out/${sitePackages}/" '' + optionalString stripConfig '' rm -R $out/bin/python*-config $out/lib/python*/config-* '' + optionalString stripIdlelib '' # Strip IDLE (and turtledemo, which uses it) rm -R $out/bin/idle* $out/lib/python*/{idlelib,turtledemo} '' + optionalString stripTkinter '' rm -R $out/lib/python*/tkinter '' + optionalString stripTests '' # Strip tests rm -R $out/lib/python*/test $out/lib/python*/**/test{,s} '' + optionalString includeSiteCustomize '' # Include a sitecustomize.py file cp ${../sitecustomize.py} $out/${sitePackages}/sitecustomize.py '' + optionalString stripBytecode '' # Determinism: deterministic bytecode # First we delete all old bytecode. find $out -type d -name __pycache__ -print0 | xargs -0 -I {} rm -rf "{}" '' + optionalString rebuildBytecode '' # Python 3.7 implements PEP 552, introducing support for deterministic bytecode. # compileall uses the therein introduced checked-hash method by default when # `SOURCE_DATE_EPOCH` is set. # We exclude lib2to3 because that's Python 2 code which fails # We build 3 levels of optimized bytecode. Note the default level, without optimizations, # is not reproducible yet. https://bugs.python.org/issue29708 # Not creating bytecode will result in a large performance loss however, so we do build it. find $out -name "*.py" | ${pythonOnBuildForHostInterpreter} -m compileall -q -f -x "lib2to3" -i - find $out -name "*.py" | ${pythonOnBuildForHostInterpreter} -O -m compileall -q -f -x "lib2to3" -i - find $out -name "*.py" | ${pythonOnBuildForHostInterpreter} -OO -m compileall -q -f -x "lib2to3" -i - '' + '' # *strip* shebang from libpython gdb script - it should be dual-syntax and # interpretable by whatever python the gdb in question is using, which may # not even match the major version of this python. doing this after the # bytecode compilations for the same reason - we don't want bytecode generated. mkdir -p $out/share/gdb sed '/^#!/d' Tools/gdb/libpython.py > $out/share/gdb/libpython.py # Disable system-wide pip installation. See https://peps.python.org/pep-0668/. cat <<'EXTERNALLY_MANAGED' > $out/lib/${libPrefix}/EXTERNALLY-MANAGED [externally-managed] Error=This command has been disabled as it tries to modify the immutable `/nix/store` filesystem. To use Python with Nix and nixpkgs, have a look at the online documentation: . EXTERNALLY_MANAGED '' + optionalString stdenv.hostPlatform.isWindows '' # Shebang files that link against the build python. Shebang don’t work on windows rm $out/bin/2to3* rm $out/bin/idle* rm $out/bin/pydoc* echo linking DLLs for python’s compiled librairies linkDLLsInfolder $out/lib/python*/lib-dynload/ ''; preFixup = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' # Ensure patch-shebangs uses shebangs of host interpreter. export PATH=${lib.makeBinPath [ "$out" ]}:$PATH ''; # Add CPython specific setup-hook that configures distutils.sysconfig to # always load sysconfigdata from host Python. postFixup = lib.optionalString (!stdenv.hostPlatform.isDarwin) '' cat << "EOF" >> "$out/nix-support/setup-hook" ${sysconfigdataHook} EOF ''; # Enforce that we don't have references to the OpenSSL -dev package, which we # explicitly specify in our configure flags above. disallowedReferences = lib.optionals (openssl != null && !static && !enableFramework) [ openssl.dev ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ # Ensure we don't have references to build-time packages. # These typically end up in shebangs. pythonOnBuildForHost buildPackages.bash ]; separateDebugInfo = true; passthru = passthru // { doc = stdenv.mkDerivation { inherit src; name = "python${pythonVersion}-${version}-doc"; patches = optionals (pythonAtLeast "3.9" && pythonOlder "3.10") [ # https://github.com/python/cpython/issues/98366 (fetchpatch { url = "https://github.com/python/cpython/commit/5612471501b05518287ed61c1abcb9ed38c03942.patch"; hash = "sha256-p41hJwAiyRgyVjCVQokMSpSFg/VDDrqkCSxsodVb6vY="; }) ]; dontConfigure = true; dontBuild = true; sphinxRoot = "Doc"; postInstallSphinx = '' mv $out/share/doc/* $out/share/doc/python${pythonVersion}-${version} ''; nativeBuildInputs = with pkgsBuildBuild.python3.pkgs; [ sphinxHook python-docs-theme ]; }; tests = passthru.tests // { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; }; enableParallelBuilding = true; meta = with lib; { homepage = "https://www.python.org"; changelog = let majorMinor = versions.majorMinor version; dashedVersion = replaceStrings [ "." "a" ] [ "-" "-alpha-" ] version; in if sourceVersion.suffix == "" then "https://docs.python.org/release/${version}/whatsnew/changelog.html" else "https://docs.python.org/${majorMinor}/whatsnew/changelog.html#python-${dashedVersion}"; description = "A high-level dynamically-typed programming language"; longDescription = '' Python is a remarkably powerful dynamic programming language that is used in a wide variety of application domains. Some of its key distinguishing features include: clear, readable syntax; strong introspection capabilities; intuitive object orientation; natural expression of procedural code; full modularity, supporting hierarchical packages; exception-based error handling; and very high level dynamic data types. ''; license = licenses.psfl; pkgConfigModules = [ "python3" ]; platforms = platforms.linux ++ platforms.darwin ++ platforms.windows; maintainers = with maintainers; [ fridh ]; mainProgram = executable; }; }) [result] Failed to update python3Minimal 3.11.8 -> 3.12.2 https://repology.org/project/python/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath zotero, using log file: /var/log/nixpkgs-update/zotero/2024-03-25.log zotero 6.0.35 -> 6.0.37 https://repology.org/project/zotero/versions attrpath: zotero Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv building '/nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv'... trying https://download.zotero.org/client/release/6.0.37/Zotero-6.0.37_linux-x86_64.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download Zotero-6.0.37_linux-x86_64.tar.bz2 from any mirror error: builder for '/nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://download.zotero.org/client/release/6.0.37/Zotero-6.0.37_linux-x86_64.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download Zotero-6.0.37_linux-x86_64.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'zotero.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv /nix/store/1dvm7pyzwfaa1vdidw8sagcynmv2lg9b-zotero.desktop.drv /nix/store/nkyh8x2z37qscd0r7yk57za2p9a725zh-zotero-6.0.37.drv building '/nix/store/1dvm7pyzwfaa1vdidw8sagcynmv2lg9b-zotero.desktop.drv'... building '/nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv'... trying https://download.zotero.org/client/release/6.0.37/Zotero-6.0.37_linux-x86_64.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download Zotero-6.0.37_linux-x86_64.tar.bz2 from any mirror error: builder for '/nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://download.zotero.org/client/release/6.0.37/Zotero-6.0.37_linux-x86_64.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download Zotero-6.0.37_linux-x86_64.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/0g9r2ch1sdkif7y0xms39kkvj2agl60p-Zotero-6.0.37_linux-x86_64.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/nkyh8x2z37qscd0r7yk57za2p9a725zh-zotero-6.0.37.drv' failed to build [result] Failed to update zotero 6.0.35 -> 6.0.37 https://repology.org/project/zotero/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.lit, using log file: /var/log/nixpkgs-update/python312Packages.lit/2024-03-25.log python312Packages.lit 17.0.6 -> 18.1.2 https://repology.org/project/python:lit/versions attrpath: python312Packages.lit Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/yvpxxijr7s3mvm0w2s4rpgg9m7482rsa-packages.json.drv building '/nix/store/yvpxxijr7s3mvm0w2s4rpgg9m7482rsa-packages.json.drv'... Going to be running update for following packages: - python3.12-lit-17.0.6 Press Enter key to continue... Running update for: - python3.12-lit-17.0.6: UPDATING ... - python3.12-lit-17.0.6: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/lit/default.nix b/pkgs/development/python-modules/lit/default.nix index 9b63a4e88377..b2a93873f854 100644 --- a/pkgs/development/python-modules/lit/default.nix +++ b/pkgs/development/python-modules/lit/default.nix @@ -7,12 +7,12 @@ buildPythonPackage rec { pname = "lit"; - version = "17.0.6"; + version = "18.1.2"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-36mvm1X8RQmla+e/I0bwedf0okLVg7ny4LB4/Qq64xs="; + hash = "sha256-/erW5GT52XXTGpN7guEWLQdo1hoOXY7lWZGjPtSqcSg="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Python package with too many package rebuilds 610 > 500 [result] Failed to update python312Packages.lit 17.0.6 -> 18.1.2 https://repology.org/project/python:lit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ceph, using log file: /var/log/nixpkgs-update/ceph/2024-03-25.log ceph 18.2.1 -> 18.2.2 https://repology.org/project/ceph/versions attrpath: ceph Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update ceph 18.2.1 -> 18.2.2 https://repology.org/project/ceph/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python312Packages.pyside2, using log file: /var/log/nixpkgs-update/python312Packages.pyside2/2024-03-25.log python312Packages.pyside2 5.15.11 -> 5.15.13 https://repology.org/project/python:pyside2/versions attrpath: python312Packages.pyside2 Checking auto update branch... No auto update branch exists [version] [version] updated version and sha256 [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/python-modules/pyside2/default.nix b/pkgs/development/python-modules/pyside2/default.nix index 1d4cf2ce6038..567cdcf7f0b0 100644 --- a/pkgs/development/python-modules/pyside2/default.nix +++ b/pkgs/development/python-modules/pyside2/default.nix @@ -12,11 +12,11 @@ }: stdenv.mkDerivation rec { pname = "pyside2"; - version = "5.15.11"; + version = "5.15.13"; src = fetchurl { url = "https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-${version}-src/pyside-setup-opensource-src-${version}.tar.xz"; - sha256 = "sha256-2lZ807eFTSegtK/j6J3osvmLem1XOTvlbx/BP3cPryk="; + sha256 = "sha256-eld5eyAmjW68s53rpIx1Smmr+SIa7gPh89ym9lZbfak="; }; patches = [ [outpaths] eval start [outpaths] eval end Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python312Packages.pyside2 Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . python312Packages.pyside2 Standard output: error: build log of 'python312Packages.pyside2' is not available [result] Failed to update python312Packages.pyside2 5.15.11 -> 5.15.13 https://repology.org/project/python:pyside2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath emacsPackages.hyperbole, using log file: /var/log/nixpkgs-update/emacsPackages.hyperbole/2024-03-25.log emacsPackages.hyperbole 9.0.0 -> 9.0.1 https://repology.org/project/emacs:hyperbole/versions attrpath: emacsPackages.hyperbole Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update emacsPackages.hyperbole 9.0.0 -> 9.0.1 https://repology.org/project/emacs:hyperbole/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xmlformat, using log file: /var/log/nixpkgs-update/xmlformat/2024-03-25.log xmlformat 1.04 -> 1.9 https://repology.org/project/xmlformat/versions attrpath: xmlformat Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv building '/nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv'... trying http://www.kitebird.com/software/xmlformat/xmlformat-1.9.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com error: cannot download xmlformat-1.9.tar.gz from any mirror error: builder for '/nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv' failed with exit code 1; last 12 log lines: > > trying http://www.kitebird.com/software/xmlformat/xmlformat-1.9.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > error: cannot download xmlformat-1.9.tar.gz from any mirror For full logs, run 'nix log /nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'xmlformat.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv /nix/store/9nf6baysrzzzxc607j838558v560zlki-xmlformat-1.9.drv building '/nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv'... trying http://www.kitebird.com/software/xmlformat/xmlformat-1.9.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com error: cannot download xmlformat-1.9.tar.gz from any mirror error: builder for '/nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv' failed with exit code 1; last 12 log lines: > > trying http://www.kitebird.com/software/xmlformat/xmlformat-1.9.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: www.kitebird.com > error: cannot download xmlformat-1.9.tar.gz from any mirror For full logs, run 'nix log /nix/store/qz5n5vlwwki7xb72xi2y0i2d53y53xm8-xmlformat-1.9.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/9nf6baysrzzzxc607j838558v560zlki-xmlformat-1.9.drv' failed to build [result] Failed to update xmlformat 1.04 -> 1.9 https://repology.org/project/xmlformat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rust-analyzer-unwrapped, using log file: /var/log/nixpkgs-update/rust-analyzer-unwrapped/2024-03-25.log rust-analyzer-unwrapped 0 -> 1 attrpath: rust-analyzer-unwrapped Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] skipping because derivation has updateScript [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fsf3f0yk006ckmc825qichqh9pi0rnp3-packages.json.drv building '/nix/store/fsf3f0yk006ckmc825qichqh9pi0rnp3-packages.json.drv'... Going to be running update for following packages: - rust-analyzer-unwrapped-2024-03-18 Press Enter key to continue... Running update for: - rust-analyzer-unwrapped-2024-03-18: UPDATING ... - rust-analyzer-unwrapped-2024-03-18: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/tools/rust/rust-analyzer/default.nix b/pkgs/development/tools/rust/rust-analyzer/default.nix index 04bb998ab551..006ae3b1c76e 100644 --- a/pkgs/development/tools/rust/rust-analyzer/default.nix +++ b/pkgs/development/tools/rust/rust-analyzer/default.nix @@ -13,14 +13,14 @@ rustPlatform.buildRustPackage rec { pname = "rust-analyzer-unwrapped"; - version = "2024-03-18"; - cargoSha256 = "sha256-CZC90HtAuK66zXDCHam9YJet9C62psxkHeJ/+1vIjTg="; + version = "2024-03-25"; + cargoSha256 = "sha256-knvXvQ4e3Ab5zGcitfzlznad//0gAFSgWjOPiCjeFDM="; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-analyzer"; rev = version; - sha256 = "sha256-Jd6pmXlwKk5uYcjyO/8BfbUVmx8g31Qfk7auI2IG66A="; + sha256 = "sha256-4na1ZTc6Iknu6V1Wo6jnt6d3H0JdZfpKF4GX/WNa/Zc="; }; cargoBuildFlags = [ "--bin" "rust-analyzer" "--bin" "rust-analyzer-proc-macro-srv" ]; No auto update branch exists There might already be an open PR for this update: - rust-analyzer-unwrapped: 2024-03-18 -> 2024-03-25 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/298985" [result] Failed to update rust-analyzer-unwrapped 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.glyphtools, using log file: /var/log/nixpkgs-update/python311Packages.glyphtools/2024-03-25.log python311Packages.glyphtools 0 -> 1 attrpath: python311Packages.glyphtools Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/mnwgp3fjcjvlfrmwggqv9pzq1d05mcd4-packages.json.drv building '/nix/store/mnwgp3fjcjvlfrmwggqv9pzq1d05mcd4-packages.json.drv'... Going to be running update for following packages: - python3.11-glyphtools-0.8.0 Press Enter key to continue... Running update for: - python3.11-glyphtools-0.8.0: UPDATING ... - python3.11-glyphtools-0.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.glyphtools 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.tokenlib, using log file: /var/log/nixpkgs-update/python311Packages.tokenlib/2024-03-25.log python311Packages.tokenlib 0 -> 1 attrpath: python311Packages.tokenlib Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/8wa0x20aan9hgjbb4w3wnchpnz3bgch2-packages.json.drv building '/nix/store/8wa0x20aan9hgjbb4w3wnchpnz3bgch2-packages.json.drv'... Going to be running update for following packages: - python3.11-tokenlib-0.3.1 Press Enter key to continue... Running update for: - python3.11-tokenlib-0.3.1: UPDATING ... - python3.11-tokenlib-0.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.tokenlib 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.alabaster, using log file: /var/log/nixpkgs-update/python311Packages.alabaster/2024-03-25.log python311Packages.alabaster 0 -> 1 attrpath: python311Packages.alabaster Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/prpr1m9vihn7fanklrr5b23g6nfn34jz-packages.json.drv building '/nix/store/prpr1m9vihn7fanklrr5b23g6nfn34jz-packages.json.drv'... Going to be running update for following packages: - python3.11-alabaster-0.7.16 Press Enter key to continue... Running update for: - python3.11-alabaster-0.7.16: UPDATING ... - python3.11-alabaster-0.7.16: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.alabaster 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.napari-npe2, using log file: /var/log/nixpkgs-update/python311Packages.napari-npe2/2024-03-25.log python311Packages.napari-npe2 0 -> 1 attrpath: python311Packages.napari-npe2 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/rx9v3p5677n3yhbw5rzy523kj8jj97y6-packages.json.drv building '/nix/store/rx9v3p5677n3yhbw5rzy523kj8jj97y6-packages.json.drv'... Going to be running update for following packages: - python3.11-napari-npe2-0.7.2-unstable-2023-10-20 Press Enter key to continue... Running update for: - python3.11-napari-npe2-0.7.2-unstable-2023-10-20: UPDATING ... - python3.11-napari-npe2-0.7.2-unstable-2023-10-20: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.napari-npe2 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.micromapST, using log file: /var/log/nixpkgs-update/rPackages.micromapST/2024-03-25.log rPackages.micromapST 3.0.1 -> 3.0.2 https://repology.org/project/r:micromapst/versions attrpath: rPackages.micromapST Checking auto update branch... No auto update branch exists Old version 3.0.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.micromapST 3.0.1 -> 3.0.2 https://repology.org/project/r:micromapst/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.towncrier, using log file: /var/log/nixpkgs-update/python311Packages.towncrier/2024-03-25.log python311Packages.towncrier 0 -> 1 attrpath: python311Packages.towncrier Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6s6p1sydlcfva4s355vk65l70yqhfx58-packages.json.drv building '/nix/store/6s6p1sydlcfva4s355vk65l70yqhfx58-packages.json.drv'... Going to be running update for following packages: - python3.11-towncrier-23.11.0 Press Enter key to continue... Running update for: - python3.11-towncrier-23.11.0: UPDATING ... - python3.11-towncrier-23.11.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.towncrier 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.vulcan-api, using log file: /var/log/nixpkgs-update/python311Packages.vulcan-api/2024-03-25.log python311Packages.vulcan-api 0 -> 1 attrpath: python311Packages.vulcan-api Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9h4aq53gj6qi07w2msx5wafsdg1pwcvx-packages.json.drv building '/nix/store/9h4aq53gj6qi07w2msx5wafsdg1pwcvx-packages.json.drv'... Going to be running update for following packages: - python3.11-vulcan-api-2.3.2 Press Enter key to continue... Running update for: - python3.11-vulcan-api-2.3.2: UPDATING ... - python3.11-vulcan-api-2.3.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.vulcan-api 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath adwaita-qt, using log file: /var/log/nixpkgs-update/adwaita-qt/2024-03-25.log adwaita-qt 0 -> 1 attrpath: adwaita-qt Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/z8xy4rj56752fyjgnz2m21qp3v64izmh-packages.json.drv building '/nix/store/z8xy4rj56752fyjgnz2m21qp3v64izmh-packages.json.drv'... Going to be running update for following packages: - adwaita-qt-1.4.2 Press Enter key to continue... Running update for: - adwaita-qt-1.4.2: UPDATING ... - adwaita-qt-1.4.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update adwaita-qt 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.azure-mgmt-hanaonazure, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-hanaonazure/2024-03-25.log python311Packages.azure-mgmt-hanaonazure 0 -> 1 attrpath: python311Packages.azure-mgmt-hanaonazure Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fy2871r9xgi8hmxk76kvd5kg5pb5x97g-packages.json.drv building '/nix/store/fy2871r9xgi8hmxk76kvd5kg5pb5x97g-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-mgmt-hanaonazure-1.0.0 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-hanaonazure-1.0.0: UPDATING ... - python3.11-azure-mgmt-hanaonazure-1.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-hanaonazure 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pytest-httpbin, using log file: /var/log/nixpkgs-update/python311Packages.pytest-httpbin/2024-03-25.log python311Packages.pytest-httpbin 0 -> 1 attrpath: python311Packages.pytest-httpbin Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/nnrfy7wx7ygnqimmqz6l8h0mhhmhiwv4-packages.json.drv building '/nix/store/nnrfy7wx7ygnqimmqz6l8h0mhhmhiwv4-packages.json.drv'... Going to be running update for following packages: - python3.11-pytest-httpbin-2.0.0 Press Enter key to continue... Running update for: - python3.11-pytest-httpbin-2.0.0: UPDATING ... - python3.11-pytest-httpbin-2.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytest-httpbin 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.rsa, using log file: /var/log/nixpkgs-update/python311Packages.rsa/2024-03-25.log python311Packages.rsa 0 -> 1 attrpath: python311Packages.rsa Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bc1mgpn5glxbk6jyrczlrs7rpfbgfpl9-packages.json.drv building '/nix/store/bc1mgpn5glxbk6jyrczlrs7rpfbgfpl9-packages.json.drv'... Going to be running update for following packages: - python3.11-rsa-4.9 Press Enter key to continue... Running update for: - python3.11-rsa-4.9: UPDATING ... - python3.11-rsa-4.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.rsa 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath eplot, using log file: /var/log/nixpkgs-update/eplot/2024-03-25.log eplot 2.09 -> 20230228 https://repology.org/project/eplot/versions attrpath: eplot Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update eplot 2.09 -> 20230228 https://repology.org/project/eplot/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pcp, using log file: /var/log/nixpkgs-update/pcp/2024-03-25.log pcp 0.4.0 -> 6.2.0 https://repology.org/project/pcp/versions attrpath: pcp Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv building '/nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv'... trying https://github.com/dennis-tra/pcp/archive/v6.2.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/dennis-tra/pcp/archive/v6.2.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'pcp.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv /nix/store/3pkdyv3k0gjhaxg7xhpdiyzk0fy3mnsv-pcp-6.2.0-go-modules.drv /nix/store/iymjbck33bva4g3zzycsr2hb0z7pcxz4-pcp-6.2.0.drv building '/nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv'... trying https://github.com/dennis-tra/pcp/archive/v6.2.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/dennis-tra/pcp/archive/v6.2.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/mbwqbdv33zqjkdp6dg6rrs1l4fdl7dr5-source.drv'. error: 1 dependencies of derivation '/nix/store/iymjbck33bva4g3zzycsr2hb0z7pcxz4-pcp-6.2.0.drv' failed to build [result] Failed to update pcp 0.4.0 -> 6.2.0 https://repology.org/project/pcp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nzbhydra2, using log file: /var/log/nixpkgs-update/nzbhydra2/2024-03-25.log nzbhydra2 4.7.6 -> 5.3.11 https://repology.org/project/nzbhydra2/versions attrpath: nzbhydra2 Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv building '/nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv'... trying https://github.com/theotherp/nzbhydra2/releases/download/v5.3.11/nzbhydra2-5.3.11-linux.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv' failed with exit code 1; last 7 log lines: > > trying https://github.com/theotherp/nzbhydra2/releases/download/v5.3.11/nzbhydra2-5.3.11-linux.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'nzbhydra2.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv /nix/store/2xr9yxql6a3hk9hmqbrsv0wwqih8ca34-nzbhydra2-5.3.11.drv building '/nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv'... trying https://github.com/theotherp/nzbhydra2/releases/download/v5.3.11/nzbhydra2-5.3.11-linux.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv' failed with exit code 1; last 7 log lines: > > trying https://github.com/theotherp/nzbhydra2/releases/download/v5.3.11/nzbhydra2-5.3.11-linux.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/mrzm22fwdwr77nlrb1a9gc3k67bb0f75-source.drv'. error: 1 dependencies of derivation '/nix/store/2xr9yxql6a3hk9hmqbrsv0wwqih8ca34-nzbhydra2-5.3.11.drv' failed to build [result] Failed to update nzbhydra2 4.7.6 -> 5.3.11 https://repology.org/project/nzbhydra2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.unstructured-inference, using log file: /var/log/nixpkgs-update/python311Packages.unstructured-inference/2024-03-25.log python311Packages.unstructured-inference 0 -> 1 attrpath: python311Packages.unstructured-inference Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2i1qqr3s1chz7g1ggcp78rdvh7x61czb-packages.json.drv building '/nix/store/2i1qqr3s1chz7g1ggcp78rdvh7x61czb-packages.json.drv'... Going to be running update for following packages: - python3.11-unstructured-inference-0.7.24 Press Enter key to continue... Running update for: - python3.11-unstructured-inference-0.7.24: UPDATING ... - python3.11-unstructured-inference-0.7.24: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/unstructured-inference/default.nix b/pkgs/development/python-modules/unstructured-inference/default.nix index 82cda0652a51..a9da6c15fc00 100644 --- a/pkgs/development/python-modules/unstructured-inference/default.nix +++ b/pkgs/development/python-modules/unstructured-inference/default.nix @@ -22,14 +22,14 @@ buildPythonPackage rec { pname = "unstructured-inference"; - version = "0.7.24"; + version = "0.7.25"; format = "setuptools"; src = fetchFromGitHub { owner = "Unstructured-IO"; repo = "unstructured-inference"; rev = "refs/tags/${version}"; - hash = "sha256-AxQHTUgE4CyiinT7HEh6fvbw+uVi7lKUgfOc1KZOezU="; + hash = "sha256-jmDqFLkP2hGJYKIwRLH9uFtjTg+zvhADaf09eT0wTzY="; }; postPatch = '' No auto update branch exists [outpaths] eval start [outpaths] eval end Update edits cause no rebuilds. [result] Failed to update python311Packages.unstructured-inference 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.tokentrim, using log file: /var/log/nixpkgs-update/python311Packages.tokentrim/2024-03-25.log python311Packages.tokentrim 0 -> 1 attrpath: python311Packages.tokentrim Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/d7i0af62nvarxir6f7spg67gr2fylqh0-packages.json.drv building '/nix/store/d7i0af62nvarxir6f7spg67gr2fylqh0-packages.json.drv'... Going to be running update for following packages: - python3.11-tokentrim-0.1.13 Press Enter key to continue... Running update for: - python3.11-tokentrim-0.1.13: UPDATING ... - python3.11-tokentrim-0.1.13: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.tokentrim 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath filebench, using log file: /var/log/nixpkgs-update/filebench/2024-03-25.log filebench 1.4.9.1 -> 1.5.a3.27 https://repology.org/project/filebench/versions attrpath: filebench Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv building '/nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv'... trying https://downloads.sourceforge.net/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 845 0 --:--:-- --:--:-- --:--:-- 846 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 241 0 --:--:-- --:--:-- --:--:-- 241 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 318 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download filebench-1.5.a3.27.tar.gz from any mirror error: builder for '/nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 241 0 --:--:-- --:--:-- --:--:-- 241 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 318 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download filebench-1.5.a3.27.tar.gz from any mirror For full logs, run 'nix log /nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'filebench.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv /nix/store/pznz1czyrvm7sj9d0wcid3nnvdnvd7w1-filebench-1.5.a3.27.drv building '/nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv'... trying https://downloads.sourceforge.net/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://prdownloads.sourceforge.net/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1292 0 --:--:-- --:--:-- --:--:-- 1301 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 249 0 --:--:-- --:--:-- --:--:-- 249 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://freefr.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 318 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://osdn.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. error: cannot download filebench-1.5.a3.27.tar.gz from any mirror error: builder for '/nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 249 0 --:--:-- --:--:-- --:--:-- 249 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://freefr.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 318 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > 0 154 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://osdn.dl.sourceforge.net/sourceforge/filebench/filebench-1.5.a3.27.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (60) SSL: no alternative certificate subject name matches target host name 'osdn.dl.sourceforge.net' > More details here: https://curl.se/docs/sslcerts.html > > curl failed to verify the legitimacy of the server and therefore could not > establish a secure connection to it. To learn more about this situation and > how to fix it, please visit the web page mentioned above. > error: cannot download filebench-1.5.a3.27.tar.gz from any mirror For full logs, run 'nix log /nix/store/y3277vhdisvxl4am06w4fcj7q3xhgfvm-filebench-1.5.a3.27.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/pznz1czyrvm7sj9d0wcid3nnvdnvd7w1-filebench-1.5.a3.27.drv' failed to build [result] Failed to update filebench 1.4.9.1 -> 1.5.a3.27 https://repology.org/project/filebench/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.glom, using log file: /var/log/nixpkgs-update/python311Packages.glom/2024-03-25.log python311Packages.glom 0 -> 1 attrpath: python311Packages.glom Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/lh606gkfkcswf11c8f3c15jxdbqnmc1r-packages.json.drv building '/nix/store/lh606gkfkcswf11c8f3c15jxdbqnmc1r-packages.json.drv'... Going to be running update for following packages: - python3.11-glom-23.5.0 Press Enter key to continue... Running update for: - python3.11-glom-23.5.0: UPDATING ... - python3.11-glom-23.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.glom 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sway-overfocus, using log file: /var/log/nixpkgs-update/sway-overfocus/2024-03-25.log sway-overfocus 0 -> 1 attrpath: sway-overfocus Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] skipping because derivation has updateScript [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/32y3y1xblqcvf27yz5dd3g40dv8pavdi-packages.json.drv building '/nix/store/32y3y1xblqcvf27yz5dd3g40dv8pavdi-packages.json.drv'... Going to be running update for following packages: - sway-overfocus-0.2.3-fix Press Enter key to continue... Running update for: - sway-overfocus-0.2.3-fix: UPDATING ... - sway-overfocus-0.2.3-fix: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update sway-overfocus 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO @volth asked to not update xfce [result] Failed to update xfce.xfce4-cpufreq-plugin 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath meteo, using log file: /var/log/nixpkgs-update/meteo/2024-03-25.log meteo 0 -> 1 attrpath: meteo Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/b0gpjzw66qk46sv0msa32yh0vxyxsfla-packages.json.drv building '/nix/store/b0gpjzw66qk46sv0msa32yh0vxyxsfla-packages.json.drv'... Going to be running update for following packages: - meteo-0.9.9.3 Press Enter key to continue... Running update for: - meteo-0.9.9.3: UPDATING ... - meteo-0.9.9.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update meteo 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath fluxboxlauncher, using log file: /var/log/nixpkgs-update/fluxboxlauncher/2024-03-25.log fluxboxlauncher 0 -> 1 attrpath: fluxboxlauncher Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fal5bqayy50xyggk21vp3fadndrr17qs-packages.json.drv building '/nix/store/fal5bqayy50xyggk21vp3fadndrr17qs-packages.json.drv'... Going to be running update for following packages: - fluxboxlauncher-0.2.1 Press Enter key to continue... Running update for: - fluxboxlauncher-0.2.1: UPDATING ... - fluxboxlauncher-0.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update fluxboxlauncher 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath vowpal-wabbit, using log file: /var/log/nixpkgs-update/vowpal-wabbit/2024-03-25.log vowpal-wabbit 9.6.0 -> 9.9.0 https://repology.org/project/vowpal-wabbit/versions attrpath: vowpal-wabbit Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update vowpal-wabbit 9.6.0 -> 9.9.0 https://repology.org/project/vowpal-wabbit/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.MazamaLocationUtils, using log file: /var/log/nixpkgs-update/rPackages.MazamaLocationUtils/2024-03-25.log rPackages.MazamaLocationUtils 0.4.1 -> 0.4.3 https://repology.org/project/r:mazamalocationutils/versions attrpath: rPackages.MazamaLocationUtils Checking auto update branch... No auto update branch exists Old version 0.4.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.MazamaLocationUtils 0.4.1 -> 0.4.3 https://repology.org/project/r:mazamalocationutils/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath check-ups-health, using log file: /var/log/nixpkgs-update/check-ups-health/2024-03-25.log check-ups-health 2.8.3.3 -> 3.0.5 https://repology.org/project/check-ups-health/versions attrpath: check-ups-health Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update check-ups-health 2.8.3.3 -> 3.0.5 https://repology.org/project/check-ups-health/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath graalvmCEPackages.graaljs, using log file: /var/log/nixpkgs-update/graalvmCEPackages.graaljs/2024-03-25.log graalvmCEPackages.graaljs 0 -> 1 attrpath: graalvmCEPackages.graaljs Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/bhgcn67ijakjq2fgp3p76vgri68p1pbp-packages.json.drv building '/nix/store/bhgcn67ijakjq2fgp3p76vgri68p1pbp-packages.json.drv'... Going to be running update for following packages: - js-installable-svm-23.1.0 Press Enter key to continue... Running update for: - js-installable-svm-23.1.0: UPDATING ... - js-installable-svm-23.1.0: ERROR --- SHOWING ERROR LOG FOR js-installable-svm-23.1.0 ---------------------- error: attribute 'js-installable-svm' in selection path 'graalvmCEPackages.js-installable-svm.version' not found --- SHOWING ERROR LOG FOR js-installable-svm-23.1.0 ---------------------- The update script for js-installable-svm-23.1.0 failed with exit code 1 [result] Failed to update graalvmCEPackages.graaljs 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnomeExtensions.caffeine, using log file: /var/log/nixpkgs-update/gnomeExtensions.caffeine/2024-03-25.log gnomeExtensions.caffeine 52 -> 436.48.1 https://repology.org/project/gnome:caffeine/versions attrpath: gnomeExtensions.caffeine Checking auto update branch... No auto update branch exists Old version 52" not present in master derivation file with contents: { pkgs, lib, stdenv, fetchzip, nixosTests }: let buildGnomeExtension = { # Every gnome extension has a UUID. It's the name of the extension folder once unpacked # and can always be found in the metadata.json of every extension. uuid, name, pname, description, # extensions.gnome.org extension URL link, # Extension version numbers are integers version, sha256, # Hex-encoded string of JSON bytes metadata, }: stdenv.mkDerivation { pname = "gnome-shell-extension-${pname}"; version = builtins.toString version; src = fetchzip { url = "https://extensions.gnome.org/extension-data/${ builtins.replaceStrings [ "@" ] [ "" ] uuid }.v${builtins.toString version}.shell-extension.zip"; inherit sha256; stripRoot = false; # The download URL may change content over time. This is because the # metadata.json is automatically generated, and parts of it can be changed # without making a new release. We simply substitute the possibly changed fields # with their content from when we last updated, and thus get a deterministic output # hash. postFetch = '' echo "${metadata}" | base64 --decode > $out/metadata.json ''; }; nativeBuildInputs = with pkgs; [ buildPackages.glib ]; buildPhase = '' runHook preBuild if [ -d schemas ]; then glib-compile-schemas --strict schemas fi runHook postBuild ''; installPhase = '' runHook preInstall mkdir -p $out/share/gnome-shell/extensions/ cp -r -T . $out/share/gnome-shell/extensions/${uuid} runHook postInstall ''; meta = { description = builtins.head (lib.splitString "\n" description); longDescription = description; homepage = link; license = lib.licenses.gpl2Plus; # https://wiki.gnome.org/Projects/GnomeShell/Extensions/Review#Licensing maintainers = with lib.maintainers; [ piegames ]; }; passthru = { extensionPortalSlug = pname; # Store the extension's UUID, because we might need it at some places extensionUuid = uuid; tests = { gnome-extensions = nixosTests.gnome-extensions; }; }; }; in lib.makeOverridable buildGnomeExtension [result] Failed to update gnomeExtensions.caffeine 52 -> 436.48.1 https://repology.org/project/gnome:caffeine/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath charles, using log file: /var/log/nixpkgs-update/charles/2024-03-25.log charles 4.6.4 -> 4.6.6 https://repology.org/project/charles/versions attrpath: charles Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update charles 4.6.4 -> 4.6.6 https://repology.org/project/charles/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.amply, using log file: /var/log/nixpkgs-update/python311Packages.amply/2024-03-25.log python311Packages.amply 0 -> 1 attrpath: python311Packages.amply Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/s2bcnmjw89702hn3azzvjklxhrbqrwdc-packages.json.drv building '/nix/store/s2bcnmjw89702hn3azzvjklxhrbqrwdc-packages.json.drv'... Going to be running update for following packages: - python3.11-amply-0.1.6 Press Enter key to continue... Running update for: - python3.11-amply-0.1.6: UPDATING ... - python3.11-amply-0.1.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.amply 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath boehmgc, using log file: /var/log/nixpkgs-update/boehmgc/2024-03-25.log boehmgc 8.2.4 -> 8.2.6 https://repology.org/project/boehm-gc/versions attrpath: boehmgc Checking auto update branch... An auto update branch exists with message `boehmgc: 8.2.4 -> 8.2.6`. New version is 8.2.6. An auto update branch exists with an equal or greater version [result] Failed to update boehmgc 8.2.4 -> 8.2.6 https://repology.org/project/boehm-gc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.sphinx-mdinclude, using log file: /var/log/nixpkgs-update/python311Packages.sphinx-mdinclude/2024-03-25.log python311Packages.sphinx-mdinclude 0 -> 1 attrpath: python311Packages.sphinx-mdinclude Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/1rpsrsjnk7l04k1kvyb0mz0v0fi5f8lj-packages.json.drv building '/nix/store/1rpsrsjnk7l04k1kvyb0mz0v0fi5f8lj-packages.json.drv'... Going to be running update for following packages: - python3.11-sphinx-mdinclude-0.5.3 Press Enter key to continue... Running update for: - python3.11-sphinx-mdinclude-0.5.3: UPDATING ... - python3.11-sphinx-mdinclude-0.5.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sphinx-mdinclude 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libmad, using log file: /var/log/nixpkgs-update/libmad/2024-03-25.log libmad 0.15.1b -> 0.16.4 https://repology.org/project/libmad/versions attrpath: libmad Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update libmad 0.15.1b -> 0.16.4 https://repology.org/project/libmad/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.adbcsqlite, using log file: /var/log/nixpkgs-update/rPackages.adbcsqlite/2024-03-25.log rPackages.adbcsqlite 0.8.0 -> 0.10.0 https://repology.org/project/r:adbcsqlite/versions attrpath: rPackages.adbcsqlite Checking auto update branch... No auto update branch exists Old version 0.8.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.adbcsqlite 0.8.0 -> 0.10.0 https://repology.org/project/r:adbcsqlite/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pantheon.elementary-print-shim, using log file: /var/log/nixpkgs-update/pantheon.elementary-print-shim/2024-03-25.log pantheon.elementary-print-shim 0 -> 1 attrpath: pantheon.elementary-print-shim Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/vnbw7y39277q7m570hj0x2zs9a7dfflz-packages.json.drv building '/nix/store/vnbw7y39277q7m570hj0x2zs9a7dfflz-packages.json.drv'... Going to be running update for following packages: - elementary-print-shim-0.1.3 Press Enter key to continue... Running update for: - elementary-print-shim-0.1.3: UPDATING ... - elementary-print-shim-0.1.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pantheon.elementary-print-shim 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pycoolmasternet-async, using log file: /var/log/nixpkgs-update/python311Packages.pycoolmasternet-async/2024-03-25.log python311Packages.pycoolmasternet-async 0 -> 1 attrpath: python311Packages.pycoolmasternet-async Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/d2nsr3ijn4w59zrp4phvxrvc1p9pqjnp-packages.json.drv building '/nix/store/d2nsr3ijn4w59zrp4phvxrvc1p9pqjnp-packages.json.drv'... Going to be running update for following packages: - python3.11-pycoolmasternet-async-0.1.6 Press Enter key to continue... Running update for: - python3.11-pycoolmasternet-async-0.1.6: UPDATING ... - python3.11-pycoolmasternet-async-0.1.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pycoolmasternet-async 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ath9k-htc-blobless-firmware, using log file: /var/log/nixpkgs-update/ath9k-htc-blobless-firmware/2024-03-25.log ath9k-htc-blobless-firmware 0 -> 1 attrpath: ath9k-htc-blobless-firmware Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] these 2 derivations will be built: /nix/store/sfa7i43751zih1jk7s51fj5ijdvqf24v-ath9k-htc-blobless-firmware-1.4.0-updateScript.drv /nix/store/vx3ihsc4a69q3vwlk383c600ycz6zl01-packages.json.drv building '/nix/store/sfa7i43751zih1jk7s51fj5ijdvqf24v-ath9k-htc-blobless-firmware-1.4.0-updateScript.drv'... building '/nix/store/vx3ihsc4a69q3vwlk383c600ycz6zl01-packages.json.drv'... Going to be running update for following packages: - ath9k-htc-blobless-firmware-1.4.0 Press Enter key to continue... Running update for: - ath9k-htc-blobless-firmware-1.4.0: UPDATING ... - ath9k-htc-blobless-firmware-1.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update ath9k-htc-blobless-firmware 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath geogebra6, using log file: /var/log/nixpkgs-update/geogebra6/2024-03-25.log geogebra6 6-0-794-0 -> 6.0.832.0 https://repology.org/project/geogebra/versions attrpath: geogebra6 Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update geogebra6 6-0-794-0 -> 6.0.832.0 https://repology.org/project/geogebra/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sonic-visualiser, using log file: /var/log/nixpkgs-update/sonic-visualiser/2024-03-25.log sonic-visualiser 4.5.1 -> 4.5.2 https://repology.org/project/sonic-visualiser/versions attrpath: sonic-visualiser Checking auto update branch... No auto update branch exists [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv building '/nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv'... trying https://code.soundsoftware.ac.uk/attachments/download/2841/sonic-visualiser-4.5.2.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download sonic-visualiser-4.5.2.tar.gz from any mirror error: builder for '/nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://code.soundsoftware.ac.uk/attachments/download/2841/sonic-visualiser-4.5.2.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download sonic-visualiser-4.5.2.tar.gz from any mirror For full logs, run 'nix log /nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'sonic-visualiser.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv /nix/store/09491nsy6ngzy49j6zpss3crbp4hskya-sonic-visualiser-4.5.2.drv these 3 paths will be fetched (3.11 MiB download, 22.19 MiB unpacked): /nix/store/0rvzw1dahhd1h8qyhyxmwgr2l745fn3a-capnproto-1.0.2 /nix/store/3fpif5agvwmn3b5srd62p6lgrg9kp286-libfishsound-1.0.0 /nix/store/iv3hi6l0810d19s68dalf22fyr9bzpa1-raptor-1.4.21 copying path '/nix/store/iv3hi6l0810d19s68dalf22fyr9bzpa1-raptor-1.4.21' from 'https://cache.nixos.org'... copying path '/nix/store/0rvzw1dahhd1h8qyhyxmwgr2l745fn3a-capnproto-1.0.2' from 'https://cache.nixos.org'... copying path '/nix/store/3fpif5agvwmn3b5srd62p6lgrg9kp286-libfishsound-1.0.0' from 'https://cache.nixos.org'... building '/nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv'... cannot link '/nix/store/.links/03qsh12w3gmz0j2ip4cnmc1ls1va2dj8hi1njjlxs1llbgdw8zzg' to '/nix/store/3fpif5agvwmn3b5srd62p6lgrg9kp286-libfishsound-1.0.0/share/doc/libfishsound/latex/decode_8h.tex': No space left on device trying https://code.soundsoftware.ac.uk/attachments/download/2841/sonic-visualiser-4.5.2.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download sonic-visualiser-4.5.2.tar.gz from any mirror error: builder for '/nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://code.soundsoftware.ac.uk/attachments/download/2841/sonic-visualiser-4.5.2.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download sonic-visualiser-4.5.2.tar.gz from any mirror For full logs, run 'nix log /nix/store/cfiay0w8kl66nz4n5lx2mgkyf4h40fkc-sonic-visualiser-4.5.2.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/09491nsy6ngzy49j6zpss3crbp4hskya-sonic-visualiser-4.5.2.drv' failed to build [result] Failed to update sonic-visualiser 4.5.1 -> 4.5.2 https://repology.org/project/sonic-visualiser/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath denaro, using log file: /var/log/nixpkgs-update/denaro/2024-03-25.log denaro 0 -> 1 attrpath: denaro Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/g09rqp2v7lbk5cb6n0c3h6g1mssclqm0-packages.json.drv building '/nix/store/g09rqp2v7lbk5cb6n0c3h6g1mssclqm0-packages.json.drv'... Going to be running update for following packages: - denaro-2024.2.0 Press Enter key to continue... Running update for: - denaro-2024.2.0: UPDATING ... - denaro-2024.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update denaro 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pytest-pudb, using log file: /var/log/nixpkgs-update/python311Packages.pytest-pudb/2024-03-25.log python311Packages.pytest-pudb 0 -> 1 attrpath: python311Packages.pytest-pudb Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/24fxwzb4zddgzbmv3k4lwprhm0fjlz0m-packages.json.drv building '/nix/store/24fxwzb4zddgzbmv3k4lwprhm0fjlz0m-packages.json.drv'... Going to be running update for following packages: - python3.11-pytest-pudb-0.7.0 Press Enter key to continue... Running update for: - python3.11-pytest-pudb-0.7.0: UPDATING ... - python3.11-pytest-pudb-0.7.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytest-pudb 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pixel2svg, using log file: /var/log/nixpkgs-update/pixel2svg/2024-03-25.log pixel2svg 0 -> 1 attrpath: pixel2svg Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/whjppdgi24igsb16j0f9bvsh0zwsdgww-packages.json.drv building '/nix/store/whjppdgi24igsb16j0f9bvsh0zwsdgww-packages.json.drv'... Going to be running update for following packages: - python3.10-pixel2svg-0.3.0 Press Enter key to continue... Running update for: - python3.10-pixel2svg-0.3.0: UPDATING ... - python3.10-pixel2svg-0.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pixel2svg 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.textacy, using log file: /var/log/nixpkgs-update/python311Packages.textacy/2024-03-25.log python311Packages.textacy 0 -> 1 attrpath: python311Packages.textacy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ppwk05mfn3xh3l2gp7swy0ghr16hrv0c-packages.json.drv building '/nix/store/ppwk05mfn3xh3l2gp7swy0ghr16hrv0c-packages.json.drv'... Going to be running update for following packages: - python3.11-textacy-0.13.0 Press Enter key to continue... Running update for: - python3.11-textacy-0.13.0: UPDATING ... - python3.11-textacy-0.13.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.textacy 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.subprocess-tee, using log file: /var/log/nixpkgs-update/python311Packages.subprocess-tee/2024-03-25.log python311Packages.subprocess-tee 0 -> 1 attrpath: python311Packages.subprocess-tee Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/dxnsp5af97c0pm55sbfy9f05ll9jf05m-packages.json.drv building '/nix/store/dxnsp5af97c0pm55sbfy9f05ll9jf05m-packages.json.drv'... Going to be running update for following packages: - python3.11-subprocess-tee-0.4.1 Press Enter key to continue... Running update for: - python3.11-subprocess-tee-0.4.1: UPDATING ... - python3.11-subprocess-tee-0.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.subprocess-tee 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.python-telegram-bot, using log file: /var/log/nixpkgs-update/python311Packages.python-telegram-bot/2024-03-25.log python311Packages.python-telegram-bot 0 -> 1 attrpath: python311Packages.python-telegram-bot Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/rmsxpkwgvizyn1ih67x2ymycmxpaacjl-packages.json.drv building '/nix/store/rmsxpkwgvizyn1ih67x2ymycmxpaacjl-packages.json.drv'... Going to be running update for following packages: - python3.11-python-telegram-bot-21.0.1 Press Enter key to continue... Running update for: - python3.11-python-telegram-bot-21.0.1: UPDATING ... - python3.11-python-telegram-bot-21.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-telegram-bot 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath virtscreen, using log file: /var/log/nixpkgs-update/virtscreen/2024-03-25.log virtscreen 0 -> 1 attrpath: virtscreen Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/kkj3s5ig095x7p00bkj2jqzly9vv85a8-packages.json.drv building '/nix/store/kkj3s5ig095x7p00bkj2jqzly9vv85a8-packages.json.drv'... Going to be running update for following packages: - virtscreen-0.3.1 Press Enter key to continue... Running update for: - virtscreen-0.3.1: UPDATING ... - virtscreen-0.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update virtscreen 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath fritz-exporter, using log file: /var/log/nixpkgs-update/fritz-exporter/2024-03-25.log fritz-exporter 0 -> 1 attrpath: fritz-exporter Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/51kf5jbwzl550jrgh2r0idg07aniwaid-packages.json.drv building '/nix/store/51kf5jbwzl550jrgh2r0idg07aniwaid-packages.json.drv'... Going to be running update for following packages: - fritz-exporter-2.5.0 Press Enter key to continue... Running update for: - fritz-exporter-2.5.0: UPDATING ... - fritz-exporter-2.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update fritz-exporter 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pylama, using log file: /var/log/nixpkgs-update/python311Packages.pylama/2024-03-25.log python311Packages.pylama 0 -> 1 attrpath: python311Packages.pylama Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/k23bzim5vkplsx12ng5wkmqgabkg9cda-packages.json.drv building '/nix/store/k23bzim5vkplsx12ng5wkmqgabkg9cda-packages.json.drv'... Going to be running update for following packages: - python3.11-pylama-8.4.1 Press Enter key to continue... Running update for: - python3.11-pylama-8.4.1: UPDATING ... - python3.11-pylama-8.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pylama 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.aws-sam-translator, using log file: /var/log/nixpkgs-update/python311Packages.aws-sam-translator/2024-03-25.log python311Packages.aws-sam-translator 0 -> 1 attrpath: python311Packages.aws-sam-translator Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7am41llwmb9nhp18hadys2alm20k4aqx-packages.json.drv building '/nix/store/7am41llwmb9nhp18hadys2alm20k4aqx-packages.json.drv'... Going to be running update for following packages: - python3.11-aws-sam-translator-1.86.0 Press Enter key to continue... Running update for: - python3.11-aws-sam-translator-1.86.0: UPDATING ... - python3.11-aws-sam-translator-1.86.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aws-sam-translator 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cozy, using log file: /var/log/nixpkgs-update/cozy/2024-03-25.log cozy 0 -> 1 attrpath: cozy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/y8bd2lpvy3h2kd4y1pcmrbl5b98jvm7p-packages.json.drv building '/nix/store/y8bd2lpvy3h2kd4y1pcmrbl5b98jvm7p-packages.json.drv'... Going to be running update for following packages: - cozy-1.3.0 Press Enter key to continue... Running update for: - cozy-1.3.0: UPDATING ... - cozy-1.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update cozy 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bluetooth_battery, using log file: /var/log/nixpkgs-update/bluetooth_battery/2024-03-25.log bluetooth_battery 0 -> 1 attrpath: bluetooth_battery Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/kr5cwh32i6h7q5v1kyv4f3j9f0ccy2x0-packages.json.drv building '/nix/store/kr5cwh32i6h7q5v1kyv4f3j9f0ccy2x0-packages.json.drv'... Going to be running update for following packages: - bluetooth_battery-1.3.1 Press Enter key to continue... Running update for: - bluetooth_battery-1.3.1: UPDATING ... - bluetooth_battery-1.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update bluetooth_battery 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.django-encrypted-model-fields, using log file: /var/log/nixpkgs-update/python311Packages.django-encrypted-model-fields/2024-03-25.log python311Packages.django-encrypted-model-fields 0 -> 1 attrpath: python311Packages.django-encrypted-model-fields Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/vfd297j0rq92q4vkksk0lg064ghd3x08-packages.json.drv building '/nix/store/vfd297j0rq92q4vkksk0lg064ghd3x08-packages.json.drv'... Going to be running update for following packages: - python3.11-django-encrypted-model-fields-0.6.5 Press Enter key to continue... Running update for: - python3.11-django-encrypted-model-fields-0.6.5: UPDATING ... - python3.11-django-encrypted-model-fields-0.6.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.django-encrypted-model-fields 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath luna-icons, using log file: /var/log/nixpkgs-update/luna-icons/2024-03-25.log luna-icons 0 -> 1 attrpath: luna-icons Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Failed with exit code 1 this derivation will be built: /nix/store/1syhqjb6yqrm5wk2zmpw1avsppwrd11f-packages.json.drv building '/nix/store/1syhqjb6yqrm5wk2zmpw1avsppwrd11f-packages.json.drv'... Going to be running update for following packages: - luna-icons-2.1 Press Enter key to continue... Running update for: - luna-icons-2.1: UPDATING ... - luna-icons-2.1: ERROR --- SHOWING ERROR LOG FOR luna-icons-2.1 ---------------------- + name= + pname= + version= + attr_path= + version_lister='/nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/list-git-tags ' + ignored_versions= + rev_prefix= + odd_unstable= + patchlevel_unstable= + [[ -n '' ]] + name=luna-icons-2.1 + [[ -n '' ]] + pname=luna-icons + [[ -n '' ]] + version=2.1 + [[ -n '' ]] + attr_path=luna-icons + echo '# luna-icons-2.1' ++ sh -c '/nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/list-git-tags --pname=luna-icons --attr-path=luna-icons --file="update-git-commits.txt"' fatal: could not read Username for 'https://github.com': No such device or address + tags= + '[' -n '' ']' ++ echo '' ++ /nix/store/nk45h8dy9zlx4d0b9ghf5xnj9pypyqgh-gnugrep-3.11/bin/grep '^[0-9]' + tags= --- SHOWING ERROR LOG FOR luna-icons-2.1 ---------------------- The update script for luna-icons-2.1 failed with exit code 1 [result] Failed to update luna-icons 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.grpcio-status, using log file: /var/log/nixpkgs-update/python311Packages.grpcio-status/2024-03-25.log python311Packages.grpcio-status 0 -> 1 attrpath: python311Packages.grpcio-status Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6ayi5g2qvsy888nsagsblyvbxxh81wmv-packages.json.drv building '/nix/store/6ayi5g2qvsy888nsagsblyvbxxh81wmv-packages.json.drv'... Going to be running update for following packages: - python3.11-grpcio-status-1.62.1 Press Enter key to continue... Running update for: - python3.11-grpcio-status-1.62.1: UPDATING ... - python3.11-grpcio-status-1.62.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.grpcio-status 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.MechanicalSoup, using log file: /var/log/nixpkgs-update/python311Packages.MechanicalSoup/2024-03-25.log python311Packages.MechanicalSoup 0 -> 1 attrpath: python311Packages.MechanicalSoup Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/a7jc37myj7x9b5lwdkvhyizksrw9h172-packages.json.drv building '/nix/store/a7jc37myj7x9b5lwdkvhyizksrw9h172-packages.json.drv'... Going to be running update for following packages: - python3.11-mechanicalsoup-1.3.0 Press Enter key to continue... Running update for: - python3.11-mechanicalsoup-1.3.0: UPDATING ... - python3.11-mechanicalsoup-1.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.MechanicalSoup 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.MixtureMissing, using log file: /var/log/nixpkgs-update/rPackages.MixtureMissing/2024-03-25.log rPackages.MixtureMissing 3.0.0 -> 3.0.2 https://repology.org/project/r:mixturemissing/versions attrpath: rPackages.MixtureMissing Checking auto update branch... No auto update branch exists Old version 3.0.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.MixtureMissing 3.0.0 -> 3.0.2 https://repology.org/project/r:mixturemissing/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.cwcwidth, using log file: /var/log/nixpkgs-update/python311Packages.cwcwidth/2024-03-25.log python311Packages.cwcwidth 0 -> 1 attrpath: python311Packages.cwcwidth Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/3kpnv8fjcl7aa00kfxqg2pqhlwp04rgp-packages.json.drv building '/nix/store/3kpnv8fjcl7aa00kfxqg2pqhlwp04rgp-packages.json.drv'... Going to be running update for following packages: - python3.11-cwcwidth-0.1.9 Press Enter key to continue... Running update for: - python3.11-cwcwidth-0.1.9: UPDATING ... - python3.11-cwcwidth-0.1.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.cwcwidth 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gnome.gnome-font-viewer, using log file: /var/log/nixpkgs-update/gnome.gnome-font-viewer/2024-03-25.log gnome.gnome-font-viewer 0 -> 1 attrpath: gnome.gnome-font-viewer Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome.gnome-font-viewer 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sonic-server, using log file: /var/log/nixpkgs-update/sonic-server/2024-03-25.log sonic-server 0 -> 1 attrpath: sonic-server Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] skipping because derivation has updateScript [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/21q791vdr56pgv4h04s9bn20fgbz98n2-packages.json.drv building '/nix/store/21q791vdr56pgv4h04s9bn20fgbz98n2-packages.json.drv'... Going to be running update for following packages: - sonic-server-1.4.8 Press Enter key to continue... Running update for: - sonic-server-1.4.8: UPDATING ... - sonic-server-1.4.8: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update sonic-server 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rivalcfg, using log file: /var/log/nixpkgs-update/rivalcfg/2024-03-25.log rivalcfg 0 -> 1 attrpath: rivalcfg Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/vznvr44vnhz6vr13p9nwb3n2zcninazh-packages.json.drv building '/nix/store/vznvr44vnhz6vr13p9nwb3n2zcninazh-packages.json.drv'... Going to be running update for following packages: - python3.11-rivalcfg-4.12.0 Press Enter key to continue... Running update for: - python3.11-rivalcfg-4.12.0: UPDATING ... - python3.11-rivalcfg-4.12.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update rivalcfg 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath nixos-render-docs, using log file: /var/log/nixpkgs-update/nixos-render-docs/2024-03-25.log nixos-render-docs 0 -> 1 attrpath: nixos-render-docs Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/mbh8qym76n1yrfcq9c3lvg5ljbss6815-packages.json.drv building '/nix/store/mbh8qym76n1yrfcq9c3lvg5ljbss6815-packages.json.drv'... Going to be running update for following packages: - nixos-render-docs-0.0 Press Enter key to continue... Running update for: - nixos-render-docs-0.0: UPDATING ... - nixos-render-docs-0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update nixos-render-docs 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libnatpmp, using log file: /var/log/nixpkgs-update/libnatpmp/2024-03-25.log libnatpmp 20230423 -> 20240116 https://repology.org/project/libnatpmp/versions attrpath: libnatpmp Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update libnatpmp 20230423 -> 20240116 https://repology.org/project/libnatpmp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO @volth asked to not update xfce [result] Failed to update xfce.xfce4-screenshooter 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.ktaucenters, using log file: /var/log/nixpkgs-update/rPackages.ktaucenters/2024-03-25.log rPackages.ktaucenters 0.1.0 -> 1.0.0 https://repology.org/project/r:ktaucenters/versions attrpath: rPackages.ktaucenters Checking auto update branch... No auto update branch exists Old version 0.1.0" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.ktaucenters 0.1.0 -> 1.0.0 https://repology.org/project/r:ktaucenters/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.garminconnect, using log file: /var/log/nixpkgs-update/python311Packages.garminconnect/2024-03-25.log python311Packages.garminconnect 0 -> 1 attrpath: python311Packages.garminconnect Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/10af4sbvpn2gj1ilnigishiagy91jn1i-packages.json.drv building '/nix/store/10af4sbvpn2gj1ilnigishiagy91jn1i-packages.json.drv'... Going to be running update for following packages: - python3.11-garminconnect-0.2.15 Press Enter key to continue... Running update for: - python3.11-garminconnect-0.2.15: UPDATING ... - python3.11-garminconnect-0.2.15: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.garminconnect 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.localstack-ext, using log file: /var/log/nixpkgs-update/python311Packages.localstack-ext/2024-03-25.log python311Packages.localstack-ext 0 -> 1 attrpath: python311Packages.localstack-ext Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/b1lfdg3hmj027x73lccxhphfyxxmw2wl-packages.json.drv building '/nix/store/b1lfdg3hmj027x73lccxhphfyxxmw2wl-packages.json.drv'... Going to be running update for following packages: - python3.11-localstack-ext-3.2.0 Press Enter key to continue... Running update for: - python3.11-localstack-ext-3.2.0: UPDATING ... - python3.11-localstack-ext-3.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.localstack-ext 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.widgetsnbextension, using log file: /var/log/nixpkgs-update/python311Packages.widgetsnbextension/2024-03-25.log python311Packages.widgetsnbextension 0 -> 1 attrpath: python311Packages.widgetsnbextension Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/z54ysr8adhw24vv26bq1x6nbxz8jmabh-packages.json.drv building '/nix/store/z54ysr8adhw24vv26bq1x6nbxz8jmabh-packages.json.drv'... Going to be running update for following packages: - python3.11-widgetsnbextension-4.0.10 Press Enter key to continue... Running update for: - python3.11-widgetsnbextension-4.0.10: UPDATING ... - python3.11-widgetsnbextension-4.0.10: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.widgetsnbextension 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.textwrap3, using log file: /var/log/nixpkgs-update/python311Packages.textwrap3/2024-03-25.log python311Packages.textwrap3 0 -> 1 attrpath: python311Packages.textwrap3 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/g1xail9862haab3ny62p5nbpmks2h81j-packages.json.drv building '/nix/store/g1xail9862haab3ny62p5nbpmks2h81j-packages.json.drv'... Going to be running update for following packages: - python3.11-textwrap3-0.9.2 Press Enter key to continue... Running update for: - python3.11-textwrap3-0.9.2: UPDATING ... - python3.11-textwrap3-0.9.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.textwrap3 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyrabbit2, using log file: /var/log/nixpkgs-update/python311Packages.pyrabbit2/2024-03-25.log python311Packages.pyrabbit2 0 -> 1 attrpath: python311Packages.pyrabbit2 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/k0dnfdng2h2aflq64wzbhkih63w7qzl4-packages.json.drv building '/nix/store/k0dnfdng2h2aflq64wzbhkih63w7qzl4-packages.json.drv'... Going to be running update for following packages: - python3.11-pyrabbit2-1.0.7 Press Enter key to continue... Running update for: - python3.11-pyrabbit2-1.0.7: UPDATING ... - python3.11-pyrabbit2-1.0.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyrabbit2 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath uudeview, using log file: /var/log/nixpkgs-update/uudeview/2024-03-25.log uudeview 0.5.20 -> 20230502 https://repology.org/project/uudeview/versions attrpath: uudeview Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript The diff was empty after rewrites. [result] Failed to update uudeview 0.5.20 -> 20230502 https://repology.org/project/uudeview/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.python-axolotl-curve25519, using log file: /var/log/nixpkgs-update/python311Packages.python-axolotl-curve25519/2024-03-25.log python311Packages.python-axolotl-curve25519 0 -> 1 attrpath: python311Packages.python-axolotl-curve25519 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/arn45bpyf4rfck59b2bc5wrpahrw8k7s-packages.json.drv building '/nix/store/arn45bpyf4rfck59b2bc5wrpahrw8k7s-packages.json.drv'... Going to be running update for following packages: - python3.11-python-axolotl-curve25519-0.4.1.post2 Press Enter key to continue... Running update for: - python3.11-python-axolotl-curve25519-0.4.1.post2: UPDATING ... - python3.11-python-axolotl-curve25519-0.4.1.post2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-axolotl-curve25519 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rocmPackages.rocsolver, using log file: /var/log/nixpkgs-update/rocmPackages.rocsolver/2024-03-25.log rocmPackages.rocsolver 0 -> 1 attrpath: rocmPackages.rocsolver Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] these 2 derivations will be built: /nix/store/h0pbl9l5dssyk4s00bbjwy3z81myiddh-update.sh.drv /nix/store/f7szx226xndxmlwl2xg0q41bl6ls9i9v-packages.json.drv building '/nix/store/h0pbl9l5dssyk4s00bbjwy3z81myiddh-update.sh.drv'... building '/nix/store/f7szx226xndxmlwl2xg0q41bl6ls9i9v-packages.json.drv'... Going to be running update for following packages: - rocsolver-6.0.2 Press Enter key to continue... Running update for: - rocsolver-6.0.2: UPDATING ... - rocsolver-6.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update rocmPackages.rocsolver 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kubeshark, using log file: /var/log/nixpkgs-update/kubeshark/2024-03-25.log kubeshark 0 -> 1 attrpath: kubeshark Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] skipping because derivation has updateScript [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/karrc4905pqah20n6yxbplbj0jsj16w9-packages.json.drv building '/nix/store/karrc4905pqah20n6yxbplbj0jsj16w9-packages.json.drv'... Going to be running update for following packages: - kubeshark-52.1.77 Press Enter key to continue... Running update for: - kubeshark-52.1.77: UPDATING ... - kubeshark-52.1.77: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update kubeshark 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath asmrepl, using log file: /var/log/nixpkgs-update/asmrepl/2024-03-25.log asmrepl 0 -> 1 attrpath: asmrepl Checking auto update branch... The derivation has no 'version' attribute, so do not know how to figure out the version while doing an updateScript update [result] Failed to update asmrepl 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.py-expression-eval, using log file: /var/log/nixpkgs-update/python311Packages.py-expression-eval/2024-03-25.log python311Packages.py-expression-eval 0 -> 1 attrpath: python311Packages.py-expression-eval Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/1zamf1psg9lvvnpslcl6klbbpnh03kbz-packages.json.drv building '/nix/store/1zamf1psg9lvvnpslcl6klbbpnh03kbz-packages.json.drv'... Going to be running update for following packages: - python3.11-py-expression-eval-0.3.14 Press Enter key to continue... Running update for: - python3.11-py-expression-eval-0.3.14: UPDATING ... - python3.11-py-expression-eval-0.3.14: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.py-expression-eval 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath postgresql_jdbc, using log file: /var/log/nixpkgs-update/postgresql_jdbc/2024-03-25.log postgresql_jdbc 42.6.1 -> 42.7.3 https://repology.org/project/postgresql-jdbc/versions attrpath: postgresql_jdbc Checking auto update branch... No auto update branch exists [version] Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command --extra-experimental-features flakes eval .#postgresql_jdbc.src --raw --apply "p: p.drvAttrs.outputHash" Standard error:  error: attribute 'outputHash' missing at «string»:1:4: 1| p: p.drvAttrs.outputHash | ^ Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command --extra-experimental-features flakes eval .#postgresql_jdbc.originalSrc --raw --apply "p: p.drvAttrs.outputHash" Standard error:  error: flake 'git+file:///var/cache/nixpkgs-update/worker/worktree/postgresql_jdbc' does not provide attribute 'packages.x86_64-linux.postgresql_jdbc.originalSrc', 'legacyPackages.x86_64-linux.postgresql_jdbc.originalSrc' or 'postgresql_jdbc.originalSrc' Received ExitFailure 1 when running Raw command: /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix --extra-experimental-features nix-command --extra-experimental-features flakes eval .#postgresql_jdbc --raw --apply "p: p.drvAttrs.outputHash" Standard error:  error: attribute 'outputHash' missing at «string»:1:4: 1| p: p.drvAttrs.outputHash | ^ [result] Failed to update postgresql_jdbc 42.6.1 -> 42.7.3 https://repology.org/project/postgresql-jdbc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.myst-docutils, using log file: /var/log/nixpkgs-update/python311Packages.myst-docutils/2024-03-25.log python311Packages.myst-docutils 0 -> 1 attrpath: python311Packages.myst-docutils Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/glcra7sqblb9a1gngiyar46jd8y2rv5f-packages.json.drv building '/nix/store/glcra7sqblb9a1gngiyar46jd8y2rv5f-packages.json.drv'... Going to be running update for following packages: - python3.11-myst-docutils-2.0.0 Press Enter key to continue... Running update for: - python3.11-myst-docutils-2.0.0: UPDATING ... - python3.11-myst-docutils-2.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.myst-docutils 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pyvcd, using log file: /var/log/nixpkgs-update/python311Packages.pyvcd/2024-03-25.log python311Packages.pyvcd 0 -> 1 attrpath: python311Packages.pyvcd Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/y6rv8zy62kvrp3sc6pqhvn49cnq2pbxg-packages.json.drv building '/nix/store/y6rv8zy62kvrp3sc6pqhvn49cnq2pbxg-packages.json.drv'... Going to be running update for following packages: - python3.11-pyvcd-0.4.0 Press Enter key to continue... Running update for: - python3.11-pyvcd-0.4.0: UPDATING ... - python3.11-pyvcd-0.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyvcd 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.mando, using log file: /var/log/nixpkgs-update/python311Packages.mando/2024-03-25.log python311Packages.mando 0 -> 1 attrpath: python311Packages.mando Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/0cigdyqjn3vxcdxqq6ljnfh2ygbxmgwi-packages.json.drv building '/nix/store/0cigdyqjn3vxcdxqq6ljnfh2ygbxmgwi-packages.json.drv'... Going to be running update for following packages: - python3.11-mando-0.7.1 Press Enter key to continue... Running update for: - python3.11-mando-0.7.1: UPDATING ... - python3.11-mando-0.7.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mando 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mdbook-katex, using log file: /var/log/nixpkgs-update/mdbook-katex/2024-03-25.log mdbook-katex 0.6.0 -> 0.7.0 https://repology.org/project/mdbook-katex/versions attrpath: mdbook-katex Checking auto update branch... No auto update branch exists Old version 0.6.0" not present in master derivation file with contents: { lib, rustPlatform, fetchCrate, stdenv, CoreServices }: rustPlatform.buildRustPackage rec { pname = "mdbook-katex"; version = "0.7.0"; src = fetchCrate { inherit pname version; hash = "sha256-hrST3bfODCqsGUsO2sMk70KICMZCe+J1pDeO3TTcsaU="; }; cargoHash = "sha256-qoeHdgR67aZvmM6l8IPLcR2sHW2v5sL4k7ymxHPdlis="; buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; meta = with lib; { description = "A preprocessor for mdbook, rendering LaTeX equations to HTML at build time"; mainProgram = "mdbook-katex"; homepage = "https://github.com/lzanini/${pname}"; license = [ licenses.mit ]; maintainers = with maintainers; [ lovesegfault ]; }; } [result] Failed to update mdbook-katex 0.6.0 -> 0.7.0 https://repology.org/project/mdbook-katex/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rPackages.EWSmethods, using log file: /var/log/nixpkgs-update/rPackages.EWSmethods/2024-03-25.log rPackages.EWSmethods 1.2.1 -> 1.2.5 https://repology.org/project/r:ewsmethods/versions attrpath: rPackages.EWSmethods Checking auto update branch... No auto update branch exists Old version 1.2.1" not present in master derivation file with contents: { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: { name, buildInputs ? [], requireX ? false, ... } @ attrs: stdenv.mkDerivation ({ buildInputs = buildInputs ++ [R gettext] ++ lib.optionals requireX [util-linux xvfb-run] ++ lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1"; configurePhase = '' runHook preConfigure export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library" runHook postConfigure ''; buildPhase = '' runHook preBuild runHook postBuild ''; installFlags = if attrs.doCheck or true then [] else [ "--no-test-load" ]; rCommand = if requireX then # Unfortunately, xvfb-run has a race condition even with -a option, so that # we acquire a lock explicitly. "flock ${xvfb-run} xvfb-run -a -e xvfb-error R" else "R"; installPhase = '' runHook preInstall mkdir -p $out/library $rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library . runHook postInstall ''; postFixup = '' if test -e $out/nix-support/propagated-build-inputs; then ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages fi ''; checkPhase = '' # noop since R CMD INSTALL tests packages ''; } // attrs // { name = "r-" + name; }) [result] Failed to update rPackages.EWSmethods 1.2.1 -> 1.2.5 https://repology.org/project/r:ewsmethods/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.pynest2d, using log file: /var/log/nixpkgs-update/python311Packages.pynest2d/2024-03-25.log python311Packages.pynest2d 0 -> 1 attrpath: python311Packages.pynest2d Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/d2ld7qb52a7kc4yh750h0x5ykkdv1qqb-packages.json.drv building '/nix/store/d2ld7qb52a7kc4yh750h0x5ykkdv1qqb-packages.json.drv'... Going to be running update for following packages: - python3.11-pynest2d-4.12.0 Press Enter key to continue... Running update for: - python3.11-pynest2d-4.12.0: UPDATING ... - python3.11-pynest2d-4.12.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pynest2d 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath python311Packages.recipe-scrapers, using log file: /var/log/nixpkgs-update/python311Packages.recipe-scrapers/2024-03-25.log python311Packages.recipe-scrapers 0 -> 1 attrpath: python311Packages.recipe-scrapers Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/xdrb74m1dg9b85s2ql6lq9wg6k42clhw-packages.json.drv building '/nix/store/xdrb74m1dg9b85s2ql6lq9wg6k42clhw-packages.json.drv'... Going to be running update for following packages: - python3.11-recipe-scrapers-14.55.0 Press Enter key to continue... Running update for: - python3.11-recipe-scrapers-14.55.0: UPDATING ... - python3.11-recipe-scrapers-14.55.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.recipe-scrapers 0 -> 1 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO