[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/darwin/raycast/default.nix b/pkgs/os-specific/darwin/raycast/default.nix index e45188f3e2cd..a258bcc22e2a 100644 --- a/pkgs/os-specific/darwin/raycast/default.nix +++ b/pkgs/os-specific/darwin/raycast/default.nix @@ -6,12 +6,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "raycast"; - version = "1.66.2"; + version = "1.69.3"; src = fetchurl { name = "Raycast.dmg"; url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; - hash = "sha256-HV3urzJX33dQjzUxtQhVgMaguGk8nqtXJJBXjHwaqC0="; + hash = "sha256-k25+2KmOVhBwexRgZQ+BwmSr5BeidespRtqJ1dzbDW8="; }; dontPatch = true; [outpaths] eval start [outpaths] eval end Update edits cause no rebuilds. [result] Failed to update raycast 1.66.2 -> 1.69.3 https://repology.org/project/raycast/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 autofs5, using log file: /var/log/nixpkgs-update/autofs5/2024-03-21.log autofs5 5.1.6 -> 5.1.9 https://repology.org/project/autofs/versions attrpath: autofs5 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 autofs5 5.1.6 -> 5.1.9 https://repology.org/project/autofs/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.attachment, using log file: /var/log/nixpkgs-update/rPackages.attachment/2024-03-21.log rPackages.attachment 0.4.0 -> 0.4.1 https://repology.org/project/r:attachment/versions attrpath: rPackages.attachment 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.attachment 0.4.0 -> 0.4.1 https://repology.org/project/r:attachment/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 hdapsd, using log file: /var/log/nixpkgs-update/hdapsd/2024-03-21.log hdapsd 20141203 -> 20160215 https://repology.org/project/hdapsd/versions attrpath: hdapsd 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/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv building '/nix/store/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv'... trying https://github.com/evgeni/hdapsd/releases/download/20160215/hdapsd-20160215.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 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download hdapsd-20160215.tar.gz from any mirror error: builder for '/nix/store/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/evgeni/hdapsd/releases/download/20160215/hdapsd-20160215.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 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download hdapsd-20160215.tar.gz from any mirror For full logs, run 'nix log /nix/store/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'hdapsd.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv /nix/store/7asckpm3rz9nbckzjmlvlf9hml9mj7a8-hdapsd-20160215.drv building '/nix/store/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv'... trying https://github.com/evgeni/hdapsd/releases/download/20160215/hdapsd-20160215.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 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download hdapsd-20160215.tar.gz from any mirror error: builder for '/nix/store/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/evgeni/hdapsd/releases/download/20160215/hdapsd-20160215.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 9 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download hdapsd-20160215.tar.gz from any mirror For full logs, run 'nix log /nix/store/l6jar0b6gbcpc85mlpswrcq7wfvmv9pz-hdapsd-20160215.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/7asckpm3rz9nbckzjmlvlf9hml9mj7a8-hdapsd-20160215.drv' failed to build [result] Failed to update hdapsd 20141203 -> 20160215 https://repology.org/project/hdapsd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hunspellDicts.nl_NL, using log file: /var/log/nixpkgs-update/hunspellDicts.nl_NL/2024-03-21.log hunspellDicts.nl_NL 2.20.19 -> 2007-06-07 https://repology.org/project/hunspell-dict-nl-nl/versions attrpath: hunspellDicts.nl_NL 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 hunspellDicts.nl_NL 2.20.19 -> 2007-06-07 https://repology.org/project/hunspell-dict-nl-nl/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.lavaSearch2, using log file: /var/log/nixpkgs-update/rPackages.lavaSearch2/2024-03-21.log rPackages.lavaSearch2 2.0.1 -> 2.0.3 https://repology.org/project/r:lavasearch2/versions attrpath: rPackages.lavaSearch2 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.lavaSearch2 2.0.1 -> 2.0.3 https://repology.org/project/r:lavasearch2/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.epikit, using log file: /var/log/nixpkgs-update/rPackages.epikit/2024-03-21.log rPackages.epikit 0.1.5 -> 0.1.6 https://repology.org/project/r:epikit/versions attrpath: rPackages.epikit 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.epikit 0.1.5 -> 0.1.6 https://repology.org/project/r:epikit/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.warbleR, using log file: /var/log/nixpkgs-update/rPackages.warbleR/2024-03-21.log rPackages.warbleR 1.1.29 -> 1.1.30 https://repology.org/project/r:warbler/versions attrpath: rPackages.warbleR Checking auto update branch... No auto update branch exists Old version 1.1.29" 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.warbleR 1.1.29 -> 1.1.30 https://repology.org/project/r:warbler/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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.hoardr, using log file: /var/log/nixpkgs-update/rPackages.hoardr/2024-03-21.log rPackages.hoardr 0.5.3 -> 0.5.4 https://repology.org/project/r:hoardr/versions attrpath: rPackages.hoardr 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.hoardr 0.5.3 -> 0.5.4 https://repology.org/project/r:hoardr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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.simlandr, using log file: /var/log/nixpkgs-update/rPackages.simlandr/2024-03-21.log rPackages.simlandr 0.3.0 -> 0.3.1 https://repology.org/project/r:simlandr/versions attrpath: rPackages.simlandr 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.simlandr 0.3.0 -> 0.3.1 https://repology.org/project/r:simlandr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath glxinfo, using log file: /var/log/nixpkgs-update/glxinfo/2024-03-21.log glxinfo 8.4.0 -> 9.0.0 https://repology.org/project/mesa-demos/versions attrpath: glxinfo Checking auto update branch... No auto update branch exists [outpaths] eval start [outpaths] eval end [version] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv building '/nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv'... trying ftp://ftp.freedesktop.org/pub/mesa/demos/mesa-demos-9.0.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:00:02 --:--:-- 0 curl: (78) The file does not exist error: cannot download mesa-demos-9.0.0.tar.bz2 from any mirror error: builder for '/nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying ftp://ftp.freedesktop.org/pub/mesa/demos/mesa-demos-9.0.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:00:02 --:--:-- 0 > curl: (78) The file does not exist > error: cannot download mesa-demos-9.0.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'glxinfo.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv /nix/store/b4p1asvgcd10658lvplfr3skpcm9fpgv-glxinfo-9.0.0.drv building '/nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv'... trying ftp://ftp.freedesktop.org/pub/mesa/demos/mesa-demos-9.0.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:00:02 --:--:-- 0 curl: (78) The file does not exist error: cannot download mesa-demos-9.0.0.tar.bz2 from any mirror error: builder for '/nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying ftp://ftp.freedesktop.org/pub/mesa/demos/mesa-demos-9.0.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:00:02 --:--:-- 0 > curl: (78) The file does not exist > error: cannot download mesa-demos-9.0.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/yzmirisy0mnrhc78qg3x1yzrqdxvwlyk-mesa-demos-9.0.0.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/b4p1asvgcd10658lvplfr3skpcm9fpgv-glxinfo-9.0.0.drv' failed to build [result] Failed to update glxinfo 8.4.0 -> 9.0.0 https://repology.org/project/mesa-demos/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.dask-ml, using log file: /var/log/nixpkgs-update/python312Packages.dask-ml/2024-03-21.log python312Packages.dask-ml 2023.3.24 -> 2024.3.20 https://repology.org/project/python:dask-ml/versions attrpath: python312Packages.dask-ml 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/52csyza817yilfpiiynqmsspxn3rfs5f-packages.json.drv building '/nix/store/52csyza817yilfpiiynqmsspxn3rfs5f-packages.json.drv'... Going to be running update for following packages: - python3.12-dask-ml-2023.3.24 Press Enter key to continue... Running update for: - python3.12-dask-ml-2023.3.24: UPDATING ... - python3.12-dask-ml-2023.3.24: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/dask-ml/default.nix b/pkgs/development/python-modules/dask-ml/default.nix index 3cb7ed9618b1..82a088af25b6 100644 --- a/pkgs/development/python-modules/dask-ml/default.nix +++ b/pkgs/development/python-modules/dask-ml/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "dask-ml"; - version = "2023.3.24"; + version = "2024.3.20"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-lsCQ220yg2U24/Ccpk3rWZ6GRYeqjj1NLGtK9YhzMwc="; + hash = "sha256-0g5AtCOXQOS3RlIIYk28Ac3ELjoT5EKcOGp+IallqVk="; }; 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.dask-ml Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . python312Packages.dask-ml Standard output: error: … while evaluating the attribute 'drvPath' at /var/cache/nixpkgs-update/worker/worktree/python312Packages.dask-ml/lib/customisation.nix:268:7: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; … while evaluating the attribute 'drvPath' at /var/cache/nixpkgs-update/worker/worktree/python312Packages.dask-ml/lib/customisation.nix:268:7: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; (stack trace truncated; use '--show-trace' to show the full trace) error: nose-1.3.7 not supported for interpreter python3.12 [result] Failed to update python312Packages.dask-ml 2023.3.24 -> 2024.3.20 https://repology.org/project/python:dask-ml/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.instructor, using log file: /var/log/nixpkgs-update/python312Packages.instructor/2024-03-21.log python312Packages.instructor 0.6.4 -> 0.6.5 https://repology.org/project/python:instructor/versions attrpath: python312Packages.instructor 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/6dflxhkbqxvpp8q06s8y7xjqapwz7hdm-packages.json.drv building '/nix/store/6dflxhkbqxvpp8q06s8y7xjqapwz7hdm-packages.json.drv'... Going to be running update for following packages: - python3.12-instructor-0.6.4 Press Enter key to continue... Running update for: - python3.12-instructor-0.6.4: UPDATING ... - python3.12-instructor-0.6.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/instructor/default.nix b/pkgs/development/python-modules/instructor/default.nix index 476741835116..3d17f8b4e5dd 100644 --- a/pkgs/development/python-modules/instructor/default.nix +++ b/pkgs/development/python-modules/instructor/default.nix @@ -6,12 +6,12 @@ buildPythonPackage rec { pname = "instructor"; - version = "0.6.4"; + version = "0.6.5"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-Af52TGnkqY/t0cPkHoRfhFqa/tuOpQXAI/fFfMTcM4Y="; + hash = "sha256-D74DiW75Rgd0Ne12BfDmOzpuZyi8G7RkAzmXvK0rEws="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath postgresql16Packages.pgvector, using log file: /var/log/nixpkgs-update/postgresql16Packages.pgvector/2024-03-21.log postgresql16Packages.pgvector 0.6.1 -> 0.6.2 https://repology.org/project/pgvector/versions attrpath: postgresql16Packages.pgvector Checking auto update branch... No auto update branch exists Old version 0.6.1" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, postgresql }: stdenv.mkDerivation rec { pname = "pgvector"; version = "0.6.2"; src = fetchFromGitHub { owner = "pgvector"; repo = "pgvector"; rev = "v${version}"; hash = "sha256-r+TpFJg6WrMn0L2B7RpmSRvw3XxpHzMRtpFWDCzLvgs="; }; buildInputs = [ postgresql ]; installPhase = '' install -D -t $out/lib vector${postgresql.dlSuffix} install -D -t $out/share/postgresql/extension sql/vector-*.sql install -D -t $out/share/postgresql/extension vector.control ''; meta = with lib; { description = "Open-source vector similarity search for PostgreSQL"; homepage = "https://github.com/pgvector/pgvector"; changelog = "https://github.com/pgvector/pgvector/raw/v${version}/CHANGELOG.md"; license = licenses.postgresql; platforms = postgresql.meta.platforms; maintainers = [ maintainers.marsam ]; }; } [result] Failed to update postgresql16Packages.pgvector 0.6.1 -> 0.6.2 https://repology.org/project/pgvector/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 ryzenadj, using log file: /var/log/nixpkgs-update/ryzenadj/2024-03-21.log ryzenadj 0.14.0 -> 0.15.0 https://repology.org/project/ryzenadj/versions attrpath: ryzenadj 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/ryzenadj/default.nix b/pkgs/os-specific/linux/ryzenadj/default.nix index b99f3d6bd305..ef671b2f16c4 100644 --- a/pkgs/os-specific/linux/ryzenadj/default.nix +++ b/pkgs/os-specific/linux/ryzenadj/default.nix @@ -1,13 +1,13 @@ { lib, stdenv, fetchFromGitHub, pciutils, cmake }: stdenv.mkDerivation rec { pname = "ryzenadj"; - version = "0.14.0"; + version = "0.15.0"; src = fetchFromGitHub { owner = "FlyGoat"; repo = "RyzenAdj"; rev = "v${version}"; - sha256 = "sha256-Lqq4LNRmqQyeIJfr/+tYdKMEk+P54VnwZAQZcE0ev8Y="; + sha256 = "sha256-aNkVP1fuPcb41Qk5YI1loJnqVmamSzoMFyTGkJtrnvg="; }; nativeBuildInputs = [ pciutils cmake ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/ylyna7ifffzkp94yby4c9lrpmb3q5l9n-ryzenadj-0.15.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://repology.org/project/ryzenadj/versions. meta.description for ryzenadj is: Adjust power management settings for Ryzen Mobile Processors. meta.homepage for ryzenadj is: https://github.com/FlyGoat/RyzenAdj ###### Updates performed - Version update ###### To inspect upstream changes - [Release on GitHub](https://github.com/FlyGoat/RyzenAdj/releases/tag/v0.15.0) - [Compare changes on GitHub](https://github.com/FlyGoat/RyzenAdj/compare/v0.14.0...v0.15.0) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.15.0 with grep in /nix/store/ylyna7ifffzkp94yby4c9lrpmb3q5l9n-ryzenadj-0.15.0 - found 0.15.0 in filename of file in /nix/store/ylyna7ifffzkp94yby4c9lrpmb3q5l9n-ryzenadj-0.15.0 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath ryzenadj ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/ylyna7ifffzkp94yby4c9lrpmb3q5l9n-ryzenadj-0.15.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 ryzenadj https://github.com/r-ryantm/nixpkgs/archive/3226d006a5223605675b5c887847165f1e7be9bd.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/3226d006a5223605675b5c887847165f1e7be9bd#ryzenadj ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/ylyna7ifffzkp94yby4c9lrpmb3q5l9n-ryzenadj-0.15.0 ls -la /nix/store/ylyna7ifffzkp94yby4c9lrpmb3q5l9n-ryzenadj-0.15.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 @rhendric 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/297583 [result] Success updating ryzenadj 0.14.0 -> 0.15.0 https://repology.org/project/ryzenadj/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath tektoncd-cli, using log file: /var/log/nixpkgs-update/tektoncd-cli/2024-03-21.log tektoncd-cli 0.35.1 -> 0.36.0 https://repology.org/project/tektoncd-cli/versions attrpath: tektoncd-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] 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/applications/networking/cluster/tektoncd-cli/default.nix b/pkgs/applications/networking/cluster/tektoncd-cli/default.nix index cf52f6d948ea..2bf571920452 100644 --- a/pkgs/applications/networking/cluster/tektoncd-cli/default.nix +++ b/pkgs/applications/networking/cluster/tektoncd-cli/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "tektoncd-cli"; - version = "0.35.1"; + version = "0.36.0"; src = fetchFromGitHub { owner = "tektoncd"; repo = "cli"; rev = "v${version}"; - sha256 = "sha256-/o0UzjIUlRP936YG7fgfonPHc86z1WFCBcELor2frqE="; + sha256 = "sha256-no/F9PqChokG2so3LeptHYO3BXoqWFyMtY/5nlEMT8Y="; }; vendorHash = null; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/jd5vq8qv27nwb90x69ql3qz4nz8nkyl0-tektoncd-cli-0.36.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://repology.org/project/tektoncd-cli/versions. meta.description for tektoncd-cli is: Provides a CLI for interacting with Tekton - tkn meta.homepage for tektoncd-cli is: https://tekton.dev meta.changelog for tektoncd-cli is: https://github.com/tektoncd/cli/releases/tag/v0.36.0 ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/tektoncd/cli/releases/tag/v0.36.0) - [Compare changes on GitHub](https://github.com/tektoncd/cli/compare/v0.35.1...v0.36.0) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.36.0 with grep in /nix/store/jd5vq8qv27nwb90x69ql3qz4nz8nkyl0-tektoncd-cli-0.36.0 - found 0.36.0 in filename of file in /nix/store/jd5vq8qv27nwb90x69ql3qz4nz8nkyl0-tektoncd-cli-0.36.0 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath tektoncd-cli ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/jd5vq8qv27nwb90x69ql3qz4nz8nkyl0-tektoncd-cli-0.36.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 tektoncd-cli https://github.com/r-ryantm/nixpkgs/archive/b1b442db5a6974958f1bbc42696bb2d84ec006f1.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/b1b442db5a6974958f1bbc42696bb2d84ec006f1#tektoncd-cli ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/jd5vq8qv27nwb90x69ql3qz4nz8nkyl0-tektoncd-cli-0.36.0 ls -la /nix/store/jd5vq8qv27nwb90x69ql3qz4nz8nkyl0-tektoncd-cli-0.36.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 @06kellyjac @mstrangfeld @vdemeester 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/297591 [result] Success updating tektoncd-cli 0.35.1 -> 0.36.0 https://repology.org/project/tektoncd-cli/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.langchain-core, using log file: /var/log/nixpkgs-update/python312Packages.langchain-core/2024-03-21.log python312Packages.langchain-core 0.1.32 -> 0.1.33 https://repology.org/project/python:langchain-core/versions attrpath: python312Packages.langchain-core 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/7sqw9c3xp151nkvndlb0n6xhifmsfzkx-packages.json.drv building '/nix/store/7sqw9c3xp151nkvndlb0n6xhifmsfzkx-packages.json.drv'... Going to be running update for following packages: - python3.12-langchain-core-0.1.32 Press Enter key to continue... Running update for: - python3.12-langchain-core-0.1.32: UPDATING ... - python3.12-langchain-core-0.1.32: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/langchain-core/default.nix b/pkgs/development/python-modules/langchain-core/default.nix index 350e9a903690..0b3ad94ad47a 100644 --- a/pkgs/development/python-modules/langchain-core/default.nix +++ b/pkgs/development/python-modules/langchain-core/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "langchain-core"; - version = "0.1.32"; + version = "0.1.33"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,7 +24,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "langchain_core"; inherit version; - hash = "sha256-1iaDvsvyD1HxKHV5GgQjIPReqgyHomfTC8A7waB/XsI="; + hash = "sha256-VF7/Peg8xYIxvSsMbWcjI/wgd7lNMmuhoyGRGK8dGmY="; }; pythonRelaxDeps = [ [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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.doc2concrete, using log file: /var/log/nixpkgs-update/rPackages.doc2concrete/2024-03-21.log rPackages.doc2concrete 0.5.6 -> 0.6.0 https://repology.org/project/r:doc2concrete/versions attrpath: rPackages.doc2concrete Checking auto update branch... No auto update branch exists Old version 0.5.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.doc2concrete 0.5.6 -> 0.6.0 https://repology.org/project/r:doc2concrete/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ggh4x, using log file: /var/log/nixpkgs-update/rPackages.ggh4x/2024-03-21.log rPackages.ggh4x 0.2.7 -> 0.2.8 https://repology.org/project/r:ggh4x/versions attrpath: rPackages.ggh4x 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.ggh4x 0.2.7 -> 0.2.8 https://repology.org/project/r:ggh4x/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.GMDHreg, using log file: /var/log/nixpkgs-update/rPackages.GMDHreg/2024-03-21.log rPackages.GMDHreg 0.2.2 -> 0.2.3 https://repology.org/project/r:gmdhreg/versions attrpath: rPackages.GMDHreg 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.GMDHreg 0.2.2 -> 0.2.3 https://repology.org/project/r:gmdhreg/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 orc, using log file: /var/log/nixpkgs-update/orc/2024-03-21.log orc 0.4.36 -> 0.4.38 https://repology.org/project/orc/versions attrpath: orc Checking auto update branch... An auto update branch exists with message `orc: 0.4.36 -> 0.4.38`. New version is 0.4.38. An auto update branch exists with an equal or greater version [result] Failed to update orc 0.4.36 -> 0.4.38 https://repology.org/project/orc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath fstrcmp, using log file: /var/log/nixpkgs-update/fstrcmp/2024-03-21.log fstrcmp 0.7 -> 0.7.D001 https://repology.org/project/fstrcmp/versions attrpath: fstrcmp 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/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv building '/nix/store/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv'... trying https://sourceforge.net/projects/fstrcmp/files/fstrcmp/0.7.D001/fstrcmp-0.7.D001.D001.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 source from any mirror error: builder for '/nix/store/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv' failed with exit code 1; last 7 log lines: > > trying https://sourceforge.net/projects/fstrcmp/files/fstrcmp/0.7.D001/fstrcmp-0.7.D001.D001.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 source from any mirror For full logs, run 'nix log /nix/store/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'fstrcmp.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv /nix/store/nd0rnhskw29qlb7jfg0b53fdimym4jcr-fstrcmp-0.7.D001.drv building '/nix/store/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv'... trying https://sourceforge.net/projects/fstrcmp/files/fstrcmp/0.7.D001/fstrcmp-0.7.D001.D001.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 source from any mirror error: builder for '/nix/store/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv' failed with exit code 1; last 7 log lines: > > trying https://sourceforge.net/projects/fstrcmp/files/fstrcmp/0.7.D001/fstrcmp-0.7.D001.D001.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 source from any mirror For full logs, run 'nix log /nix/store/7f9vk80r6kq79b6vp9qrm31zkmcw0ywp-source.drv'. error: 1 dependencies of derivation '/nix/store/nd0rnhskw29qlb7jfg0b53fdimym4jcr-fstrcmp-0.7.D001.drv' failed to build [result] Failed to update fstrcmp 0.7 -> 0.7.D001 https://repology.org/project/fstrcmp/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.cocoapods-testing, using log file: /var/log/nixpkgs-update/rubyPackages.cocoapods-testing/2024-03-21.log rubyPackages.cocoapods-testing 0.0.6 -> 0.2.0 https://repology.org/project/ruby:cocoapods-testing/versions attrpath: rubyPackages.cocoapods-testing 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.cocoapods-testing 0.0.6 -> 0.2.0 https://repology.org/project/ruby:cocoapods-testing/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.CatastRo, using log file: /var/log/nixpkgs-update/rPackages.CatastRo/2024-03-21.log rPackages.CatastRo 0.2.3 -> 0.3.0 https://repology.org/project/r:catastro/versions attrpath: rPackages.CatastRo 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.CatastRo 0.2.3 -> 0.3.0 https://repology.org/project/r:catastro/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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-21.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 roundcubePlugins.thunderbird_labels, using log file: /var/log/nixpkgs-update/roundcubePlugins.thunderbird_labels/2024-03-21.log roundcubePlugins.thunderbird_labels 1.6.0 -> 1.6.1 https://repology.org/project/roundcube-plugin-thunderbird-labels/versions attrpath: roundcubePlugins.thunderbird_labels Checking auto update branch... No auto update branch exists Received ExitFailure 1 when running Raw command: env EDITOR=echo /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command edit roundcubePlugins.thunderbird_labels -f . Standard error: error: cannot find position information for 'roundcubePlugins.thunderbird_labels [result] Failed to update roundcubePlugins.thunderbird_labels 1.6.0 -> 1.6.1 https://repology.org/project/roundcube-plugin-thunderbird-labels/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath stm8flash, using log file: /var/log/nixpkgs-update/stm8flash/2024-03-21.log stm8flash 2022-03-27 -> 20170817 https://repology.org/project/stm8flash/versions attrpath: stm8flash Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update stm8flash 2022-03-27 -> 20170817 https://repology.org/project/stm8flash/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.plotly, using log file: /var/log/nixpkgs-update/rPackages.plotly/2024-03-21.log rPackages.plotly 4.10.3 -> 4.10.4 https://repology.org/project/r:plotly/versions attrpath: rPackages.plotly Checking auto update branch... No auto update branch exists Old version 4.10.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.plotly 4.10.3 -> 4.10.4 https://repology.org/project/r:plotly/versions [options] github_user: r-ryantm, pull_request: 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.MathBigInt 1.999842 -> 2.003002 https://repology.org/project/perl:math-bigint/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 virglrenderer, using log file: /var/log/nixpkgs-update/virglrenderer/2024-03-21.log virglrenderer 0 -> 1 attrpath: virglrenderer 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/829x9rkcsva35j2gr43mlja72z5fdwhv-packages.json.drv building '/nix/store/829x9rkcsva35j2gr43mlja72z5fdwhv-packages.json.drv'... Going to be running update for following packages: - virglrenderer-1.0.1 Press Enter key to continue... Running update for: - virglrenderer-1.0.1: UPDATING ... - virglrenderer-1.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update virglrenderer 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 nixnote2, using log file: /var/log/nixpkgs-update/nixnote2/2024-03-21.log nixnote2 2.0.2 -> 2.1.10 https://repology.org/project/nixnote2/versions attrpath: nixnote2 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/d6fhzkdnpmg4vx2whfaq21dxqgi7cc23-source.drv building '/nix/store/d6fhzkdnpmg4vx2whfaq21dxqgi7cc23-source.drv'... trying https://github.com/baumgarr/nixnote2/archive/v2.1.10.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/d6fhzkdnpmg4vx2whfaq21dxqgi7cc23-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/baumgarr/nixnote2/archive/v2.1.10.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/d6fhzkdnpmg4vx2whfaq21dxqgi7cc23-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'nixnote2.originalSrc' not found stderr did not split as expected full stderr was: error: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:9:12: (source not available) … while evaluating derivation 'nixnote2-2.1.10' whose name attribute is located at /var/cache/nixpkgs-update/worker/worktree/nixnote2/pkgs/stdenv/generic/make-derivation.nix:331:7 … while evaluating attribute 'buildInputs' of derivation 'nixnote2-2.1.10' at /var/cache/nixpkgs-update/worker/worktree/nixnote2/pkgs/stdenv/generic/make-derivation.nix:378:7: 377| depsHostHost = elemAt (elemAt dependencies 1) 0; 378| buildInputs = elemAt (elemAt dependencies 1) 1; | ^ 379| depsTargetTarget = elemAt (elemAt dependencies 2) 0; error: Package ‘qtwebkit-5.212.0-alpha4’ in /var/cache/nixpkgs-update/worker/worktree/nixnote2/pkgs/development/libraries/qt-5/qtModule.nix:89 is marked as insecure, refusing to evaluate. Known issues: - QtWebkit upstream is unmaintained and receives no security updates, see https://blogs.gnome.org/mcatanzaro/2022/11/04/stop-using-qtwebkit/ 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 ‘qtwebkit-5.212.0-alpha4’ to `nixpkgs.config.permittedInsecurePackages` in the configuration.nix, like so: { nixpkgs.config.permittedInsecurePackages = [ "qtwebkit-5.212.0-alpha4" ]; } c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add ‘qtwebkit-5.212.0-alpha4’ to `permittedInsecurePackages` in ~/.config/nixpkgs/config.nix, like so: { permittedInsecurePackages = [ "qtwebkit-5.212.0-alpha4" ]; } [result] Failed to update nixnote2 2.0.2 -> 2.1.10 https://repology.org/project/nixnote2/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 xpipe, using log file: /var/log/nixpkgs-update/xpipe/2024-03-21.log xpipe 8.3 -> 8.4 https://repology.org/project/xpipe/versions attrpath: xpipe Checking auto update branch... No auto update branch exists Old version 8.3" not present in master derivation file with contents: { stdenvNoCC , lib , fetchzip , makeDesktopItem , autoPatchelfHook , zlib , fontconfig , udev , gtk3 , freetype , alsa-lib , makeShellWrapper , libX11 , libXext , libXdamage , libXfixes , libxcb , libXcomposite , libXcursor , libXi , libXrender , libXtst , libXxf86vm }: let inherit (stdenvNoCC.hostPlatform) system; throwSystem = throw "Unsupported system: ${system}"; # Keep this setup to easily add more arch support in the future arch = { x86_64-linux = "x86_64"; }.${system} or throwSystem; hash = { x86_64-linux = "sha256-L76UTgy1tGxj5KVXefz2uj2M/sse2n0byqRtW/wvwz8="; }.${system} or throwSystem; displayname = "XPipe"; in stdenvNoCC.mkDerivation rec { pname = "xpipe"; version = "8.4"; src = fetchzip { url = "https://github.com/xpipe-io/xpipe/releases/download/${version}/xpipe-portable-linux-${arch}.tar.gz"; inherit hash; }; nativeBuildInputs = [ autoPatchelfHook makeShellWrapper ]; # Ignore libavformat dependencies as we don't need them autoPatchelfIgnoreMissingDeps = true; buildInputs = [ fontconfig zlib udev freetype gtk3 alsa-lib libX11 libX11 libXext libXdamage libXfixes libxcb libXcomposite libXcursor libXi libXrender libXtst libXxf86vm ]; desktopItem = makeDesktopItem { categories = [ "Network" ]; comment = "Your entire server infrastructure at your fingertips"; desktopName = displayname; exec = "/opt/${pname}/cli/bin/xpipe open %U"; genericName = "Shell connection hub"; icon = "/opt/${pname}/logo.png"; name = displayname; }; installPhase = '' runHook preInstall pkg="${pname}" mkdir -p $out/opt/$pkg cp -r ./ $out/opt/$pkg mkdir -p "$out/bin" ln -s "$out/opt/$pkg/cli/bin/xpipe" "$out/bin/$pkg" mkdir -p "$out/share/applications" cp -r "${desktopItem}/share/applications/" "$out/share/" mkdir -p "$out/etc/bash_completion.d" ln -s "$out/opt/$pkg/cli/xpipe_completion" "$out/etc/bash_completion.d/$pkg" substituteInPlace "$out/share/applications/${displayname}.desktop" --replace "Exec=" "Exec=$out" substituteInPlace "$out/share/applications/${displayname}.desktop" --replace "Icon=" "Icon=$out" mv "$out/opt/$pkg/app/bin/xpiped" "$out/opt/$pkg/app/bin/xpiped_raw" mv "$out/opt/$pkg/app/lib/app/xpiped.cfg" "$out/opt/$pkg/app/lib/app/xpiped_raw.cfg" mv "$out/opt/$pkg/app/scripts/xpiped_debug.sh" "$out/opt/$pkg/app/scripts/xpiped_debug_raw.sh" makeShellWrapper "$out/opt/$pkg/app/bin/xpiped_raw" "$out/opt/$pkg/app/bin/xpiped" \ --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ fontconfig gtk3 udev ]}" makeShellWrapper "$out/opt/$pkg/app/scripts/xpiped_debug_raw.sh" "$out/opt/$pkg/app/scripts/xpiped_debug.sh" \ --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ fontconfig gtk3 udev ]}" runHook postInstall ''; meta = with lib; { description = "A cross-platform shell connection hub and remote file manager"; homepage = "https://github.com/xpipe-io/${pname}"; downloadPage = "https://github.com/xpipe-io/${pname}/releases/latest"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; changelog = "https://github.com/xpipe-io/${pname}/releases/tag/${version}"; license = [ licenses.asl20 licenses.unfree ]; maintainers = with maintainers; [ crschnick ]; platforms = [ "x86_64-linux" ]; mainProgram = pname; }; } [result] Failed to update xpipe 8.3 -> 8.4 https://repology.org/project/xpipe/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.log oh-my-posh 19.13.0 -> 19.18.1 https://github.com/jandedobbeleer/oh-my-posh/releases 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=" build succeeded unexpectedlystderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'oh-my-posh.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/6wanwny128j4rldsq7j77spqckjms30w-oh-my-posh-19.18.1-go-modules.drv /nix/store/g57whbf0630ihsw6hmmikc5z9mhcdspc-oh-my-posh-19.18.1.drv building '/nix/store/6wanwny128j4rldsq7j77spqckjms30w-oh-my-posh-19.18.1-go-modules.drv'... Running phase: unpackPhase unpacking source archive /nix/store/prnmpsgbnq79jxlyz6lilfb2hvwljc1n-source source root is source/src Running phase: patchPhase Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase Running phase: buildPhase go: go.mod requires go >= 1.22.0 (running go 1.21.7; GOTOOLCHAIN=local) error: builder for '/nix/store/6wanwny128j4rldsq7j77spqckjms30w-oh-my-posh-19.18.1-go-modules.drv' failed with exit code 1; last 8 log lines: > Running phase: unpackPhase > unpacking source archive /nix/store/prnmpsgbnq79jxlyz6lilfb2hvwljc1n-source > source root is source/src > Running phase: patchPhase > Running phase: updateAutotoolsGnuConfigScriptsPhase > Running phase: configurePhase > Running phase: buildPhase > go: go.mod requires go >= 1.22.0 (running go 1.21.7; GOTOOLCHAIN=local) For full logs, run 'nix log /nix/store/6wanwny128j4rldsq7j77spqckjms30w-oh-my-posh-19.18.1-go-modules.drv'. error: 1 dependencies of derivation '/nix/store/g57whbf0630ihsw6hmmikc5z9mhcdspc-oh-my-posh-19.18.1.drv' failed to build [result] Failed to update oh-my-posh 19.13.0 -> 19.18.1 https://github.com/jandedobbeleer/oh-my-posh/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.partition, using log file: /var/log/nixpkgs-update/rPackages.partition/2024-03-21.log rPackages.partition 0.1.4 -> 0.2.0 https://repology.org/project/r:partition/versions attrpath: rPackages.partition 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.partition 0.1.4 -> 0.2.0 https://repology.org/project/r:partition/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.bartcs, using log file: /var/log/nixpkgs-update/rPackages.bartcs/2024-03-21.log rPackages.bartcs 1.2.0 -> 1.2.1 https://repology.org/project/r:bartcs/versions attrpath: rPackages.bartcs 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.bartcs 1.2.0 -> 1.2.1 https://repology.org/project/r:bartcs/versions [options] github_user: r-ryantm, pull_request: YES, batch_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_filesets, using log file: /var/log/nixpkgs-update/rPackages.R_filesets/2024-03-21.log rPackages.R_filesets 2.15.0 -> 2.15.1 https://repology.org/project/r:r.filesets/versions attrpath: rPackages.R_filesets Checking auto update branch... No auto update branch exists Old version 2.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.R_filesets 2.15.0 -> 2.15.1 https://repology.org/project/r:r.filesets/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.qlifetable, using log file: /var/log/nixpkgs-update/rPackages.qlifetable/2024-03-21.log rPackages.qlifetable 0.0.1-15 -> 0.0.2-4 https://repology.org/project/r:qlifetable/versions attrpath: rPackages.qlifetable Checking auto update branch... No auto update branch exists Old version 0.0.1-15" 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.qlifetable 0.0.1-15 -> 0.0.2-4 https://repology.org/project/r:qlifetable/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.knotR, using log file: /var/log/nixpkgs-update/rPackages.knotR/2024-03-21.log rPackages.knotR 1.0-2 -> 1.0-4 https://repology.org/project/r:knotr/versions attrpath: rPackages.knotR 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.knotR 1.0-2 -> 1.0-4 https://repology.org/project/r:knotr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.PeakSegDP, using log file: /var/log/nixpkgs-update/rPackages.PeakSegDP/2024-03-21.log rPackages.PeakSegDP 2017.08.15 -> 2024.1.24 https://repology.org/project/r:peaksegdp/versions attrpath: rPackages.PeakSegDP Checking auto update branch... No auto update branch exists Old version 2017.08.15" 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.PeakSegDP 2017.08.15 -> 2024.1.24 https://repology.org/project/r:peaksegdp/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.CDCPLACES, using log file: /var/log/nixpkgs-update/rPackages.CDCPLACES/2024-03-21.log rPackages.CDCPLACES 1.1.1 -> 1.1.5 https://repology.org/project/r:cdcplaces/versions attrpath: rPackages.CDCPLACES 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.CDCPLACES 1.1.1 -> 1.1.5 https://repology.org/project/r:cdcplaces/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.MHD, using log file: /var/log/nixpkgs-update/rPackages.MHD/2024-03-21.log rPackages.MHD 0.1.1 -> 0.1.2 https://repology.org/project/r:mhd/versions attrpath: rPackages.MHD 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.MHD 0.1.1 -> 0.1.2 https://repology.org/project/r:mhd/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.zoid, using log file: /var/log/nixpkgs-update/rPackages.zoid/2024-03-21.log rPackages.zoid 1.2.0 -> 1.3.1 https://repology.org/project/r:zoid/versions attrpath: rPackages.zoid 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.zoid 1.2.0 -> 1.3.1 https://repology.org/project/r:zoid/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.magmaR, using log file: /var/log/nixpkgs-update/rPackages.magmaR/2024-03-21.log rPackages.magmaR 1.0.2 -> 1.0.3 https://repology.org/project/r:magmar/versions attrpath: rPackages.magmaR 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.magmaR 1.0.2 -> 1.0.3 https://repology.org/project/r:magmar/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.mccca, using log file: /var/log/nixpkgs-update/rPackages.mccca/2024-03-21.log rPackages.mccca 1.1.0 -> 1.1.0.1 https://repology.org/project/r:mccca/versions attrpath: rPackages.mccca 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.mccca 1.1.0 -> 1.1.0.1 https://repology.org/project/r:mccca/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.TrialEmulation, using log file: /var/log/nixpkgs-update/rPackages.TrialEmulation/2024-03-21.log rPackages.TrialEmulation 0.0.3.2 -> 0.0.3.8 https://repology.org/project/r:trialemulation/versions attrpath: rPackages.TrialEmulation Checking auto update branch... No auto update branch exists Old version 0.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.TrialEmulation 0.0.3.2 -> 0.0.3.8 https://repology.org/project/r:trialemulation/versions [options] github_user: r-ryantm, pull_request: 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-21.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.f1dataR, using log file: /var/log/nixpkgs-update/rPackages.f1dataR/2024-03-21.log rPackages.f1dataR 1.4.1 -> 1.5.1 https://repology.org/project/r:f1datar/versions attrpath: rPackages.f1dataR 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.f1dataR 1.4.1 -> 1.5.1 https://repology.org/project/r:f1datar/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.RKorAPClient, using log file: /var/log/nixpkgs-update/rPackages.RKorAPClient/2024-03-21.log rPackages.RKorAPClient 0.7.7 -> 0.8.0 https://repology.org/project/r:rkorapclient/versions attrpath: rPackages.RKorAPClient Checking auto update branch... No auto update branch exists Old version 0.7.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.RKorAPClient 0.7.7 -> 0.8.0 https://repology.org/project/r:rkorapclient/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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-21.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 diesel-cli, using log file: /var/log/nixpkgs-update/diesel-cli/2024-03-21.log diesel-cli 2.1.1 -> 2.1.5 https://repology.org/project/diesel-cli/versions attrpath: diesel-cli Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] stderr did not split as expected full stderr was: this derivation will be built: /nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv building '/nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv'... trying https://crates.io/api/v1/crates/diesel_cli/2.1.5/download % 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 curl: (22) The requested URL returned error: 403 error: cannot download diesel_cli-2.1.5.tar.gz from any mirror error: builder for '/nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv' failed with exit code 1; last 8 log lines: > > trying https://crates.io/api/v1/crates/diesel_cli/2.1.5/download > % 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 > curl: (22) The requested URL returned error: 403 > error: cannot download diesel_cli-2.1.5.tar.gz from any mirror For full logs, run 'nix log /nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'diesel-cli.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv /nix/store/ivn67z9zb8h0hfdvr9h053j0nlmkx1w1-diesel-cli-2.1.5-vendor.tar.gz.drv /nix/store/v331cc3w43pn7fkqii5rfharhcbshdgf-diesel-cli-2.1.5.drv building '/nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv'... trying https://crates.io/api/v1/crates/diesel_cli/2.1.5/download % 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:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download diesel_cli-2.1.5.tar.gz from any mirror error: builder for '/nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv' failed with exit code 1; last 8 log lines: > > trying https://crates.io/api/v1/crates/diesel_cli/2.1.5/download > % 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:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 403 > error: cannot download diesel_cli-2.1.5.tar.gz from any mirror For full logs, run 'nix log /nix/store/80nllhnpnlmawl5cz07m1cni57ylf737-diesel_cli-2.1.5.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/v331cc3w43pn7fkqii5rfharhcbshdgf-diesel-cli-2.1.5.drv' failed to build [result] Failed to update diesel-cli 2.1.1 -> 2.1.5 https://repology.org/project/diesel-cli/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 tapview, using log file: /var/log/nixpkgs-update/tapview/2024-03-21.log tapview 1.1 -> 1.10 https://repology.org/project/tapview/versions attrpath: tapview 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/tapview/default.nix b/pkgs/development/tools/tapview/default.nix index fa8b0d1a2774..c36248d9a0ff 100644 --- a/pkgs/development/tools/tapview/default.nix +++ b/pkgs/development/tools/tapview/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { pname = "tapview"; - version = "1.1"; + version = "1.10"; nativeBuildInputs = [ asciidoctor ]; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { owner = "esr"; repo = pname; rev = version; - sha256 = "sha256-inrxICNglZU/tup+YnHaDiVss32K2OXht/7f8lOZI4g="; + sha256 = "sha256-uf7IR7HJF/WpOCIWPnLmEHMH4MVsjBMe9rNztAa63I4="; }; # Remove unnecessary `echo` checks: `/bin/echo` fails, and `echo -n` works as expected. [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 tapview nix build failed. got build log for 'tapview' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/ivmmvmxmsp1dlwwidqa13h6rjz4xzpfk-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/nc8hp7x0aqf0dddf26m8x6qzcymf6zn6-dont_check_echo.patch patching file tapview Hunk #1 FAILED at 13. Hunk #2 FAILED at 37. Hunk #3 succeeded at 265 with fuzz 2 (offset 110 lines). 2 out of 3 hunks FAILED -- saving rejects to file tapview.rej [result] Failed to update tapview 1.1 -> 1.10 https://repology.org/project/tapview/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libopus, using log file: /var/log/nixpkgs-update/libopus/2024-03-21.log libopus 1.4 -> 1.5.1 https://repology.org/project/opus/versions attrpath: libopus Checking auto update branch... No auto update branch exists Old version 1.4" not present in staging derivation file with contents: { lib , stdenv , fetchpatch , fetchurl , gitUpdater , meson , python3 , ninja , fixedPoint ? false , withCustomModes ? true , withIntrinsics ? stdenv.hostPlatform.isAarch || stdenv.hostPlatform.isx86 , withAsm ? false # tests , ffmpeg-headless , testers }: stdenv.mkDerivation (finalAttrs: { pname = "libopus"; version = "1.5.1"; src = fetchurl { url = "https://downloads.xiph.org/releases/opus/opus-${finalAttrs.version}.tar.gz"; hash = "sha256-uEYQlZuNQXthGqEqIlZeCjcyCXxjidGQmNhEVD40D4U="; }; patches = [ ./fix-pkg-config-paths.patch # Some tests time out easily on slower machines ./test-timeout.patch ]; postPatch = '' patchShebangs meson/ ''; outputs = [ "out" "dev" ]; nativeBuildInputs = [ meson python3 ninja ]; mesonFlags = [ (lib.mesonBool "fixed-point" fixedPoint) (lib.mesonBool "custom-modes" withCustomModes) (lib.mesonEnable "intrinsics" withIntrinsics) (lib.mesonEnable "rtcd" (withIntrinsics || withAsm)) (lib.mesonEnable "asm" withAsm) (lib.mesonEnable "docs" false) ]; doCheck = !stdenv.isi686 && !stdenv.isAarch32; # test_unit_LPC_inv_pred_gain fails passthru = { updateScript = gitUpdater { url = "https://gitlab.xiph.org/xiph/opus.git"; rev-prefix = "v"; }; tests = { inherit ffmpeg-headless; pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; moduleNames = [ "opus" ]; }; }; }; meta = with lib; { description = "Open, royalty-free, highly versatile audio codec"; homepage = "https://opus-codec.org/"; changelog = "https://gitlab.xiph.org/xiph/opus/-/releases/v${finalAttrs.version}"; license = licenses.bsd3; platforms = platforms.all; maintainers = [ ]; }; }) [result] Failed to update libopus 1.4 -> 1.5.1 https://repology.org/project/opus/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.hubeau, using log file: /var/log/nixpkgs-update/rPackages.hubeau/2024-03-21.log rPackages.hubeau 0.4.1 -> 0.5.0 https://repology.org/project/r:hubeau/versions attrpath: rPackages.hubeau 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.hubeau 0.4.1 -> 0.5.0 https://repology.org/project/r:hubeau/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.crop, using log file: /var/log/nixpkgs-update/rPackages.crop/2024-03-21.log rPackages.crop 0.0-2 -> 0.0-3 https://repology.org/project/r:crop/versions attrpath: rPackages.crop Checking auto update branch... No auto update branch exists Old version 0.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.crop 0.0-2 -> 0.0-3 https://repology.org/project/r:crop/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.SimNPH, using log file: /var/log/nixpkgs-update/rPackages.SimNPH/2024-03-21.log rPackages.SimNPH 0.5.4 -> 0.5.5 https://repology.org/project/r:simnph/versions attrpath: rPackages.SimNPH 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.SimNPH 0.5.4 -> 0.5.5 https://repology.org/project/r:simnph/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.microsoft-kiota-http, using log file: /var/log/nixpkgs-update/python311Packages.microsoft-kiota-http/2024-03-21.log python311Packages.microsoft-kiota-http 0 -> 1 attrpath: python311Packages.microsoft-kiota-http 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/dhd2r6mhdw51h7nrv2zlfn387fcsxjnj-packages.json.drv building '/nix/store/dhd2r6mhdw51h7nrv2zlfn387fcsxjnj-packages.json.drv'... Going to be running update for following packages: - python3.11-microsoft-kiota-http-1.3.1 Press Enter key to continue... Running update for: - python3.11-microsoft-kiota-http-1.3.1: UPDATING ... - python3.11-microsoft-kiota-http-1.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.microsoft-kiota-http 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 nexttrace, using log file: /var/log/nixpkgs-update/nexttrace/2024-03-21.log nexttrace 1.2.8 -> 1.2.9 https://github.com/nxtrace/NTrace-core/releases attrpath: nexttrace 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-xGE2iUCWMNfiI18N8dyubuhhaY5JD/sy1uRSDyTSqVA=" build succeeded unexpectedlystderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'nexttrace.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/c0mxjn20nvhp0ai5nl91cn6597w5hm24-nexttrace-1.2.9-go-modules.drv /nix/store/5nj2gndkjhb4k76xs784qfjzc8i4r7m1-nexttrace-1.2.9.drv building '/nix/store/c0mxjn20nvhp0ai5nl91cn6597w5hm24-nexttrace-1.2.9-go-modules.drv'... Running phase: unpackPhase unpacking source archive /nix/store/hnnbjradng43jdl6zgkl227da19lkw7p-source source root is source Running phase: patchPhase Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase Running phase: buildPhase go: go.mod requires go >= 1.22 (running go 1.21.7; GOTOOLCHAIN=local) error: builder for '/nix/store/c0mxjn20nvhp0ai5nl91cn6597w5hm24-nexttrace-1.2.9-go-modules.drv' failed with exit code 1; last 8 log lines: > Running phase: unpackPhase > unpacking source archive /nix/store/hnnbjradng43jdl6zgkl227da19lkw7p-source > source root is source > Running phase: patchPhase > Running phase: updateAutotoolsGnuConfigScriptsPhase > Running phase: configurePhase > Running phase: buildPhase > go: go.mod requires go >= 1.22 (running go 1.21.7; GOTOOLCHAIN=local) For full logs, run 'nix log /nix/store/c0mxjn20nvhp0ai5nl91cn6597w5hm24-nexttrace-1.2.9-go-modules.drv'. error: 1 dependencies of derivation '/nix/store/5nj2gndkjhb4k76xs784qfjzc8i4r7m1-nexttrace-1.2.9.drv' failed to build [result] Failed to update nexttrace 1.2.8 -> 1.2.9 https://github.com/nxtrace/NTrace-core/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 decode-spam-headers, using log file: /var/log/nixpkgs-update/decode-spam-headers/2024-03-21.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/wpan7485bdb085ny9blqy6i5d8b40ldl-packages.json.drv building '/nix/store/wpan7485bdb085ny9blqy6i5d8b40ldl-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-21.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 nwjs, using log file: /var/log/nixpkgs-update/nwjs/2024-03-21.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 cairo-lang, using log file: /var/log/nixpkgs-update/cairo-lang/2024-03-21.log cairo-lang 2.5.4 -> 2.6.3 https://github.com/starkware-libs/cairo/releases attrpath: cairo-lang 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-hOAQy/g1Tcq4dC6DiAMueuak0FMDIgtaqqSarTlmJkE= 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 cairo-lang nix build failed. running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s  Running unittests src/main.rs (target/x86_64-unknown-linux-gnu/release/deps/generate_syntax-df2764a39440e58f) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s  Running unittests src/main.rs (target/x86_64-unknown-linux-gnu/release/deps/get_lowering-b48d5708fc307898) running 1 test test test_lowering_consistency ... FAILED failures: ---- test_lowering_consistency stdout ---- thread 'test_lowering_consistency' panicked at crates/bin/get-lowering/src/main.rs:37:10: called `Result::unwrap()` on an `Err` value: Failed to find development corelib. note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace failures: test_lowering_consistency test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s error: test failed, to rerun pass `-p get-lowering --bin get-lowering` [result] Failed to update cairo-lang 2.5.4 -> 2.6.3 https://github.com/starkware-libs/cairo/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 x11basic, using log file: /var/log/nixpkgs-update/x11basic/2024-03-21.log x11basic 1.27 -> 1.28 https://repology.org/project/x11basic/versions attrpath: x11basic 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/compilers/x11basic/default.nix b/pkgs/development/compilers/x11basic/default.nix index 3ce548c9b483..6ba9024f8b50 100644 --- a/pkgs/development/compilers/x11basic/default.nix +++ b/pkgs/development/compilers/x11basic/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "X11basic"; - version = "1.27"; + version = "1.28"; src = fetchFromGitHub { owner = "kollokollo"; repo = pname; rev = version; - sha256 = "1hpxzdqnjl1fiwgs2vrjg4kxm29c7pqwk3g1m4p5pm4x33a3d1q2"; + sha256 = "sha256-bCl+szQ3BSLL1VCXK8xfM6+6WQ1iFh49GhvHvxG9bGs="; }; nativeBuildInputs = [ autoconf automake ]; [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 x11basic nix build failed. | ^~~~~~~~ bytecode.c:1452:40: note: in expansion of macro 'TR' 1452 | if(TL!=PL_ARBINT) BCADD(BC_X2AI);TR(PL_ARBINT); | ^~ bytecode.c: In function 'bc_parser': bytecode.c:517:7: warning: 'a' may be used uninitialized []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wmaybe-uninitialized-Wmaybe-uninitialized]8;;] 517 | arbint_parser(funktion,a); | ^~~~~~~~~~~~~~~~~~~~~~~~~ bytecode.c:515:14: note: 'a' was declared here 515 | ARBINT a; | ^ bytecode.c:1033:9: warning: 'a' may be used uninitialized []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wmaybe-uninitialized-Wmaybe-uninitialized]8;;] 1033 | arbint_parser(s,a); | ^~~~~~~~~~~~~~~~~~ bytecode.c:1031:16: note: 'a' was declared here 1031 | ARBINT a; | ^ gcc -Wall -g -O2 -I /usr/include/freetype2/ -DUSE_SDL -DUSE_X11 -O3 -fno-omit-frame-pointer -c -o xbbc.o xbbc.c gcc -Wall -o xbbc bytecode.o xbbc.o -L . -ldl -lm -lpthread -lutil -lreadline -lbluetooth -lX11 -lx11basic strip xbbc gcc -Wall -g -O2 -I /usr/include/freetype2/ -DUSE_SDL -DUSE_X11 -O3 -fno-omit-frame-pointer -c -o xbvm.o xbvm.c gcc -Wall -o xbvm xbvm.o -L . -ldl -lm -lpthread -lutil -lreadline -lbluetooth -lX11 -lx11basic strip xbvm LD_LIBRARY_PATH=. ./xbasic examples/compiler/xbc.bas --dynamic -o xbc -L . strip xbc LD_LIBRARY_PATH=. ./xbc examples/compiler/bas2x11basic.bas --dynamic -o bas2x11basic -L . strip bas2x11basic fig2dev -L eps ../artwork/x11basicVersion.fig x11basic.eps /nix/store/4vzal97iq3dmrgycj8r0gflrh51p8w1s-bash-5.2p26/bin/bash: line 1: fig2dev: command not found make: *** [Makefile:790: x11basic.eps] Error 127 [result] Failed to update x11basic 1.27 -> 1.28 https://repology.org/project/x11basic/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.CMplot, using log file: /var/log/nixpkgs-update/rPackages.CMplot/2024-03-21.log rPackages.CMplot 4.5.0 -> 4.5.1 https://repology.org/project/r:cmplot/versions attrpath: rPackages.CMplot Checking auto update branch... No auto update branch exists Old version 4.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.CMplot 4.5.0 -> 4.5.1 https://repology.org/project/r:cmplot/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.pedquant, using log file: /var/log/nixpkgs-update/rPackages.pedquant/2024-03-21.log rPackages.pedquant 0.2.3 -> 0.2.4 https://repology.org/project/r:pedquant/versions attrpath: rPackages.pedquant 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.pedquant 0.2.3 -> 0.2.4 https://repology.org/project/r:pedquant/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath prometheus-gitlab-ci-pipelines-exporter, using log file: /var/log/nixpkgs-update/prometheus-gitlab-ci-pipelines-exporter/2024-03-21.log prometheus-gitlab-ci-pipelines-exporter 0.5.6 -> 0.5.7 https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/releases attrpath: prometheus-gitlab-ci-pipelines-exporter 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-qZ9Ph8YZBBGS3dFlk3zTynU9WuRUHl2fVSPtd7hUB8E=" build succeeded unexpectedlystderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'prometheus-gitlab-ci-pipelines-exporter.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/xfj4ddxq8cbd0bbgzdj35mivdhcf89ng-gitlab-ci-pipelines-exporter-0.5.7-go-modules.drv /nix/store/z4s5jbwc0vvswkjw5dfl6bl3vws9dj9y-gitlab-ci-pipelines-exporter-0.5.7.drv building '/nix/store/xfj4ddxq8cbd0bbgzdj35mivdhcf89ng-gitlab-ci-pipelines-exporter-0.5.7-go-modules.drv'... Running phase: unpackPhase unpacking source archive /nix/store/zmyq26iji9gsl9zkwq00qjggnzhqm2z8-source source root is source Running phase: patchPhase Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase Running phase: buildPhase go: go.mod requires go >= 1.22 (running go 1.21.7; GOTOOLCHAIN=local) error: builder for '/nix/store/xfj4ddxq8cbd0bbgzdj35mivdhcf89ng-gitlab-ci-pipelines-exporter-0.5.7-go-modules.drv' failed with exit code 1; last 8 log lines: > Running phase: unpackPhase > unpacking source archive /nix/store/zmyq26iji9gsl9zkwq00qjggnzhqm2z8-source > source root is source > Running phase: patchPhase > Running phase: updateAutotoolsGnuConfigScriptsPhase > Running phase: configurePhase > Running phase: buildPhase > go: go.mod requires go >= 1.22 (running go 1.21.7; GOTOOLCHAIN=local) For full logs, run 'nix log /nix/store/xfj4ddxq8cbd0bbgzdj35mivdhcf89ng-gitlab-ci-pipelines-exporter-0.5.7-go-modules.drv'. error: 1 dependencies of derivation '/nix/store/z4s5jbwc0vvswkjw5dfl6bl3vws9dj9y-gitlab-ci-pipelines-exporter-0.5.7.drv' failed to build [result] Failed to update prometheus-gitlab-ci-pipelines-exporter 0.5.6 -> 0.5.7 https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/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.BeSS, using log file: /var/log/nixpkgs-update/rPackages.BeSS/2024-03-21.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 rPackages.ggOceanMaps, using log file: /var/log/nixpkgs-update/rPackages.ggOceanMaps/2024-03-21.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 rPackages.JointFPM, using log file: /var/log/nixpkgs-update/rPackages.JointFPM/2024-03-21.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 For attrpath haskellPackages.peyotls-codec, using log file: /var/log/nixpkgs-update/haskellPackages.peyotls-codec/2024-03-21.log haskellPackages.peyotls-codec 0.3.1.0 -> 0.3.1.1 https://repology.org/project/haskell:peyotls-codec/versions attrpath: haskellPackages.peyotls-codec Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update haskellPackages.peyotls-codec 0.3.1.0 -> 0.3.1.1 https://repology.org/project/haskell:peyotls-codec/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.org, using log file: /var/log/nixpkgs-update/emacsPackages.org/2024-03-21.log emacsPackages.org 9.6.19 -> 9.6.21 https://repology.org/project/emacs:org-mode/versions attrpath: emacsPackages.org 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.org 9.6.19 -> 9.6.21 https://repology.org/project/emacs:org-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 ldm, using log file: /var/log/nixpkgs-update/ldm/2024-03-21.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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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/4vzal97iq3dmrgycj8r0gflrh51p8w1s-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/4vzal97iq3dmrgycj8r0gflrh51p8w1s-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/4vzal97iq3dmrgycj8r0gflrh51p8w1s-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 rPackages.klassR, using log file: /var/log/nixpkgs-update/rPackages.klassR/2024-03-21.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 rPackages.ConcordanceTest, using log file: /var/log/nixpkgs-update/rPackages.ConcordanceTest/2024-03-21.log rPackages.ConcordanceTest 1.0.2 -> 1.0.3 https://repology.org/project/r:concordancetest/versions attrpath: rPackages.ConcordanceTest 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.ConcordanceTest 1.0.2 -> 1.0.3 https://repology.org/project/r:concordancetest/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.oeli, using log file: /var/log/nixpkgs-update/rPackages.oeli/2024-03-21.log rPackages.oeli 0.3.1 -> 0.4.1 https://repology.org/project/r:oeli/versions attrpath: rPackages.oeli 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.oeli 0.3.1 -> 0.4.1 https://repology.org/project/r:oeli/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.polygon3, using log file: /var/log/nixpkgs-update/python311Packages.polygon3/2024-03-21.log python311Packages.polygon3 3.0.9 -> 3.0.9.1 https://repology.org/project/python:polygon3/versions attrpath: python311Packages.polygon3 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/cdcz6parzwfn4f0bjya40d0vz0jkbqqz-packages.json.drv building '/nix/store/cdcz6parzwfn4f0bjya40d0vz0jkbqqz-packages.json.drv'... Going to be running update for following packages: - python3.11-polygon3-3.0.9 Press Enter key to continue... Running update for: - python3.11-polygon3-3.0.9: UPDATING ... - python3.11-polygon3-3.0.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.polygon3 3.0.9 -> 3.0.9.1 https://repology.org/project/python:polygon3/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hdl-dump, using log file: /var/log/nixpkgs-update/hdl-dump/2024-03-21.log hdl-dump 2022-09-19 -> 20200727 https://repology.org/project/hdl-dump/versions attrpath: hdl-dump Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update hdl-dump 2022-09-19 -> 20200727 https://repology.org/project/hdl-dump/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/4g3xsiskrzfrfjy007159jmlqklxalk9-packages.json.drv building '/nix/store/4g3xsiskrzfrfjy007159jmlqklxalk9-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 currently don't know how to update perl [result] Failed to update perl536Packages.ENVUtil 0.03 -> 0.04 https://repology.org/project/perl:env-util/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.critpath, using log file: /var/log/nixpkgs-update/rPackages.critpath/2024-03-21.log rPackages.critpath 0.2.1 -> 0.2.2 https://repology.org/project/r:critpath/versions attrpath: rPackages.critpath 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.critpath 0.2.1 -> 0.2.2 https://repology.org/project/r:critpath/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.mccs, using log file: /var/log/nixpkgs-update/ocamlPackages.mccs/2024-03-21.log ocamlPackages.mccs 1.1+13 -> 1.1.14 https://repology.org/project/ocaml:mccs/versions attrpath: ocamlPackages.mccs 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/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv building '/nix/store/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv'... trying https://github.com/AltGr/ocaml-mccs/archive/1.1.14.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/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/AltGr/ocaml-mccs/archive/1.1.14.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/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ocamlPackages.mccs.originalSrc' not found stderr did not split as expected full stderr was: these 4 derivations will be built: /nix/store/2596bxjng57vxv7y7iyxsg6bb1s95bms-source.drv /nix/store/4mihiamkqb1vg3ypjhy32h5qg9f5k66m-ocaml5.1.1-cudf-0.10.drv /nix/store/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv /nix/store/3dv9jbnqv6fy0j5p30p0asqs9cxibfhg-ocaml5.1.1-mccs-1.1.14.drv building '/nix/store/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv'... building '/nix/store/2596bxjng57vxv7y7iyxsg6bb1s95bms-source.drv'... trying https://gitlab.com/api/v4/projects/irill%2Fcudf/repository/archive.tar.gz?sha=v0.10 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed trying https://github.com/AltGr/ocaml-mccs/archive/1.1.14.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/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/AltGr/ocaml-mccs/archive/1.1.14.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/jkdi2x6rsq2wgmcspzl4l6g5sm8q6zpk-source.drv'. error: 1 dependencies of derivation '/nix/store/3dv9jbnqv6fy0j5p30p0asqs9cxibfhg-ocaml5.1.1-mccs-1.1.14.drv' failed to build [result] Failed to update ocamlPackages.mccs 1.1+13 -> 1.1.14 https://repology.org/project/ocaml:mccs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libabigail, using log file: /var/log/nixpkgs-update/libabigail/2024-03-21.log libabigail 2.1 -> 2.4 https://repology.org/project/libabigail/versions attrpath: libabigail 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/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv building '/nix/store/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv'... trying https://mirrors.kernel.org/sourceware/libabigail/libabigail-2.4.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 error: cannot download libabigail-2.4.tar.gz from any mirror error: builder for '/nix/store/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://mirrors.kernel.org/sourceware/libabigail/libabigail-2.4.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 > error: cannot download libabigail-2.4.tar.gz from any mirror For full logs, run 'nix log /nix/store/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'libabigail.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv /nix/store/3xgdqdizhnybwskpcw5k7gb89x421q3s-libabigail-2.4.drv building '/nix/store/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv'... trying https://mirrors.kernel.org/sourceware/libabigail/libabigail-2.4.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 error: cannot download libabigail-2.4.tar.gz from any mirror error: builder for '/nix/store/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://mirrors.kernel.org/sourceware/libabigail/libabigail-2.4.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 > error: cannot download libabigail-2.4.tar.gz from any mirror For full logs, run 'nix log /nix/store/fdx1amg6a0c9r46jzawl8rlm36pc1fzr-libabigail-2.4.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/3xgdqdizhnybwskpcw5k7gb89x421q3s-libabigail-2.4.drv' failed to build [result] Failed to update libabigail 2.1 -> 2.4 https://repology.org/project/libabigail/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.binary_0_8_9_1, using log file: /var/log/nixpkgs-update/haskellPackages.binary_0_8_9_1/2024-03-21.log haskellPackages.binary_0_8_9_1 0.8.9.1 -> 0.10.0.0 https://repology.org/project/haskell:binary/versions attrpath: haskellPackages.binary_0_8_9_1 Checking auto update branch... No auto update branch exists Version in attr path haskellPackages.binary_0_8_9_1 not compatible with 0.10.0.0 [result] Failed to update haskellPackages.binary_0_8_9_1 0.8.9.1 -> 0.10.0.0 https://repology.org/project/haskell:binary/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath shorewall, using log file: /var/log/nixpkgs-update/shorewall/2024-03-21.log shorewall 5.2.3.3 -> 5.2.8 https://repology.org/project/shorewall/versions attrpath: shorewall 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 shorewall 5.2.3.3 -> 5.2.8 https://repology.org/project/shorewall/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-jack-audio-connection-kit-1.9.22.tar.gz.drv building '/nix/store/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-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/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-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/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-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/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-jack-audio-connection-kit-1.9.22.tar.gz.drv /nix/store/7x39cw5z8g6ln78c33v5rfcky59d88wr-jack1-1.9.22.drv these 4 paths will be fetched (0.31 MiB download, 2.06 MiB unpacked): /nix/store/wqdqc184hh0azbg8w9yd1akb8ma7nwrx-dbus-cplusplus-0.9.0 /nix/store/2l2qbiz4msxgq242bc74z6kdl4nzn8aq-ffado-2.4.8-bin /nix/store/x5kywqap5f6lhsnqxn3ji7jq39di3i52-ffado-2.4.8-dev /nix/store/rqx86sqy8awnnvdwhfnifgpghnykxmis-python3-3.11.8-env copying path '/nix/store/wqdqc184hh0azbg8w9yd1akb8ma7nwrx-dbus-cplusplus-0.9.0' from 'https://cache.nixos.org'... copying path '/nix/store/rqx86sqy8awnnvdwhfnifgpghnykxmis-python3-3.11.8-env' from 'https://cache.nixos.org'... building '/nix/store/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-jack-audio-connection-kit-1.9.22.tar.gz.drv'... copying path '/nix/store/2l2qbiz4msxgq242bc74z6kdl4nzn8aq-ffado-2.4.8-bin' from 'https://cache.nixos.org'... copying path '/nix/store/x5kywqap5f6lhsnqxn3ji7jq39di3i52-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/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-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/nmg3wg8wjs28wsxyjkmc0ajzzsbzzd0j-jack-audio-connection-kit-1.9.22.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/7x39cw5z8g6ln78c33v5rfcky59d88wr-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 rPackages.fitPS, using log file: /var/log/nixpkgs-update/rPackages.fitPS/2024-03-21.log rPackages.fitPS 0.2-6 -> 1.0.1 https://repology.org/project/r:fitps/versions attrpath: rPackages.fitPS Checking auto update branch... No auto update branch exists Old version 0.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.fitPS 0.2-6 -> 1.0.1 https://repology.org/project/r:fitps/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.MultiAssayExperiment, using log file: /var/log/nixpkgs-update/rPackages.MultiAssayExperiment/2024-03-21.log rPackages.MultiAssayExperiment 1.28.0 -> 1.29.0 https://repology.org/project/r:multiassayexperiment/versions attrpath: rPackages.MultiAssayExperiment Checking auto update branch... No auto update branch exists Old version 1.28.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.MultiAssayExperiment 1.28.0 -> 1.29.0 https://repology.org/project/r:multiassayexperiment/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-fonts, using log file: /var/log/nixpkgs-update/google-fonts/2024-03-21.log google-fonts 2023-10-20 -> 20170830 https://repology.org/project/google-fonts/versions attrpath: google-fonts Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update google-fonts 2023-10-20 -> 20170830 https://repology.org/project/google-fonts/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath shaka-packager, using log file: /var/log/nixpkgs-update/shaka-packager/2024-03-21.log shaka-packager 2.6.1 -> 3.0.3 https://github.com/shaka-project/shaka-packager/releases attrpath: shaka-packager 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 shaka-packager 2.6.1 -> 3.0.3 https://github.com/shaka-project/shaka-packager/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 projectlibre, using log file: /var/log/nixpkgs-update/projectlibre/2024-03-21.log projectlibre 1.7.0 -> 1.9.3 https://repology.org/project/projectlibre/versions attrpath: projectlibre 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/projectlibre/default.nix b/pkgs/applications/misc/projectlibre/default.nix index 52e56ed0623c..5cf9e508713f 100644 --- a/pkgs/applications/misc/projectlibre/default.nix +++ b/pkgs/applications/misc/projectlibre/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { pname = "projectlibre"; - version = "1.7.0"; + version = "1.9.3"; src = fetchgit { url = "https://git.code.sf.net/p/projectlibre/code"; - rev = "0c939507cc63e9eaeb855437189cdec79e9386c2"; # version 1.7.0 was not tagged - sha256 = "0vy5vgbp45ai957gaby2dj1hvmbxfdlfnwcanwqm9f8q16qipdbq"; + rev = "0c939507cc63e9eaeb855437189cdec79e9386c2"; # version 1.9.3 was not tagged + sha256 = "sha256-eLUbsQkYuVQxt4px62hzfdUNg2zCL/VOSVEVctfbxW8="; }; nativeBuildInputs = [ makeWrapper ]; rev equal; no update necessary [result] Failed to update projectlibre 1.7.0 -> 1.9.3 https://repology.org/project/projectlibre/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.menhir, using log file: /var/log/nixpkgs-update/ocamlPackages.menhir/2024-03-21.log ocamlPackages.menhir 20230608 -> 20231231 https://repology.org/project/ocaml:menhir/versions attrpath: ocamlPackages.menhir Checking auto update branch... No auto update branch exists Old version 20230608" not present in master derivation file with contents: { lib, fetchFromGitLab, buildDunePackage , menhirLib, menhirSdk }: buildDunePackage rec { pname = "menhir"; minimalOCamlVersion = "4.03"; inherit (menhirLib) version src; buildInputs = [ menhirLib menhirSdk ]; meta = menhirSdk.meta // { description = "A LR(1) parser generator for OCaml"; mainProgram = "menhir"; }; } [result] Failed to update ocamlPackages.menhir 20230608 -> 20231231 https://repology.org/project/ocaml:menhir/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pim6sd, using log file: /var/log/nixpkgs-update/pim6sd/2024-03-21.log pim6sd 2019-05-31 -> 20031021a https://repology.org/project/pim6sd/versions attrpath: pim6sd 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/pim6sd/default.nix b/pkgs/servers/pim6sd/default.nix index e1bc6ce48ff4..a46ff5192ceb 100644 --- a/pkgs/servers/pim6sd/default.nix +++ b/pkgs/servers/pim6sd/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "pim6sd"; - version = "unstable-2019-05-31"; + version = "unstable-20031021a"; src = fetchFromGitHub { owner = "troglobit"; repo = "pim6sd"; rev = "fa3909529981dd705ba9ead0517222c30c581a4e"; - sha256 = "0x7dyark2mp9xqz9cnmmgaf0z143vxn2835clllpji4ylg77zdjw"; + sha256 = "sha256-XLZ/zqOeRHkppawMJGzfg4QPnHq1WpY+7ulWMbPy7XQ="; }; nativeBuildInputs = [ autoreconfHook bison flex ]; Source url did not change. [result] Failed to update pim6sd 2019-05-31 -> 20031021a https://repology.org/project/pim6sd/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ac-rtags, using log file: /var/log/nixpkgs-update/emacsPackages.ac-rtags/2024-03-21.log emacsPackages.ac-rtags 2.38 -> 3.23 https://repology.org/project/emacs:ac-rtags/versions attrpath: emacsPackages.ac-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.ac-rtags 2.38 -> 3.23 https://repology.org/project/emacs:ac-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 zita-resampler, using log file: /var/log/nixpkgs-update/zita-resampler/2024-03-21.log zita-resampler 1.8.0 -> 1.11.2 https://repology.org/project/zita-resampler/versions attrpath: zita-resampler 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/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv building '/nix/store/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv'... trying http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-resampler-1.11.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 288 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download zita-resampler-1.11.2.tar.bz2 from any mirror error: builder for '/nix/store/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-resampler-1.11.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 288 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download zita-resampler-1.11.2.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'zita-resampler.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv /nix/store/v6ngbgrhrqlkxalb2qz3dllyzaf0m1bx-zita-resampler-1.11.2.drv building '/nix/store/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv'... trying http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-resampler-1.11.2.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 288 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download zita-resampler-1.11.2.tar.bz2 from any mirror error: builder for '/nix/store/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-resampler-1.11.2.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 288 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download zita-resampler-1.11.2.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/q11rbc3hzbp7fixd5cm0l5snhyz6q01i-zita-resampler-1.11.2.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/v6ngbgrhrqlkxalb2qz3dllyzaf0m1bx-zita-resampler-1.11.2.drv' failed to build [result] Failed to update zita-resampler 1.8.0 -> 1.11.2 https://repology.org/project/zita-resampler/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath networkminer, using log file: /var/log/nixpkgs-update/networkminer/2024-03-21.log networkminer 2.8 -> 2.8.1 https://repology.org/project/networkminer/versions attrpath: networkminer 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/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv building '/nix/store/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv'... trying https://archive.org/download/networkminer-2-8-1/NetworkMiner_2-8-1_source.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:00:03 --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download NetworkMiner_2-8-1_source.zip from any mirror error: builder for '/nix/store/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv' failed with exit code 1; last 7 log lines: > > trying https://archive.org/download/networkminer-2-8-1/NetworkMiner_2-8-1_source.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:00:03 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download NetworkMiner_2-8-1_source.zip from any mirror For full logs, run 'nix log /nix/store/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'networkminer.originalSrc' not found stderr did not split as expected full stderr was: these 6 derivations will be built: /nix/store/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv /nix/store/m9lraw6mrymc4mj18algfdhzhamls2gj-networkminer-2.8.1-nuget-deps.drv /nix/store/sgggrs3qs7vggp3xcfr6jfg3vrz5virk-networkminer-2.8.1-dependencies-source.drv /nix/store/q24bf427b3bfckp8gvbcqsv1r8f0pfij-networkminer-2.8.1-nuget-source.drv /nix/store/dlk34fdr11110k8d6jbbljwm5yg2bqzp-dotnet-configure-hook.drv /nix/store/r2ri4adnwscq0zf10v81d38vh6ha749q-networkminer-2.8.1.drv these 5 paths will be fetched (62.36 MiB download, 138.27 MiB unpacked): /nix/store/16q4igxhid6ffx17rc31p1rlrfyr6c3r-Microsoft.NETFramework.ReferenceAssemblies.1.0.2.nupkg /nix/store/ax5f91jgvbj87yv0kvd8vwypjcmcg44f-Microsoft.NETFramework.ReferenceAssemblies.net461.1.0.2.nupkg /nix/store/spg4sfbl8vzk70552mb21vsjkykn7wvv-Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.2.nupkg /nix/store/gx6yckc2asqqhkvmbnziav6ib09lzblv-msbuild-16.10.1+xamarinxplat.2021.05.26.14.00 /nix/store/9sfx6ckqqbsr3bmq03bv4k6l0v1s5xq5-roslyn-4.2.0 copying path '/nix/store/9sfx6ckqqbsr3bmq03bv4k6l0v1s5xq5-roslyn-4.2.0' from 'https://cache.nixos.org'... building '/nix/store/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv'... copying path '/nix/store/16q4igxhid6ffx17rc31p1rlrfyr6c3r-Microsoft.NETFramework.ReferenceAssemblies.1.0.2.nupkg' from 'https://cache.nixos.org'... copying path '/nix/store/ax5f91jgvbj87yv0kvd8vwypjcmcg44f-Microsoft.NETFramework.ReferenceAssemblies.net461.1.0.2.nupkg' from 'https://cache.nixos.org'... copying path '/nix/store/spg4sfbl8vzk70552mb21vsjkykn7wvv-Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.2.nupkg' from 'https://cache.nixos.org'... trying https://archive.org/download/networkminer-2-8-1/NetworkMiner_2-8-1_source.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: (22) The requested URL returned error: 503 Warning: Problem : HTTP error. Will retry in 1 seconds. 3 retries left. 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 503 Warning: Problem : HTTP error. Will retry in 2 seconds. 2 retries left. copying path '/nix/store/gx6yckc2asqqhkvmbnziav6ib09lzblv-msbuild-16.10.1+xamarinxplat.2021.05.26.14.00' from 'https://cache.nixos.org'... 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 503 Warning: Problem : HTTP error. Will retry in 4 seconds. 1 retries left. building '/nix/store/m9lraw6mrymc4mj18algfdhzhamls2gj-networkminer-2.8.1-nuget-deps.drv'... building '/nix/store/sgggrs3qs7vggp3xcfr6jfg3vrz5virk-networkminer-2.8.1-dependencies-source.drv'... building '/nix/store/q24bf427b3bfckp8gvbcqsv1r8f0pfij-networkminer-2.8.1-nuget-source.drv'... /nix/store/4r9vy4c82k49409n7fbn6wy7vszrzg00-dotnet-sdk-6.0.419-source/share: licenses: /nix/store/2gak8bqnf412r41f4xpinh8g5mdhrsyc-networkminer-2.8.1-dependencies-source/share/licenses building '/nix/store/dlk34fdr11110k8d6jbbljwm5yg2bqzp-dotnet-configure-hook.drv'... 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 503 error: cannot download NetworkMiner_2-8-1_source.zip from any mirror error: builder for '/nix/store/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv' failed with exit code 1; last 16 log lines: > > trying https://archive.org/download/networkminer-2-8-1/NetworkMiner_2-8-1_source.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: (22) The requested URL returned error: 503 > Warning: Problem : HTTP error. Will retry in 1 seconds. 3 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 503 > Warning: Problem : HTTP error. Will retry in 2 seconds. 2 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 503 > Warning: Problem : HTTP error. Will retry in 4 seconds. 1 retries left. > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 503 > error: cannot download NetworkMiner_2-8-1_source.zip from any mirror For full logs, run 'nix log /nix/store/5znx48l1s42s2cl65ab6zgs7ffz24p60-NetworkMiner_2-8-1_source.zip.drv'. error: 1 dependencies of derivation '/nix/store/r2ri4adnwscq0zf10v81d38vh6ha749q-networkminer-2.8.1.drv' failed to build [result] Failed to update networkminer 2.8 -> 2.8.1 https://repology.org/project/networkminer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hakuneko, using log file: /var/log/nixpkgs-update/hakuneko/2024-03-21.log hakuneko 6.1.7 -> 8.3.4 https://repology.org/project/hakuneko/versions attrpath: hakuneko 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 hakuneko 6.1.7 -> 8.3.4 https://repology.org/project/hakuneko/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.edgeR, using log file: /var/log/nixpkgs-update/rPackages.edgeR/2024-03-21.log rPackages.edgeR 4.0.5 -> 4.0.16 https://repology.org/project/r:edger/versions attrpath: rPackages.edgeR Checking auto update branch... No auto update branch exists Old version 4.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.edgeR 4.0.5 -> 4.0.16 https://repology.org/project/r:edger/versions [options] github_user: r-ryantm, pull_request: 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.EmailSender 2.600 -> 2.601 https://repology.org/project/perl:email-sender/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gtk-sharp-beans, using log file: /var/log/nixpkgs-update/gtk-sharp-beans/2024-03-21.log gtk-sharp-beans 2.14.0 -> 2.14.1 https://repology.org/project/gtk-sharp-beans/versions attrpath: gtk-sharp-beans 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/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv building '/nix/store/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv'... trying https://github.com/mono/gtk-sharp-beans/archive/2.14.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 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/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/mono/gtk-sharp-beans/archive/2.14.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 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/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'gtk-sharp-beans.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv /nix/store/dr2xb4lyyfr8yl8sc4x2v8yv1vm3wv1w-gtk-sharp-beans-2.14.1.drv this path will be fetched (0.09 MiB download, 0.59 MiB unpacked): /nix/store/222l6gap4iqhjhc8h1g31rjsnmppk8j8-gio-sharp-0.3 copying path '/nix/store/222l6gap4iqhjhc8h1g31rjsnmppk8j8-gio-sharp-0.3' from 'https://cache.nixos.org'... building '/nix/store/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv'... trying https://github.com/mono/gtk-sharp-beans/archive/2.14.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 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/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/mono/gtk-sharp-beans/archive/2.14.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 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/rllld1lh6nv2jxcrpqvwycas1i49l3vm-source.drv'. error: 1 dependencies of derivation '/nix/store/dr2xb4lyyfr8yl8sc4x2v8yv1vm3wv1w-gtk-sharp-beans-2.14.1.drv' failed to build [result] Failed to update gtk-sharp-beans 2.14.0 -> 2.14.1 https://repology.org/project/gtk-sharp-beans/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.pastecs, using log file: /var/log/nixpkgs-update/rPackages.pastecs/2024-03-21.log rPackages.pastecs 1.3.21 -> 1.4.2 https://repology.org/project/r:pastecs/versions attrpath: rPackages.pastecs Checking auto update branch... No auto update branch exists Old version 1.3.21" 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.pastecs 1.3.21 -> 1.4.2 https://repology.org/project/r:pastecs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libsamplerate, using log file: /var/log/nixpkgs-update/libsamplerate/2024-03-21.log libsamplerate 0.1.9 -> 0.2.2 https://repology.org/project/libsamplerate/versions attrpath: libsamplerate 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/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv building '/nix/store/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv'... trying http://www.mega-nerd.com/SRC/libsamplerate-0.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 libsamplerate-0.2.2.tar.gz from any mirror error: builder for '/nix/store/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://www.mega-nerd.com/SRC/libsamplerate-0.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 libsamplerate-0.2.2.tar.gz from any mirror For full logs, run 'nix log /nix/store/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'libsamplerate.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv /nix/store/8yj5myb8mfvyw3y866qvb7xm6qizlsj8-libsamplerate-0.2.2.drv building '/nix/store/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv'... trying http://www.mega-nerd.com/SRC/libsamplerate-0.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 libsamplerate-0.2.2.tar.gz from any mirror error: builder for '/nix/store/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://www.mega-nerd.com/SRC/libsamplerate-0.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 libsamplerate-0.2.2.tar.gz from any mirror For full logs, run 'nix log /nix/store/3j9n85vw8f8w46kjamkpdlkcf2yzwcsl-libsamplerate-0.2.2.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/8yj5myb8mfvyw3y866qvb7xm6qizlsj8-libsamplerate-0.2.2.drv' failed to build [result] Failed to update libsamplerate 0.1.9 -> 0.2.2 https://repology.org/project/libsamplerate/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath btor2tools, using log file: /var/log/nixpkgs-update/btor2tools/2024-03-21.log btor2tools 1.0.0-pre_9831f9909fb283752a3d6d60d43613173bd8af42 -> 20230816 https://repology.org/project/btor2tools/versions attrpath: btor2tools Checking auto update branch... No auto update branch exists Old version 1.0.0-pre_9831f9909fb283752a3d6d60d43613173bd8af42" not present in master derivation file with contents: { lib, stdenv, cmake, fetchFromGitHub, fetchpatch, fixDarwinDylibNames }: stdenv.mkDerivation rec { pname = "btor2tools"; version = "1.0.0-pre_${src.rev}"; src = fetchFromGitHub { owner = "boolector"; repo = "btor2tools"; rev = "9831f9909fb283752a3d6d60d43613173bd8af42"; sha256 = "0mfqmkgvyw8fa2c09kww107dmk180ch1hp98r5kv41vnc04iqb0s"; }; patches = [ (fetchpatch { name = "gcc-13.patch"; url = "https://github.com/Boolector/btor2tools/commit/037f1fa88fb439dca6f648ad48a3463256d69d8b.patch"; hash = "sha256-FX1yy9XdUs1tAReOxhEzNHu48DrISzNNMSYoIrhHoFY="; }) ]; nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames; installPhase = '' mkdir -p $out $dev/include/btor2parser/ $lib/lib cp -vr bin $out cp -v ../src/btor2parser/btor2parser.h $dev/include/btor2parser cp -v lib/libbtor2parser.* $lib/lib ''; outputs = [ "out" "dev" "lib" ]; cmakeFlags = [ # RPATH of binary /nix/store/.../bin/btorsim contains a forbidden reference to /build/ "-DCMAKE_SKIP_BUILD_RPATH=ON" ]; meta = with lib; { description = "A generic parser and tool package for the BTOR2 format"; homepage = "https://github.com/Boolector/btor2tools"; license = licenses.mit; platforms = platforms.unix; maintainers = with maintainers; [ thoughtpolice ]; }; } [result] Failed to update btor2tools 1.0.0-pre_9831f9909fb283752a3d6d60d43613173bd8af42 -> 20230816 https://repology.org/project/btor2tools/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mathpix-snipping-tool, using log file: /var/log/nixpkgs-update/mathpix-snipping-tool/2024-03-21.log mathpix-snipping-tool 03.00.0072 -> 3.4.6.13 https://repology.org/project/mathpix-snipping-tool/versions attrpath: mathpix-snipping-tool 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/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv building '/nix/store/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv'... trying https://download.mathpix.com/linux/Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage % 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 Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage from any mirror error: builder for '/nix/store/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv' failed with exit code 1; last 7 log lines: > > trying https://download.mathpix.com/linux/Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage > % 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 Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage from any mirror For full logs, run 'nix log /nix/store/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'mathpix-snipping-tool.originalSrc' not found stderr did not split as expected full stderr was: these 9 derivations will be built: /nix/store/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv /nix/store/zl11s1fhp6d66w3f3iq2anngdvyc8gaw-profile.drv /nix/store/nqvzmcjf5bbzgrx80p767xq2icz90nsy-mathpix-snipping-tool-3.4.6.13-chrootenv-etc.drv /nix/store/828kmhdcbhb01ms74bydzsirg401gs08-mathpix-snipping-tool-3.4.6.13-usr-target.drv /nix/store/p4mjbggl3psw9n2s70axdszhhl3cxfxy-mathpix-snipping-tool-3.4.6.13-extracted.drv /nix/store/vsb1pq9zd85x30vf5pv0844iq8sclkhn-mathpix-snipping-tool-3.4.6.13-init.drv /nix/store/y6w7zvg3j1sla2dwdb40y2a3pscfj564-mathpix-snipping-tool-3.4.6.13-fhs.drv /nix/store/fyk2raxi0ri2hng08xbc6ifni6p5l76b-mathpix-snipping-tool-3.4.6.13-bwrap.drv /nix/store/y9bx27jcqdmbigz91dyhp3pan9arj47p-mathpix-snipping-tool-3.4.6.13.drv building '/nix/store/zl11s1fhp6d66w3f3iq2anngdvyc8gaw-profile.drv'... building '/nix/store/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv'... building '/nix/store/nqvzmcjf5bbzgrx80p767xq2icz90nsy-mathpix-snipping-tool-3.4.6.13-chrootenv-etc.drv'... /nix/store/08kdlfcvdr219p03p991pdrsqzq6fg41-mathpix-snipping-tool-3.4.6.13-chrootenv-etc/etc /build building '/nix/store/828kmhdcbhb01ms74bydzsirg401gs08-mathpix-snipping-tool-3.4.6.13-usr-target.drv'... warning: collision between `/nix/store/m9b4wcy4yyn5xcy394h74x7klb28nm2c-glibc-2.38-44-bin/bin/ldconfig' and `/nix/store/79l0h0pqyz4mjfg6hbra2rzy99i9lf3v-ldconfig/bin/ldconfig' warning: collision between `/nix/store/ksk3rnb0ljx8gngzk19jlmbjyvac4hw6-glibc-2.38-44/lib/locale/locale-archive' and `/nix/store/j1ba2w87aq4bcvv47mvrnss2ashfrzbk-glibc-locales-2.38-44/lib/locale/locale-archive' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/bin/bash' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/bin/bash' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/bin/bashbug' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/bin/bashbug' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/bin/sh' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/bin/sh' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/Makefile.sample' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/Makefile.sample' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/accept' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/accept' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/basename' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/basename' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/csv' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/csv' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/cut' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/cut' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/dirname' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/dirname' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/dsv' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/dsv' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/fdflags' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/fdflags' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/finfo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/finfo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/getconf' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/getconf' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/head' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/head' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/id' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/id' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/ln' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/ln' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/loadables.h' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/loadables.h' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/logname' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/logname' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/mkdir' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/mkdir' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/mkfifo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/mkfifo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/mktemp' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/mktemp' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/mypid' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/mypid' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/pathchk' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/pathchk' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/print' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/print' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/printenv' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/printenv' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/push' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/push' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/realpath' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/realpath' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/rm' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/rm' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/rmdir' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/rmdir' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/seq' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/seq' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/setpgid' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/setpgid' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/sleep' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/sleep' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/stat' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/stat' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/strftime' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/strftime' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/sync' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/sync' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/tee' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/tee' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/truefalse' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/truefalse' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/tty' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/tty' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/uname' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/uname' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/unlink' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/unlink' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/lib/bash/whoami' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/lib/bash/whoami' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/af/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/af/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/bg/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/bg/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/ca/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/ca/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/cs/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/cs/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/da/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/da/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/de/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/de/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/el/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/el/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/en@boldquot/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/en@boldquot/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/en@quot/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/en@quot/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/eo/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/eo/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/es/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/es/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/et/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/et/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/fi/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/fi/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/fr/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/fr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/ga/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/ga/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/gl/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/gl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/hr/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/hr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/hu/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/hu/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/id/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/id/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/it/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/it/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/ja/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/ja/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/ko/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/ko/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/lt/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/lt/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/nb/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/nb/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/nl/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/nl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/pl/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/pl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/pt/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/pt/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/pt_BR/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/pt_BR/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/ro/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/ro/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/ru/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/ru/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/sk/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/sk/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/sl/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/sl/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/sr/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/sr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/sv/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/sv/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/tr/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/tr/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/uk/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/uk/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/vi/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/vi/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/zh_CN/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/zh_CN/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/share/locale/zh_TW/LC_MESSAGES/bash.mo' and `/nix/store/d4d4r674rzyf2iznb3f2zclld205ci17-bash-interactive-5.2p26/share/locale/zh_TW/LC_MESSAGES/bash.mo' warning: collision between `/nix/store/cig3dkfkzvp1dhmxgyywrqfmajz86mgj-bash-interactive-5.2p26-man/share/man/man1/bash.1.gz' and `/nix/store/57kwhi30cvlg5c10xs3ybdwv5yx5fqq4-bash-interactive-5.2p26-man/share/man/man1/bash.1.gz' warning: collision between `/nix/store/cig3dkfkzvp1dhmxgyywrqfmajz86mgj-bash-interactive-5.2p26-man/share/man/man1/bashbug.1.gz' and `/nix/store/57kwhi30cvlg5c10xs3ybdwv5yx5fqq4-bash-interactive-5.2p26-man/share/man/man1/bashbug.1.gz' warning: collision between `/nix/store/arv9pn37s3w7ii586rpi644j35pq7byb-gtk+-2.24.33/bin/gtk-update-icon-cache' and `/nix/store/szlpn627gzzb6hsasl6dgg1fbp8nj0q0-gtk+3-3.24.41/bin/gtk-update-icon-cache' trying https://download.mathpix.com/linux/Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/addpart' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/addpart' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/blkdiscard' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blkdiscard' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/blkid' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blkid' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/blkzone' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blkzone' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/blockdev' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/blockdev' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/cal' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/cal' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/chcpu' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chcpu' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/chfn' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chfn' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/chmem' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chmem' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/chrt' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chrt' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/chsh' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/chsh' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/col' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/col' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/colcrt' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/colcrt' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/colrm' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/colrm' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/column' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/column' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/ctrlaltdel' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ctrlaltdel' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/delpart' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/delpart' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/dmesg' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/dmesg' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/eject' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/eject' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fadvise' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fadvise' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fallocate' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fallocate' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fdisk' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fdisk' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fincore' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fincore' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/findfs' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/findfs' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/findmnt' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/findmnt' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/flock' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/flock' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fsck' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsck' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fsck.cramfs' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsck.cramfs' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fsck.minix' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsck.minix' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fsfreeze' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fsfreeze' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/fstrim' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/fstrim' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/getopt' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/getopt' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/hardlink' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/hardlink' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/hexdump' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/hexdump' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/hwclock' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/hwclock' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/ionice' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ionice' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/ipcmk' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ipcmk' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/ipcrm' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ipcrm' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/ipcs' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ipcs' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/isosize' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/isosize' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/last' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/last' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/ldattach' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/ldattach' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/logger' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/logger' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/look' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/look' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/losetup' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/losetup' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lsblk' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsblk' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lscpu' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lscpu' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lsipc' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsipc' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lsirq' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsirq' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lslocks' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lslocks' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lslogins' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lslogins' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lsmem' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsmem' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/lsns' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/lsns' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mcookie' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mcookie' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mesg' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mesg' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs.bfs' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs.bfs' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs.cramfs' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs.cramfs' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mkfs.minix' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkfs.minix' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mkswap' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mkswap' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mount' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mount' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/mountpoint' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/mountpoint' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/namei' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/namei' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/nsenter' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/nsenter' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/partx' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/partx' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/pipesz' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/pipesz' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/pivot_root' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/pivot_root' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/prlimit' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/prlimit' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/readprofile' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/readprofile' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/rename' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rename' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/renice' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/renice' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/resizepart' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/resizepart' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/rev' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rev' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/rfkill' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rfkill' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/rtcwake' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/rtcwake' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/script' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/script' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/scriptlive' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/scriptlive' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/scriptreplay' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/scriptreplay' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/setarch' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/setarch' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/setpriv' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/setpriv' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/setsid' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/setsid' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/sfdisk' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/sfdisk' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/swaplabel' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/swaplabel' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/swapoff' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/swapoff' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/swapon' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/swapon' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/taskset' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/taskset' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/uclampset' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uclampset' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/umount' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/umount' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/unshare' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/unshare' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/utmpdump' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/utmpdump' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/uuidd' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uuidd' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/uuidgen' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uuidgen' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/uuidparse' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/uuidparse' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/waitpid' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/waitpid' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/wall' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/wall' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/wdctl' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/wdctl' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/whereis' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/whereis' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/wipefs' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/wipefs' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/write' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/write' warning: collision between `/nix/store/rxyv3kzd5hbch67ixm7mbk1cfcr2l822-util-linux-minimal-2.39.3/share/bash-completion/completions/zramctl' and `/nix/store/x3jmg5zc95l2dhg209j8nq91fvsyixyy-util-linux-minimal-2.39.3-bin/share/bash-completion/completions/zramctl' warning: collision between `/nix/store/404i096044cxkas8digqfxcqk8mwm0my-librsvg-2.57.1/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache' and `/nix/store/zqyf3h0c2kxkncw77nckgcs94k0jl6z1-gdk-pixbuf-2.42.10/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache' warning: collision between `/nix/store/sg7zaayi9gnnfdpg52q462nyr0xh3i1y-e2fsprogs-1.47.0-bin/bin/compile_et' and `/nix/store/pl1zlfsfm2qmcslynxkand8svqxa13ih-krb5-1.21.2/bin/compile_et' warning: collision between `/nix/store/sg7zaayi9gnnfdpg52q462nyr0xh3i1y-e2fsprogs-1.47.0-bin/sbin/compile_et' and `/nix/store/pl1zlfsfm2qmcslynxkand8svqxa13ih-krb5-1.21.2/sbin/compile_et' warning: collision between `/nix/store/9wk5rk2chwk9r0l2b613fk88nvf0j03k-e2fsprogs-1.47.0-man/share/man/man1/compile_et.1.gz' and `/nix/store/pl1zlfsfm2qmcslynxkand8svqxa13ih-krb5-1.21.2/share/man/man1/compile_et.1.gz' warning: collision between `/nix/store/z7d1jhhcnckfb0qc8yzar8isgspk2zql-e2fsprogs-1.47.0/lib/libcom_err.so' and `/nix/store/pl1zlfsfm2qmcslynxkand8svqxa13ih-krb5-1.21.2/lib/libcom_err.so' warning: collision between `/nix/store/z7d1jhhcnckfb0qc8yzar8isgspk2zql-e2fsprogs-1.47.0/share/et/et_c.awk' and `/nix/store/pl1zlfsfm2qmcslynxkand8svqxa13ih-krb5-1.21.2/share/et/et_c.awk' warning: collision between `/nix/store/z7d1jhhcnckfb0qc8yzar8isgspk2zql-e2fsprogs-1.47.0/share/et/et_h.awk' and `/nix/store/pl1zlfsfm2qmcslynxkand8svqxa13ih-krb5-1.21.2/share/et/et_h.awk' 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 403 error: cannot download Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage from any mirror error: builder for '/nix/store/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv' failed with exit code 1; last 7 log lines: > > trying https://download.mathpix.com/linux/Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage > % 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 Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage from any mirror For full logs, run 'nix log /nix/store/4850yvbw8qsvvcn71p9cgyf8b0jy65i1-Mathpix_Snipping_Tool-x86_64.v3.4.6.13.AppImage.drv'. error: 1 dependencies of derivation '/nix/store/p4mjbggl3psw9n2s70axdszhhl3cxfxy-mathpix-snipping-tool-3.4.6.13-extracted.drv' failed to build error: 1 dependencies of derivation '/nix/store/y9bx27jcqdmbigz91dyhp3pan9arj47p-mathpix-snipping-tool-3.4.6.13.drv' failed to build [result] Failed to update mathpix-snipping-tool 03.00.0072 -> 3.4.6.13 https://repology.org/project/mathpix-snipping-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 deepin.dtkdeclarative, using log file: /var/log/nixpkgs-update/deepin.dtkdeclarative/2024-03-21.log deepin.dtkdeclarative 5.6.24 -> 5.6.25 https://github.com/linuxdeepin/dtkdeclarative/releases 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://github.com/linuxdeepin/dtkdeclarative/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 xdg-terminal-exec, using log file: /var/log/nixpkgs-update/xdg-terminal-exec/2024-03-21.log xdg-terminal-exec 2023-12-08 -> 20240120 https://repology.org/project/xdg-terminal-exec/versions attrpath: xdg-terminal-exec Checking auto update branch... No auto update branch exists Old version 2023-12-08" not present in master derivation file with contents: { lib, stdenvNoCC, fetchFromGitHub, dash, }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "xdg-terminal-exec"; version = "0.9.0"; src = fetchFromGitHub { owner = "Vladimir-csp"; repo = "xdg-terminal-exec"; rev = "v${finalAttrs.version}"; hash = "sha256-uLUHvSjxIjmy0ejqLfliB6gHFRwyTWNH1RL5kTXebUM="; }; dontBuild = true; installPhase = '' runHook preInstall install -Dm555 xdg-terminal-exec -t $out/bin runHook postInstall ''; dontPatchShebangs = true; postFixup = '' substituteInPlace $out/bin/xdg-terminal-exec \ --replace-fail '#!/bin/sh' '#!${lib.getExe dash}' ''; meta = { description = "Proposal for XDG terminal execution utility"; homepage = "https://github.com/Vladimir-csp/xdg-terminal-exec"; license = lib.licenses.gpl3Plus; mainProgram = "xdg-terminal-exec"; maintainers = with lib.maintainers; [quantenzitrone]; platforms = lib.platforms.unix; }; }) [result] Failed to update xdg-terminal-exec 2023-12-08 -> 20240120 https://repology.org/project/xdg-terminal-exec/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-macopix-3.4.0.tar.bz2.drv building '/nix/store/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-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/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-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/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-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/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-macopix-3.4.0.tar.bz2.drv /nix/store/g67rfi3wjxka3cpa9frcwg5z8gjzs37y-macopix-3.4.0.drv building '/nix/store/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-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/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-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/qcy83pl7wp9h1yy4jkvl8w4csik4qaw7-macopix-3.4.0.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/g67rfi3wjxka3cpa9frcwg5z8gjzs37y-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 rPackages.movMF, using log file: /var/log/nixpkgs-update/rPackages.movMF/2024-03-21.log rPackages.movMF 0.2-7 -> 0.2-8 https://repology.org/project/r:movmf/versions attrpath: rPackages.movMF 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.movMF 0.2-7 -> 0.2-8 https://repology.org/project/r:movmf/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.hydroTSM, using log file: /var/log/nixpkgs-update/rPackages.hydroTSM/2024-03-21.log rPackages.hydroTSM 0.6-0 -> 0.7-0 https://repology.org/project/r:hydrotsm/versions attrpath: rPackages.hydroTSM 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.hydroTSM 0.6-0 -> 0.7-0 https://repology.org/project/r:hydrotsm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libcutl, using log file: /var/log/nixpkgs-update/libcutl/2024-03-21.log libcutl 1.10.0 -> 1.11.0 https://repology.org/project/libcutl/versions attrpath: libcutl 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/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv building '/nix/store/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv'... trying https://codesynthesis.com/download/libcutl/1.11/libcutl-1.11.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 280 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download libcutl-1.11.0.tar.bz2 from any mirror error: builder for '/nix/store/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://codesynthesis.com/download/libcutl/1.11/libcutl-1.11.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 280 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download libcutl-1.11.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'libcutl.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv /nix/store/7zlg42ppclxj2z832nbdrlg4fsz7jqwd-libcutl-1.11.0.drv building '/nix/store/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv'... trying https://codesynthesis.com/download/libcutl/1.11/libcutl-1.11.0.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 280 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download libcutl-1.11.0.tar.bz2 from any mirror error: builder for '/nix/store/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://codesynthesis.com/download/libcutl/1.11/libcutl-1.11.0.tar.bz2 > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 280 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download libcutl-1.11.0.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/nfxzh4yhrkjbpvxwqa9jbzicclky7z3n-libcutl-1.11.0.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/7zlg42ppclxj2z832nbdrlg4fsz7jqwd-libcutl-1.11.0.drv' failed to build [result] Failed to update libcutl 1.10.0 -> 1.11.0 https://repology.org/project/libcutl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath gurobi, using log file: /var/log/nixpkgs-update/gurobi/2024-03-21.log gurobi 9.5.1 -> 11.0.1 https://repology.org/project/gurobi/versions attrpath: gurobi 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/math/gurobi/default.nix b/pkgs/applications/science/math/gurobi/default.nix index 35b9e9d7a8d4..2c26ffee5b53 100644 --- a/pkgs/applications/science/math/gurobi/default.nix +++ b/pkgs/applications/science/math/gurobi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "gurobi"; - version = "9.5.1"; + version = "11.0.1"; src = fetchurl { url = "https://packages.gurobi.com/${lib.versions.majorMinor version}/gurobi${version}_linux64.tar.gz"; - sha256 = "sha256-+oKFnTPwj7iuudpmsPvZFxjtVzxTT1capSNyyd64kdo="; + sha256 = "sha256-oZ7Oz22e4k6cVF3TDFxp/pE+RuU+3p/CatTWj1ci5ZY="; }; sourceRoot = "gurobi${builtins.replaceStrings ["."] [""] version}/linux64"; [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 gurobi Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . gurobi Standard output: error: … in the condition of the assert statement at /var/cache/nixpkgs-update/worker/worktree/gurobi/lib/customisation.nix:268:17: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; … while evaluating the attribute 'handled' at /var/cache/nixpkgs-update/worker/worktree/gurobi/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 ‘gurobi-11.0.1’ in /var/cache/nixpkgs-update/worker/worktree/gurobi/pkgs/applications/science/math/gurobi/default.nix:47 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) [ "gurobi-11.0.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 gurobi 9.5.1 -> 11.0.1 https://repology.org/project/gurobi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath picolisp, using log file: /var/log/nixpkgs-update/picolisp/2024-03-21.log picolisp 20.6 -> 23.12 https://repology.org/project/picolisp/versions attrpath: picolisp 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/picolisp/default.nix b/pkgs/development/interpreters/picolisp/default.nix index 4e589cb722e1..913c6b309384 100644 --- a/pkgs/development/interpreters/picolisp/default.nix +++ b/pkgs/development/interpreters/picolisp/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { pname = "picoLisp"; - version = "20.6"; + version = "23.12"; src = fetchurl { url = "https://www.software-lab.de/${pname}-${version}.tgz"; - sha256 = "0l51x98bn1hh6kv40sdgp0x09pzg5i8yxbcjvm9n5bxsd6bbk5w2"; + sha256 = "sha256-oGM8GRyBOufmtZVxO2iXknPd1oxLZQii/bAvDHu2Cq4="; }; nativeBuildInputs = [ makeWrapper ]; buildInputs = [openssl] ++ lib.optional stdenv.is64bit jdk; [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 picolisp nix build failed. got build log for 'picolisp' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/zkjdyz05znnh6bh032zd0baafi8spmsc-picoLisp-23.12.tgz source root is picoLisp/src64 chmod: cannot access 'picoLisp/src64': No such file or directory [result] Failed to update picolisp 20.6 -> 23.12 https://repology.org/project/picolisp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath thin-provisioning-tools, using log file: /var/log/nixpkgs-update/thin-provisioning-tools/2024-03-21.log thin-provisioning-tools 0.9.0 -> 1.0.12 https://repology.org/project/thin-provisioning-tools/versions attrpath: thin-provisioning-tools 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/thin-provisioning-tools/default.nix b/pkgs/tools/misc/thin-provisioning-tools/default.nix index bff6c9c96887..8655afc875fd 100644 --- a/pkgs/tools/misc/thin-provisioning-tools/default.nix +++ b/pkgs/tools/misc/thin-provisioning-tools/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "thin-provisioning-tools"; - version = "0.9.0"; + version = "1.0.12"; src = fetchFromGitHub { owner = "jthornber"; repo = "thin-provisioning-tools"; rev = "v${version}"; - sha256 = "1iwg04rhmdhijmlk5hfl8wvv83115lzb65if6cc1glkkfva8jfjp"; + sha256 = "sha256-wliyTWo3iOonqf4UW50V5co0RQlc75VwLofF9FHV2LI="; }; nativeBuildInputs = [ autoreconfHook ]; [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 thin-provisioning-tools nix build failed. got build log for 'thin-provisioning-tools' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/g71b48qbbzxfyja3nbgkkypvbimkf7fh-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "autoreconfPhase" } Running phase: autoreconfPhase autoreconf: export WARNINGS= autoreconf: error: 'configure.ac' is required [result] Failed to update thin-provisioning-tools 0.9.0 -> 1.0.12 https://repology.org/project/thin-provisioning-tools/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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] 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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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. 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 - tqdm<5.0.0,>=4.66.2 not satisfied by version 4.66.1 [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-21.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] Going to be running update for following packages: - python3.12-iprak-sensi-1.3.1 Press Enter key to continue... Running update for: - python3.12-iprak-sensi-1.3.1: UPDATING ... - python3.12-iprak-sensi-1.3.1: 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-21.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] 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-21.log trayscale 0.10.4 -> 0.11.0 https://github.com/DeedleFake/trayscale/releases 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=" build succeeded unexpectedlystderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'trayscale.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/q6kix9jqa9m7sjasqw7xs7y1927npan5-trayscale-0.11.0-go-modules.drv /nix/store/kv9r8iy4fn0dm4018xr4zqgp5kn67pam-trayscale-0.11.0.drv building '/nix/store/q6kix9jqa9m7sjasqw7xs7y1927npan5-trayscale-0.11.0-go-modules.drv'... Running phase: unpackPhase unpacking source archive /nix/store/aq84s6hrhp7y4rb6ks76h05zkw746v7p-source source root is source Running phase: patchPhase Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase Running phase: buildPhase go: go.mod requires go >= 1.22.0 (running go 1.21.7; GOTOOLCHAIN=local) error: builder for '/nix/store/q6kix9jqa9m7sjasqw7xs7y1927npan5-trayscale-0.11.0-go-modules.drv' failed with exit code 1; last 8 log lines: > Running phase: unpackPhase > unpacking source archive /nix/store/aq84s6hrhp7y4rb6ks76h05zkw746v7p-source > source root is source > Running phase: patchPhase > Running phase: updateAutotoolsGnuConfigScriptsPhase > Running phase: configurePhase > Running phase: buildPhase > go: go.mod requires go >= 1.22.0 (running go 1.21.7; GOTOOLCHAIN=local) For full logs, run 'nix log /nix/store/q6kix9jqa9m7sjasqw7xs7y1927npan5-trayscale-0.11.0-go-modules.drv'. error: 1 dependencies of derivation '/nix/store/kv9r8iy4fn0dm4018xr4zqgp5kn67pam-trayscale-0.11.0.drv' failed to build [result] Failed to update trayscale 0.10.4 -> 0.11.0 https://github.com/DeedleFake/trayscale/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 gpg-tui, using log file: /var/log/nixpkgs-update/gpg-tui/2024-03-21.log gpg-tui 0.10.0 -> 0.11.0 https://github.com/orhun/gpg-tui/releases attrpath: gpg-tui Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - gpg-tui: 0.10.0 -> 0.11.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/296781" [result] Failed to update gpg-tui 0.10.0 -> 0.11.0 https://github.com/orhun/gpg-tui/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.tadasets, using log file: /var/log/nixpkgs-update/python312Packages.tadasets/2024-03-21.log python312Packages.tadasets 0.0.4 -> 0.2.1 https://repology.org/project/python:tadasets/versions attrpath: python312Packages.tadasets 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] Going to be running update for following packages: - python3.12-tadasets-0.0.4 Press Enter key to continue... Running update for: - python3.12-tadasets-0.0.4: UPDATING ... - python3.12-tadasets-0.0.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/tadasets/default.nix b/pkgs/development/python-modules/tadasets/default.nix index 7b9001cd132e..4f3b179e63dc 100644 --- a/pkgs/development/python-modules/tadasets/default.nix +++ b/pkgs/development/python-modules/tadasets/default.nix @@ -9,12 +9,12 @@ buildPythonPackage rec { pname = "tadasets"; - version = "0.0.4"; + version = "0.2.1"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "a0e6c14678750315febd97fcf334bbbfd2695ebd91b4fe7707bb1220d7348416"; + sha256 = "sha256-PWbq+dCQ8mGR81lolBDSArxjkTdis1ZpLY0MqZfZ66I="; }; propagatedBuildInputs = [ 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.tadasets Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . python312Packages.tadasets Standard output: error: … while evaluating the attribute 'drvPath' at /var/cache/nixpkgs-update/worker/worktree/python312Packages.tadasets/lib/customisation.nix:268:7: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; … while evaluating the attribute 'drvPath' at /var/cache/nixpkgs-update/worker/worktree/python312Packages.tadasets/lib/customisation.nix:268:7: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; (stack trace truncated; use '--show-trace' to show the full trace) error: nose-1.3.7 not supported for interpreter python3.12 [result] Failed to update python312Packages.tadasets 0.0.4 -> 0.2.1 https://repology.org/project/python:tadasets/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath jmol, using log file: /var/log/nixpkgs-update/jmol/2024-03-21.log jmol 16.1.63 -> 16.2.1 https://repology.org/project/jmol/versions attrpath: jmol 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/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv building '/nix/store/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv'... trying https://downloads.sourceforge.net/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1033 0 --:--:-- --:--:-- --:--:-- 1037 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 238 0 --:--:-- --:--:-- --:--:-- 238 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 346 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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 Jmol-16.2.1-binary.tar.gz from any mirror error: builder for '/nix/store/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 238 0 --:--:-- --:--:-- --:--:-- 238 > 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 346 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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 Jmol-16.2.1-binary.tar.gz from any mirror For full logs, run 'nix log /nix/store/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'jmol.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv /nix/store/2zl74jpjfk1j3gghg54rcaih4sjwbjp0-jmol-16.2.1.drv building '/nix/store/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv'... trying https://downloads.sourceforge.net/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 961 0 --:--:-- --:--:-- --:--:-- 965 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 346 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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 Jmol-16.2.1-binary.tar.gz from any mirror error: builder for '/nix/store/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 346 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/jmol/Jmol/Version%2016.2/Jmol%2016.2.1/Jmol-16.2.1-binary.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 Jmol-16.2.1-binary.tar.gz from any mirror For full logs, run 'nix log /nix/store/a8j5x0ia9ja1jgsp1yjxmpsyy6mz3kb2-Jmol-16.2.1-binary.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/2zl74jpjfk1j3gghg54rcaih4sjwbjp0-jmol-16.2.1.drv' failed to build [result] Failed to update jmol 16.1.63 -> 16.2.1 https://repology.org/project/jmol/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lynx, using log file: /var/log/nixpkgs-update/lynx/2024-03-21.log lynx 2.9.0dev12 -> 2.9.0rel0 https://repology.org/project/lynx/versions attrpath: lynx Checking auto update branch... No auto update branch exists Old version 2.9.0dev12" not present in master derivation file with contents: { lib , stdenv , buildPackages , fetchurl , pkg-config , ncurses , gzip , sslSupport ? true , openssl , nukeReferences , fetchpatch }: stdenv.mkDerivation rec { pname = "lynx"; version = "2.9.0dev.12"; src = fetchurl { urls = [ "ftp://ftp.invisible-island.net/lynx/tarballs/lynx${version}.tar.bz2" "https://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2" ]; hash = "sha256-pkVbFZ0Ad22OwQUShcly3B8MVS0FcaDP8Coj7BRu6OU="; }; enableParallelBuilding = true; hardeningEnable = [ "pie" ]; configureFlags = [ "--enable-default-colors" "--enable-widec" "--enable-ipv6" ] ++ lib.optional sslSupport "--with-ssl"; depsBuildBuild = [ buildPackages.stdenv.cc ]; nativeBuildInputs = [ nukeReferences ] ++ lib.optional sslSupport pkg-config; buildInputs = [ ncurses gzip ] ++ lib.optional sslSupport openssl; # cfg_defs.h captures lots of references to build-only dependencies, derived # from config.cache. postConfigure = '' make cfg_defs.h nuke-refs cfg_defs.h ''; meta = with lib; { description = "A text-mode web browser"; homepage = "https://lynx.invisible-island.net/"; mainProgram = "lynx"; maintainers = with maintainers; [ ]; license = licenses.gpl2Plus; platforms = platforms.unix; }; } [result] Failed to update lynx 2.9.0dev12 -> 2.9.0rel0 https://repology.org/project/lynx/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kalibrate-rtl, using log file: /var/log/nixpkgs-update/kalibrate-rtl/2024-03-21.log kalibrate-rtl 2022-02-02 -> 20131215 https://repology.org/project/kalibrate-rtl/versions attrpath: kalibrate-rtl 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/radio/kalibrate-rtl/default.nix b/pkgs/applications/radio/kalibrate-rtl/default.nix index b463faa4a255..bc2293abf726 100644 --- a/pkgs/applications/radio/kalibrate-rtl/default.nix +++ b/pkgs/applications/radio/kalibrate-rtl/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation { pname = "kalibrate-rtl"; - version = "unstable-2022-02-02"; + version = "unstable-20131215"; src = fetchFromGitHub { owner = "steve-m"; repo = "kalibrate-rtl"; rev = "340003eb0846b069c3edef19ed3363b8ac7b5215"; - sha256 = "n9mfu8H2OS8dKPNhtJxBfMDp8aHEIcxg/R+kcRNOBpk="; + sha256 = "sha256-n9mfu8H2OS8dKPNhtJxBfMDp8aHEIcxg/R+kcRNOBpk="; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; Source url did not change. [result] Failed to update kalibrate-rtl 2022-02-02 -> 20131215 https://repology.org/project/kalibrate-rtl/versions [options] github_user: r-ryantm, pull_request: 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.TermTable 0.017 -> 0.018 https://repology.org/project/perl:term-table/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.censobr, using log file: /var/log/nixpkgs-update/rPackages.censobr/2024-03-21.log rPackages.censobr 0.2.0 -> 0.3.1 https://repology.org/project/r:censobr/versions attrpath: rPackages.censobr 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.censobr 0.2.0 -> 0.3.1 https://repology.org/project/r:censobr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.htsr, using log file: /var/log/nixpkgs-update/rPackages.htsr/2024-03-21.log rPackages.htsr 2.1.2 -> 2.1.4 https://repology.org/project/r:htsr/versions attrpath: rPackages.htsr 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.htsr 2.1.2 -> 2.1.4 https://repology.org/project/r:htsr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.pydot, using log file: /var/log/nixpkgs-update/python312Packages.pydot/2024-03-21.log python312Packages.pydot 1.4.2 -> 2.0.0 https://repology.org/project/python:pydot/versions attrpath: python312Packages.pydot 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] Going to be running update for following packages: - python3.12-pydot-1.4.2 Press Enter key to continue... Running update for: - python3.12-pydot-1.4.2: UPDATING ... - python3.12-pydot-1.4.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pydot/default.nix b/pkgs/development/python-modules/pydot/default.nix index ac965f8404e0..ef6d2331befd 100644 --- a/pkgs/development/python-modules/pydot/default.nix +++ b/pkgs/development/python-modules/pydot/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "pydot"; - version = "1.4.2"; + version = "2.0.0"; format = "setuptools"; disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; - sha256 = "248081a39bcb56784deb018977e428605c1c758f10897a339fce1dd728ff007d"; + sha256 = "sha256-YCRq8hUSP6Bi8hzXkb5n3aI6bygN8J9okZ5jeh5PMjU="; }; propagatedBuildInputs = [ No auto update branch exists Old version 1.4.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , substituteAll , graphviz , python , pytestCheckHook , chardet , pythonOlder , pyparsing }: buildPythonPackage rec { pname = "pydot"; version = "2.0.0"; format = "setuptools"; disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; sha256 = "sha256-YCRq8hUSP6Bi8hzXkb5n3aI6bygN8J9okZ5jeh5PMjU="; }; propagatedBuildInputs = [ pyparsing ]; nativeCheckInputs = [ chardet pytestCheckHook ]; patches = [ (substituteAll { src = ./hardcode-graphviz-path.patch; inherit graphviz; }) ]; postPatch = '' # test_graphviz_regression_tests also fails upstream: https://github.com/pydot/pydot/pull/198 substituteInPlace test/pydot_unittest.py \ --replace "test_graphviz_regression_tests" "no_test_graphviz_regression_tests" \ # Patch path for pytestCheckHook substituteInPlace test/pydot_unittest.py \ --replace "shapefile_dir = os.path.join(test_dir, 'from-past-to-future')" "shapefile_dir = 'test/from-past-to-future'" \ --replace "path = os.path.join(test_dir, TESTS_DIR_1)" "path = os.path.join('test/', TESTS_DIR_1)" ''; pytestFlagsArray = [ "test/pydot_unittest.py" ]; disabledTests = [ # broken, fixed after 2.0.0 "test_graph_with_shapefiles" ]; pythonImportsCheck = [ "pydot" ]; meta = with lib; { description = "Allows to create both directed and non directed graphs from Python"; homepage = "https://github.com/erocarrera/pydot"; license = licenses.mit; maintainers = with maintainers; [ ]; }; } [result] Failed to update python312Packages.pydot 1.4.2 -> 2.0.0 https://repology.org/project/python:pydot/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xflux, using log file: /var/log/nixpkgs-update/xflux/2024-03-21.log xflux 2013-09-01 -> 20170103 https://repology.org/project/xflux/versions attrpath: xflux 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/xflux/default.nix b/pkgs/tools/misc/xflux/default.nix index 5cfda2df174f..33c7af401dcb 100644 --- a/pkgs/tools/misc/xflux/default.nix +++ b/pkgs/tools/misc/xflux/default.nix @@ -1,10 +1,10 @@ {lib, stdenv, fetchurl, libXxf86vm, libXext, libX11, libXrandr, gcc}: stdenv.mkDerivation { pname = "xflux"; - version = "unstable-2013-09-01"; + version = "unstable-20170103"; src = fetchurl { url = "https://justgetflux.com/linux/xflux64.tgz"; - sha256 = "cc50158fabaeee58c331f006cc1c08fd2940a126e99d37b76c8e878ef20c2021"; + sha256 = "sha256-zFAVj6uu7ljDMfAGzBwI/SlAoSbpnTe3bI6HjvIMICE="; }; libPath = lib.makeLibraryPath [ Source url did not change. [result] Failed to update xflux 2013-09-01 -> 20170103 https://repology.org/project/xflux/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ipsecr, using log file: /var/log/nixpkgs-update/rPackages.ipsecr/2024-03-21.log rPackages.ipsecr 1.4.0 -> 1.4.1 https://repology.org/project/r:ipsecr/versions attrpath: rPackages.ipsecr 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.ipsecr 1.4.0 -> 1.4.1 https://repology.org/project/r:ipsecr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath opensmtpd, using log file: /var/log/nixpkgs-update/opensmtpd/2024-03-21.log opensmtpd 7.4.0p0 -> 7.4.0p1 https://repology.org/project/opensmtpd/versions attrpath: opensmtpd 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/mail/opensmtpd/default.nix b/pkgs/servers/mail/opensmtpd/default.nix index f93bc857116f..ca5f877b0af8 100644 --- a/pkgs/servers/mail/opensmtpd/default.nix +++ b/pkgs/servers/mail/opensmtpd/default.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation rec { pname = "opensmtpd"; - version = "7.4.0p0"; + version = "7.4.0p1"; nativeBuildInputs = [ autoreconfHook autoconf-archive pkgconf libtool bison ]; buildInputs = [ libevent zlib libressl db pam libxcrypt ]; src = fetchurl { url = "https://www.opensmtpd.org/archives/${pname}-${version}.tar.gz"; - hash = "sha256-wYHMw0NKEeWDYZ4AAoUg1Ff+Bi403AO+6jWAeCIM43Q="; + hash = "sha256-noKi7JQZ4YHUyifY4+vl0Sn97VuoQCL/TRGnP47bcLU="; }; patches = [ [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 opensmtpd nix build failed. checking for struct statfs.f_favail... no checking for struct sockaddr_storage.ss_family... yes checking for struct sockaddr_storage.__ss_family... no checking for gcc options needed to detect all undeclared functions... none needed checking for struct tm.tm_gmtoff... yes checking for struct tm.tm_zone... yes checking for struct DIR.d_type... no checking whether O_NONBLOCK is declared... yes checking whether AF_LOCAL is declared... yes checking whether PF_LOCAL is declared... yes checking whether IPPORT_HILASTAUTO is declared... no checking whether IPV6_ADDR_SCOPE_INTFACELOCAL is declared... no checking whether WAIT_MYPGRP is declared... yes checking whether LOG_PERROR is declared... yes checking if gcc supports compile flag -Qunused-arguments... no checking if gcc supports compile flag -Wunknown-warning-option... no checking if gcc supports compile flag -Wall... yes checking if gcc supports compile flag -Wpointer-arith... yes checking if gcc supports compile flag -Wuninitialized... yes checking if gcc supports compile flag -Wsign-compare... yes checking if gcc supports compile flag -Wformat-security... yes checking if gcc supports compile flag -Wsizeof-pointer-memaccess... yes checking if gcc supports compile flag -Wpointer-sign... yes checking if gcc supports compile flag -Wunused-result... yes checking if gcc supports compile flag -fno-strict-aliasing... yes checking gcc version... 13.2.0 checking if gcc accepts -fno-builtin-memset... yes checking whether LLONG_MAX is declared... yes checking if compiler allows __attribute__ on return types... yes configure: error: invalid man type: doc [result] Failed to update opensmtpd 7.4.0p0 -> 7.4.0p1 https://repology.org/project/opensmtpd/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-bjnp, using log file: /var/log/nixpkgs-update/cups-bjnp/2024-03-21.log cups-bjnp 1.2.2 -> 2.0.3 https://repology.org/project/cups-bjnp/versions attrpath: cups-bjnp 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/misc/cups/drivers/cups-bjnp/default.nix b/pkgs/misc/cups/drivers/cups-bjnp/default.nix index 6c8c8f21a3a2..6b8b79f22f65 100644 --- a/pkgs/misc/cups/drivers/cups-bjnp/default.nix +++ b/pkgs/misc/cups/drivers/cups-bjnp/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "cups-bjnp"; - version = "1.2.2"; + version = "2.0.3"; src = fetchurl { url = "mirror://sourceforge/cups-bjnp/cups-bjnp-${version}.tar.gz"; - sha256 = "0sb0vm1sf8ismzd9ba33qswxmsirj2z1b7lnyrc9v5ixm7q0bnrm"; + sha256 = "sha256-yRSy/Z2OJs4i8t9iRNne/uwx7ppTYPcj7ss7APIWhQA="; }; preConfigure = ''configureFlags="--with-cupsbackenddir=$out/lib/cups/backend"''; [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 cups-bjnp nix build failed. checking for ntohs... yes checking for memset... yes checking for select... yes checking for socket... yes checking for strcasecmp... yes checking for strchr... yes checking for strerror... yes checking for strncasecmp... yes checking for strstr... yes checking for strtol... yes checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /nix/store/320v66ili0mwnyrxj3dwbxm0z8ndkbw7-gnugrep-3.11/bin/grep checking for egrep... /nix/store/320v66ili0mwnyrxj3dwbxm0z8ndkbw7-gnugrep-3.11/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for getifaddrs... yes checking whether to enable IPv6... yes checking whether struct sockaddr_storage has an ss_family member... yes checking cups development support... yes checking cups backend directory... configure: error: cups backend directory not found! [result] Failed to update cups-bjnp 1.2.2 -> 2.0.3 https://repology.org/project/cups-bjnp/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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] 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 youplot, using log file: /var/log/nixpkgs-update/youplot/2024-03-21.log youplot 0 -> 1 attrpath: youplot 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 youplot 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.MacPasteboard 0.103 -> 0.104 https://repology.org/project/perl:mac-pasteboard/versions [options] github_user: r-ryantm, pull_request: 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.X11XCB 0.20 -> 0.22 https://repology.org/project/perl:x11-xcb/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath eduke32, using log file: /var/log/nixpkgs-update/eduke32/2024-03-21.log eduke32 0-unstable-2024-02-17 -> 20231224.10548 https://repology.org/project/eduke32/versions attrpath: eduke32 Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update eduke32 0-unstable-2024-02-17 -> 20231224.10548 https://repology.org/project/eduke32/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath pentobi, using log file: /var/log/nixpkgs-update/pentobi/2024-03-21.log pentobi 20.0 -> 24.0 https://repology.org/project/pentobi/versions attrpath: pentobi 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/pentobi/default.nix b/pkgs/games/pentobi/default.nix index e0bd6909fb94..cf88552af9e2 100644 --- a/pkgs/games/pentobi/default.nix +++ b/pkgs/games/pentobi/default.nix @@ -3,14 +3,14 @@ }: mkDerivation rec { - version = "20.0"; + version = "24.0"; pname = "pentobi"; src = fetchFromGitHub { owner = "enz"; repo = "pentobi"; rev = "v${version}"; - sha256 = "sha256-DQM3IJ0pRkX4OsrjZGROg50LfKb621UnpvtqSjxchz8="; + sha256 = "sha256-u36QKecYy3VnE8n1AkNzIYwA+cNWxDJZv8OxkbDNXfQ="; }; nativeBuildInputs = [ cmake docbook_xsl qttools ]; [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 pentobi nix build failed. got build log for 'pentobi' from 'daemon' @nix { "action": "setPhase", "phase": "qtPreHook" } Running phase: qtPreHook @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/mxgskpyfpdxxyr489qx9qmq5k0g996qb-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase substitute(): ERROR: file 'pentobi_thumbnailer/CMakeLists.txt' does not exist [result] Failed to update pentobi 20.0 -> 24.0 https://repology.org/project/pentobi/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.SummarizedExperiment, using log file: /var/log/nixpkgs-update/rPackages.SummarizedExperiment/2024-03-21.log rPackages.SummarizedExperiment 1.32.0 -> 1.33.0 https://repology.org/project/r:summarizedexperiment/versions attrpath: rPackages.SummarizedExperiment Checking auto update branch... No auto update branch exists Old version 1.32.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.SummarizedExperiment 1.32.0 -> 1.33.0 https://repology.org/project/r:summarizedexperiment/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/fwi8zi10is6xx7s56ymx8rsjaxf273i5-packages.json.drv building '/nix/store/fwi8zi10is6xx7s56ymx8rsjaxf273i5-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 gitkraken, using log file: /var/log/nixpkgs-update/gitkraken/2024-03-21.log gitkraken 9.13.0 -> 27.1.3 https://repology.org/project/gitkraken/versions attrpath: gitkraken 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 gitkraken 9.13.0 -> 27.1.3 https://repology.org/project/gitkraken/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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.lddmm, using log file: /var/log/nixpkgs-update/rPackages.lddmm/2024-03-21.log rPackages.lddmm 0.4.0 -> 0.4.2 https://repology.org/project/r:lddmm/versions attrpath: rPackages.lddmm 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.lddmm 0.4.0 -> 0.4.2 https://repology.org/project/r:lddmm/versions [options] github_user: r-ryantm, pull_request: YES, batch_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_security_identity, using log file: /var/log/nixpkgs-update/rPackages.paws_security_identity/2024-03-21.log rPackages.paws_security_identity 0.4.0 -> 0.5.0 https://repology.org/project/r:paws.security.identity/versions attrpath: rPackages.paws_security_identity 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_security_identity 0.4.0 -> 0.5.0 https://repology.org/project/r:paws.security.identity/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sunwait, using log file: /var/log/nixpkgs-update/sunwait/2024-03-21.log sunwait 0.9.1 -> 20220613 https://repology.org/project/sunwait/versions attrpath: sunwait 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/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv building '/nix/store/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv'... trying https://github.com/risacher/sunwait/archive/20220613.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/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/risacher/sunwait/archive/20220613.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/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'sunwait.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv /nix/store/c38n32pbn6v63yrzdg6nhxbxpdmdidy3-sunwait-20220613.drv building '/nix/store/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv'... trying https://github.com/risacher/sunwait/archive/20220613.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/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/risacher/sunwait/archive/20220613.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/5jjrjjhvbhx6d071mycfzpzj51qz0ak6-source.drv'. error: 1 dependencies of derivation '/nix/store/c38n32pbn6v63yrzdg6nhxbxpdmdidy3-sunwait-20220613.drv' failed to build [result] Failed to update sunwait 0.9.1 -> 20220613 https://repology.org/project/sunwait/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath radamsa, using log file: /var/log/nixpkgs-update/radamsa/2024-03-21.log radamsa 0.6 -> 0.7 https://repology.org/project/radamsa/versions attrpath: radamsa 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 radamsa 0.6 -> 0.7 https://repology.org/project/radamsa/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.usmap, using log file: /var/log/nixpkgs-update/rPackages.usmap/2024-03-21.log rPackages.usmap 0.6.4 -> 0.7.0 https://repology.org/project/r:usmap/versions attrpath: rPackages.usmap Checking auto update branch... No auto update branch exists Old version 0.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.usmap 0.6.4 -> 0.7.0 https://repology.org/project/r:usmap/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath eiskaltdcpp, using log file: /var/log/nixpkgs-update/eiskaltdcpp/2024-03-21.log eiskaltdcpp 2.4.2 -> 2023.04.29 https://repology.org/project/eiskaltdcpp/versions attrpath: eiskaltdcpp 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/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv building '/nix/store/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv'... trying https://github.com/eiskaltdcpp/eiskaltdcpp/archive/v2023.04.29.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/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/eiskaltdcpp/eiskaltdcpp/archive/v2023.04.29.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/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'eiskaltdcpp.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv /nix/store/csgbrf9dw6j9jr6ni7i1hr99c4npli5k-eiskaltdcpp-2023.04.29.drv building '/nix/store/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv'... trying https://github.com/eiskaltdcpp/eiskaltdcpp/archive/v2023.04.29.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/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/eiskaltdcpp/eiskaltdcpp/archive/v2023.04.29.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/hxz7yn7cpys4cgiwrq0gn10l9li98xss-source.drv'. error: 1 dependencies of derivation '/nix/store/csgbrf9dw6j9jr6ni7i1hr99c4npli5k-eiskaltdcpp-2023.04.29.drv' failed to build [result] Failed to update eiskaltdcpp 2.4.2 -> 2023.04.29 https://repology.org/project/eiskaltdcpp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath styx, using log file: /var/log/nixpkgs-update/styx/2024-03-21.log styx 0.7.5 -> 2.0.1 https://repology.org/project/styx/versions attrpath: styx 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/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv building '/nix/store/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv'... trying https://github.com/styx-static/styx/archive/v2.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 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/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/styx-static/styx/archive/v2.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 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/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'styx.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/shixj8ljny7w07589grri2wgpnx09f12-perl5.38.2-Image-ExifTool-12.80.drv /nix/store/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv /nix/store/rsxdpwpqxd07pxgn0mi2946lmziz79g6-styx-2.0.1.drv this path will be fetched (7.13 MiB download, 7.15 MiB unpacked): /nix/store/ng3cvhp84sh8cv1b25d9z1i1bmss8f8w-Image-ExifTool-12.80.tar.gz copying path '/nix/store/ng3cvhp84sh8cv1b25d9z1i1bmss8f8w-Image-ExifTool-12.80.tar.gz' from 'https://cache.nixos.org'... building '/nix/store/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv'... trying https://github.com/styx-static/styx/archive/v2.0.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed building '/nix/store/shixj8ljny7w07589grri2wgpnx09f12-perl5.38.2-Image-ExifTool-12.80.drv'... 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 Running phase: unpackPhase unpacking source archive /nix/store/ng3cvhp84sh8cv1b25d9z1i1bmss8f8w-Image-ExifTool-12.80.tar.gz 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/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/styx-static/styx/archive/v2.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 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/y9kc0l01cq1dafdbl4w2sz57z7570a76-source.drv'. error (ignored): error: cannot unlink '/tmp/nix-build-perl5.38.2-Image-ExifTool-12.80.drv-0/Image-ExifTool-12.80/html/TagNames': Directory not empty error: 1 dependencies of derivation '/nix/store/rsxdpwpqxd07pxgn0mi2946lmziz79g6-styx-2.0.1.drv' failed to build [result] Failed to update styx 0.7.5 -> 2.0.1 https://repology.org/project/styx/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath voxelands, using log file: /var/log/nixpkgs-update/voxelands/2024-03-21.log voxelands 1704.00 -> 1709.00 https://repology.org/project/voxelands/versions attrpath: voxelands 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/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv building '/nix/store/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv'... trying https://gitlab.com/api/v4/projects/voxelands%2Fvoxelands/repository/archive.tar.gz?sha=1709.00 % 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/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv' failed with exit code 1; last 7 log lines: > > trying https://gitlab.com/api/v4/projects/voxelands%2Fvoxelands/repository/archive.tar.gz?sha=1709.00 > % 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/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'voxelands.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv /nix/store/m2frm59dyidfg1ip7gbflf57m48qaqn7-voxelands-1709.00.drv building '/nix/store/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv'... trying https://gitlab.com/api/v4/projects/voxelands%2Fvoxelands/repository/archive.tar.gz?sha=1709.00 % 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/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv' failed with exit code 1; last 7 log lines: > > trying https://gitlab.com/api/v4/projects/voxelands%2Fvoxelands/repository/archive.tar.gz?sha=1709.00 > % 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/0mndxw47lddmh2bqpyyhr0xmajl4syc0-source.drv'. error: 1 dependencies of derivation '/nix/store/m2frm59dyidfg1ip7gbflf57m48qaqn7-voxelands-1709.00.drv' failed to build [result] Failed to update voxelands 1704.00 -> 1709.00 https://repology.org/project/voxelands/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath opencascade-occt, using log file: /var/log/nixpkgs-update/opencascade-occt/2024-03-21.log opencascade-occt 7.6.2 -> 7.8.0 https://repology.org/project/opencascade-occt/versions attrpath: opencascade-occt Checking auto update branch... An auto update branch exists with message `opencascade-occt: 7.6.2 -> 7.7.2`. New version is 7.8.0. The auto update branch does not match or exceed the new version. There might already be an open PR for this update: - opencascade-occt: 7.6.2 -> 7.7.2 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/149796" [result] Failed to update opencascade-occt 7.6.2 -> 7.8.0 https://repology.org/project/opencascade-occt/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/vp9w93gcjy7l2pb1mp2phhyic783rpj8-source.drv building '/nix/store/vp9w93gcjy7l2pb1mp2phhyic783rpj8-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/vp9w93gcjy7l2pb1mp2phhyic783rpj8-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/vp9w93gcjy7l2pb1mp2phhyic783rpj8-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/vp9w93gcjy7l2pb1mp2phhyic783rpj8-source.drv /nix/store/5a3z3cn8qwn85q2267cx3c9nszhvklzb-ucx-21.00.0.18.drv building '/nix/store/vp9w93gcjy7l2pb1mp2phhyic783rpj8-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/vp9w93gcjy7l2pb1mp2phhyic783rpj8-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/vp9w93gcjy7l2pb1mp2phhyic783rpj8-source.drv'. error: 1 dependencies of derivation '/nix/store/5a3z3cn8qwn85q2267cx3c9nszhvklzb-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 For attrpath rPackages.qlcal, using log file: /var/log/nixpkgs-update/rPackages.qlcal/2024-03-21.log rPackages.qlcal 0.0.9 -> 0.0.10 https://repology.org/project/r:qlcal/versions attrpath: rPackages.qlcal Checking auto update branch... No auto update branch exists Old version 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.qlcal 0.0.9 -> 0.0.10 https://repology.org/project/r:qlcal/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.StanHeaders, using log file: /var/log/nixpkgs-update/rPackages.StanHeaders/2024-03-21.log rPackages.StanHeaders 2.26.28 -> 2.32.6 https://repology.org/project/r:stanheaders/versions attrpath: rPackages.StanHeaders Checking auto update branch... No auto update branch exists Old version 2.26.28" 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.StanHeaders 2.26.28 -> 2.32.6 https://repology.org/project/r:stanheaders/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ebuild-mode, using log file: /var/log/nixpkgs-update/emacsPackages.ebuild-mode/2024-03-21.log emacsPackages.ebuild-mode 1.67 -> 1.70 https://repology.org/project/emacs:ebuild-mode/versions attrpath: emacsPackages.ebuild-mode Checking auto update branch... An auto update branch exists with message `emacsPackages.ebuild-mode: 1.67 -> 1.70`. New version is 1.70. An auto update branch exists with an equal or greater version [result] Failed to update emacsPackages.ebuild-mode 1.67 -> 1.70 https://repology.org/project/emacs:ebuild-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 gauge, using log file: /var/log/nixpkgs-update/gauge/2024-03-21.log gauge 1.6.4 -> 3.7 https://repology.org/project/gauge/versions attrpath: gauge 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/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv building '/nix/store/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv'... trying https://github.com/getgauge/gauge/archive/v3.7.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/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/getgauge/gauge/archive/v3.7.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/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'gauge.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv /nix/store/siir9k6h9k9382asncbjlz3nspi4yx2l-gauge-3.7-go-modules.drv /nix/store/508rl6mdw0lkn2pl999apylb187n0wmd-gauge-3.7.drv building '/nix/store/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv'... trying https://github.com/getgauge/gauge/archive/v3.7.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/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/getgauge/gauge/archive/v3.7.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/jg2ikjjgr58fwk8yanj61cx2lgbh41pf-source.drv'. error: 1 dependencies of derivation '/nix/store/508rl6mdw0lkn2pl999apylb187n0wmd-gauge-3.7.drv' failed to build [result] Failed to update gauge 1.6.4 -> 3.7 https://repology.org/project/gauge/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath catppuccin-kde, using log file: /var/log/nixpkgs-update/catppuccin-kde/2024-03-21.log catppuccin-kde 0.2.4 -> 0.2.6 https://github.com/catppuccin/kde/releases attrpath: catppuccin-kde Checking auto update branch... No auto update branch exists Old version 0.2.4" not present in master derivation file with contents: { lib , stdenvNoCC , fetchFromGitHub , fetchpatch , flavour ? [ "frappe" ] , accents ? [ "blue" ] , winDecStyles ? [ "modern" ] }: let validFlavours = [ "mocha" "macchiato" "frappe" "latte" ]; validAccents = [ "rosewater" "flamingo" "pink" "mauve" "red" "maroon" "peach" "yellow" "green" "teal" "sky" "sapphire" "blue" "lavender" ]; validWinDecStyles = [ "modern" "classic" ]; colorScript = ./color.sh; in lib.checkListOfEnum "Invalid accent, valid accents are ${toString validAccents}" validAccents accents lib.checkListOfEnum "Invalid flavour, valid flavours are ${toString validFlavours}" validFlavours flavour lib.checkListOfEnum "Invalid window decoration style, valid styles are ${toString validWinDecStyles}" validWinDecStyles winDecStyles stdenvNoCC.mkDerivation rec { pname = "kde"; version = "0.2.6"; src = fetchFromGitHub { owner = "catppuccin"; repo = pname; rev = "v${version}"; hash = "sha256-pfG0L4eSXLYLZM8Mhla4yalpEro74S9kc0sOmQtnG3w="; }; patches = [ (fetchpatch { url = "https://github.com/GiggleSquid/catppuccin-kde/commit/f0291c17d2e4711b0d0aac00e3dbb94ee89b4a82.patch"; hash = "sha256-iD+mEX2LRFmrCwLr3VAs6kzcTuZ231TKDn+U188iOss="; }) ]; installPhase = '' runHook preInstall patchShebangs . for WINDECSTYLE in ${toString winDecStyles}; do for FLAVOUR in ${toString flavour}; do for ACCENT in ${toString accents}; do source ${colorScript} ./install.sh $FLAVOUR $ACCENT $WINDECSTYLE done; done; done; runHook postInstall ''; meta = with lib; { description = "Soothing pastel theme for KDE"; homepage = "https://github.com/catppuccin/kde"; license = licenses.mit; maintainers = with maintainers; [ michaelBelsanti gigglesquid ]; }; } [result] Failed to update catppuccin-kde 0.2.4 -> 0.2.6 https://github.com/catppuccin/kde/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 lv, using log file: /var/log/nixpkgs-update/lv/2024-03-21.log lv 4.51 -> 4.51.20200728 https://repology.org/project/lv/versions attrpath: lv 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/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv building '/nix/store/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv'... trying https://httpredir.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 260 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 260 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirrors.edge.kernel.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 ftp://ftp.de.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying ftp://ftp.fr.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying ftp://ftp.nl.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying ftp://ftp.ru.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying http://archive.debian.org/debian-archive/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 264 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying ftp://ftp.funet.fi/pub/mirrors/ftp.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 lv_4.51.20200728.orig.tar.gz from any mirror error: builder for '/nix/store/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv' failed with exit code 1; last 25 log lines: > > trying ftp://ftp.nl.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 > > trying ftp://ftp.ru.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 > > trying http://archive.debian.org/debian-archive/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 264 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying ftp://ftp.funet.fi/pub/mirrors/ftp.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 lv_4.51.20200728.orig.tar.gz from any mirror For full logs, run 'nix log /nix/store/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'lv.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv /nix/store/7g8hb4x4n50gsf0ldpa7ha33wvp3aap5-lv-4.51.20200728.drv building '/nix/store/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv'... trying https://httpredir.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 260 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 260 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirrors.edge.kernel.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 ftp://ftp.de.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying ftp://ftp.fr.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying ftp://ftp.nl.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying ftp://ftp.ru.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 trying http://archive.debian.org/debian-archive/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 264 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying ftp://ftp.funet.fi/pub/mirrors/ftp.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 lv_4.51.20200728.orig.tar.gz from any mirror error: builder for '/nix/store/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv' failed with exit code 1; last 25 log lines: > > trying ftp://ftp.nl.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 > > trying ftp://ftp.ru.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 > > trying http://archive.debian.org/debian-archive/debian/pool/main/l/lv/lv_4.51.20200728.orig.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 264 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying ftp://ftp.funet.fi/pub/mirrors/ftp.debian.org/debian/pool/main/l/lv/lv_4.51.20200728.orig.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 lv_4.51.20200728.orig.tar.gz from any mirror For full logs, run 'nix log /nix/store/3y2np7bplgcjj6fkzifk5njjr37g3b47-lv_4.51.20200728.orig.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/7g8hb4x4n50gsf0ldpa7ha33wvp3aap5-lv-4.51.20200728.drv' failed to build [result] Failed to update lv 4.51 -> 4.51.20200728 https://repology.org/project/lv/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.agricolaeplotr, using log file: /var/log/nixpkgs-update/rPackages.agricolaeplotr/2024-03-21.log rPackages.agricolaeplotr 0.3.1 -> 0.5.0 https://repology.org/project/r:agricolaeplotr/versions attrpath: rPackages.agricolaeplotr 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.agricolaeplotr 0.3.1 -> 0.5.0 https://repology.org/project/r:agricolaeplotr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cloud-utils, using log file: /var/log/nixpkgs-update/cloud-utils/2024-03-21.log cloud-utils 0.32 -> 0.33 https://repology.org/project/cloud-utils/versions attrpath: cloud-utils 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/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv building '/nix/store/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv'... trying https://launchpad.net/cloud-utils/trunk/0.33/+download/cloud-utils-0.33.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 10321 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download cloud-utils-0.33.tar.gz from any mirror error: builder for '/nix/store/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://launchpad.net/cloud-utils/trunk/0.33/+download/cloud-utils-0.33.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 10321 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download cloud-utils-0.33.tar.gz from any mirror For full logs, run 'nix log /nix/store/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'cloud-utils.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv /nix/store/ilwa0mx8dvdrkv500i1x2iq765jcjs4l-cloud-utils-0.33.drv building '/nix/store/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv'... trying https://launchpad.net/cloud-utils/trunk/0.33/+download/cloud-utils-0.33.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 10321 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download cloud-utils-0.33.tar.gz from any mirror error: builder for '/nix/store/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://launchpad.net/cloud-utils/trunk/0.33/+download/cloud-utils-0.33.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 10321 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download cloud-utils-0.33.tar.gz from any mirror For full logs, run 'nix log /nix/store/68v20iwvinymnyavk7pijpj45f0pc7vg-cloud-utils-0.33.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/ilwa0mx8dvdrkv500i1x2iq765jcjs4l-cloud-utils-0.33.drv' failed to build [result] Failed to update cloud-utils 0.32 -> 0.33 https://repology.org/project/cloud-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 bcache-tools, using log file: /var/log/nixpkgs-update/bcache-tools/2024-03-21.log bcache-tools 1.0.8 -> 1.1 https://repology.org/project/bcache-tools/versions attrpath: bcache-tools 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/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv building '/nix/store/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv'... trying https://github.com/g2p/bcache-tools/archive/v1.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 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/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/g2p/bcache-tools/archive/v1.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 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/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'bcache-tools.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv /nix/store/4238fgbk013xcn5p2zwff9ycbr5x8x5c-bcache-tools-1.1.drv building '/nix/store/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv'... trying https://github.com/g2p/bcache-tools/archive/v1.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 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/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/g2p/bcache-tools/archive/v1.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 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/xwbshm4viv8wh3nhj2b24ccf40abqfny-source.drv'. error: 1 dependencies of derivation '/nix/store/4238fgbk013xcn5p2zwff9ycbr5x8x5c-bcache-tools-1.1.drv' failed to build [result] Failed to update bcache-tools 1.0.8 -> 1.1 https://repology.org/project/bcache-tools/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 ibus-engines.bamboo, using log file: /var/log/nixpkgs-update/ibus-engines.bamboo/2024-03-21.log ibus-engines.bamboo 0.8.2-rc18 -> 0.7.8 https://repology.org/project/ibus-bamboo/versions attrpath: ibus-engines.bamboo Checking auto update branch... No auto update branch exists 0.7.8 is not newer than 0.8.2-rc18 according to Nix; versionComparison: -1 [result] Failed to update ibus-engines.bamboo 0.8.2-rc18 -> 0.7.8 https://repology.org/project/ibus-bamboo/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath rsibreak, using log file: /var/log/nixpkgs-update/rsibreak/2024-03-21.log rsibreak 0.12.13 -> 0.12.15 https://repology.org/project/rsibreak/versions attrpath: rsibreak 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/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv building '/nix/store/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv'... trying https://cdn.download.kde.org/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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 https://download.kde.org/download.php?url=stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 339 100 339 0 0 2619 0 --:--:-- --:--:-- --:--:-- 2627 0 279 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.gwdg.de/pub/linux/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 239 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirrors.ocf.berkeley.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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://mirrors.mit.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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://mirrors.ustc.edu.cn/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 150 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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 rsibreak-0.12.15.tar.xz from any mirror error: builder for '/nix/store/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv' failed with exit code 1; last 25 log lines: > > trying https://mirrors.ocf.berkeley.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % 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://mirrors.mit.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % 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://mirrors.ustc.edu.cn/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 150 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % 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 rsibreak-0.12.15.tar.xz from any mirror For full logs, run 'nix log /nix/store/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'rsibreak.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv /nix/store/jkg16n9lzpipjw740lldkr0l75823hsb-rsibreak-0.12.15.drv building '/nix/store/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv'... trying https://cdn.download.kde.org/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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 https://download.kde.org/download.php?url=stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 339 100 339 0 0 3460 0 --:--:-- --:--:-- --:--:-- 3494 0 279 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.gwdg.de/pub/linux/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 239 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://mirrors.ocf.berkeley.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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://mirrors.mit.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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://mirrors.ustc.edu.cn/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 150 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz % 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 rsibreak-0.12.15.tar.xz from any mirror error: builder for '/nix/store/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv' failed with exit code 1; last 25 log lines: > > trying https://mirrors.ocf.berkeley.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % 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://mirrors.mit.edu/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % 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://mirrors.ustc.edu.cn/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 150 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/stable/rsibreak/0.12.15/rsibreak-0.12.15.tar.xz > % 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 rsibreak-0.12.15.tar.xz from any mirror For full logs, run 'nix log /nix/store/9mg70v2b971vfn9dixf4sj1ai5jzpln8-rsibreak-0.12.15.tar.xz.drv'. error: 1 dependencies of derivation '/nix/store/jkg16n9lzpipjw740lldkr0l75823hsb-rsibreak-0.12.15.drv' failed to build [result] Failed to update rsibreak 0.12.13 -> 0.12.15 https://repology.org/project/rsibreak/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.SLGI, using log file: /var/log/nixpkgs-update/rPackages.SLGI/2024-03-21.log rPackages.SLGI 1.54.0 -> 1.56.0 https://repology.org/project/r:slgi/versions attrpath: rPackages.SLGI Checking auto update branch... No auto update branch exists Old version 1.54.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.SLGI 1.54.0 -> 1.56.0 https://repology.org/project/r:slgi/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libpulsar, using log file: /var/log/nixpkgs-update/libpulsar/2024-03-21.log libpulsar 2.10.2 -> 3.5.0 https://repology.org/project/libpulsar/versions attrpath: libpulsar 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/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv building '/nix/store/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv'... trying https://dlcdn.apache.org/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % 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 trying https://www-eu.apache.org/dist/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 287 100 287 0 0 1115 0 --:--:-- --:--:-- --:--:-- 1116 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.wayne.edu/apache/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 255 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://www.apache.org/dist/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 287 100 287 0 0 5583 0 --:--:-- --:--:-- --:--:-- 5627 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://archive.apache.org/dist/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % 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 trying https://apache.cs.uu.nl/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://apache.cs.utah.edu/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (7) Failed to connect to apache.cs.utah.edu port 443 after 662 ms: Couldn't connect to server trying http://ftp.tudelft.nl/apache/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % 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 trying ftp://ftp.funet.fi/pub/mirrors/apache.org/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (9) Server denied you to change to the given directory error: cannot download apache-pulsar-3.5.0-src.tar.gz from any mirror error: builder for '/nix/store/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv' failed with exit code 1; last 25 log lines: > > trying https://apache.cs.uu.nl/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://apache.cs.utah.edu/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (7) Failed to connect to apache.cs.utah.edu port 443 after 662 ms: Couldn't connect to server > > trying http://ftp.tudelft.nl/apache/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz > % 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 > > trying ftp://ftp.funet.fi/pub/mirrors/apache.org/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (9) Server denied you to change to the given directory > error: cannot download apache-pulsar-3.5.0-src.tar.gz from any mirror For full logs, run 'nix log /nix/store/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'libpulsar.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv /nix/store/3cpp59lzanqs29l3g8k1nh11596g422j-libpulsar-3.5.0.drv building '/nix/store/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv'... trying https://dlcdn.apache.org/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % 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 trying https://www-eu.apache.org/dist/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 287 100 287 0 0 1151 0 --:--:-- --:--:-- --:--:-- 1152 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://ftp.wayne.edu/apache/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 255 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://www.apache.org/dist/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 287 100 287 0 0 5724 0 --:--:-- --:--:-- --:--:-- 5740 0 196 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://archive.apache.org/dist/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % 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 trying https://apache.cs.uu.nl/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://apache.cs.utah.edu/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (7) Failed to connect to apache.cs.utah.edu port 443 after 164 ms: Couldn't connect to server trying http://ftp.tudelft.nl/apache/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz % 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 trying ftp://ftp.funet.fi/pub/mirrors/apache.org/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (9) Server denied you to change to the given directory error: cannot download apache-pulsar-3.5.0-src.tar.gz from any mirror error: builder for '/nix/store/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv' failed with exit code 1; last 25 log lines: > > trying https://apache.cs.uu.nl/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > > trying https://apache.cs.utah.edu/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (7) Failed to connect to apache.cs.utah.edu port 443 after 164 ms: Couldn't connect to server > > trying http://ftp.tudelft.nl/apache/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.tar.gz > % 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 > > trying ftp://ftp.funet.fi/pub/mirrors/apache.org/pulsar/pulsar-3.5.0/apache-pulsar-3.5.0-src.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: (9) Server denied you to change to the given directory > error: cannot download apache-pulsar-3.5.0-src.tar.gz from any mirror For full logs, run 'nix log /nix/store/61v6dknkyy3xc53r4ipav26in97bvdbw-apache-pulsar-3.5.0-src.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/3cpp59lzanqs29l3g8k1nh11596g422j-libpulsar-3.5.0.drv' failed to build [result] Failed to update libpulsar 2.10.2 -> 3.5.0 https://repology.org/project/libpulsar/versions [options] github_user: r-ryantm, pull_request: 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-21.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 vimPlugins.mediawiki-vim, using log file: /var/log/nixpkgs-update/vimPlugins.mediawiki-vim/2024-03-21.log vimPlugins.mediawiki-vim 2015-11-15 -> 20151115 https://repology.org/project/vim:mediawiki.vim/versions attrpath: vimPlugins.mediawiki-vim Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update vimPlugins.mediawiki-vim 2015-11-15 -> 20151115 https://repology.org/project/vim:mediawiki.vim/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hmetis, using log file: /var/log/nixpkgs-update/hmetis/2024-03-21.log hmetis 1.5 -> 1.5.3 https://repology.org/project/hmetis/versions attrpath: hmetis 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/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv building '/nix/store/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv'... trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/hmetis/hmetis-1.5.3-linux.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 hmetis-1.5.3-linux.tar.gz from any mirror error: builder for '/nix/store/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/hmetis/hmetis-1.5.3-linux.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 hmetis-1.5.3-linux.tar.gz from any mirror For full logs, run 'nix log /nix/store/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'hmetis.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv /nix/store/v74blnjpwjpy7qav8cdfb2p59jy3kd4q-hmetis-1.5.3.drv this path will be fetched (17.76 MiB download, 46.68 MiB unpacked): /nix/store/9shnl8zaa90kfncsnhaak6wvlp4ls8lz-ghostscript-with-X-10.02.1 copying path '/nix/store/9shnl8zaa90kfncsnhaak6wvlp4ls8lz-ghostscript-with-X-10.02.1' from 'https://cache.nixos.org'... building '/nix/store/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv'... trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/hmetis/hmetis-1.5.3-linux.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 hmetis-1.5.3-linux.tar.gz from any mirror error: builder for '/nix/store/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying http://glaros.dtc.umn.edu/gkhome/fetch/sw/hmetis/hmetis-1.5.3-linux.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 hmetis-1.5.3-linux.tar.gz from any mirror For full logs, run 'nix log /nix/store/ykl9lsxhk7cdz9y09p9j44m6xf93cg9i-hmetis-1.5.3-linux.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/v74blnjpwjpy7qav8cdfb2p59jy3kd4q-hmetis-1.5.3.drv' failed to build [result] Failed to update hmetis 1.5 -> 1.5.3 https://repology.org/project/hmetis/versions [options] github_user: r-ryantm, pull_request: 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.ExtUtilsCppGuess 0.26 -> 0.27 https://repology.org/project/perl:extutils-cppguess/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath edencommon, using log file: /var/log/nixpkgs-update/edencommon/2024-03-21.log edencommon 2024.01.22.00 -> 2024.03.11.00 https://repology.org/project/edencommon/versions attrpath: edencommon Checking auto update branch... No auto update branch exists Old version 2024.01.22.00" not present in staging derivation file with contents: { stdenv , lib , fetchFromGitHub , boost , cmake , fmt_8 , folly , glog , gtest }: stdenv.mkDerivation rec { pname = "edencommon"; version = "2024.03.11.00"; src = fetchFromGitHub { owner = "facebookexperimental"; repo = "edencommon"; rev = "v${version}"; sha256 = "sha256-1z4QicS98juv4bUEbHBkCjVJHEhnoJyLYp4zMHmDbMg="; }; nativeBuildInputs = [ cmake ]; cmakeFlags = lib.optionals stdenv.isDarwin [ "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation ]; buildInputs = [ glog folly fmt_8 boost gtest ]; meta = with lib; { description = "A shared library for Meta's source control filesystem tools (EdenFS and Watchman)"; homepage = "https://github.com/facebookexperimental/edencommon"; license = licenses.mit; platforms = platforms.unix; maintainers = with maintainers; [ kylesferrazza ]; }; } [result] Failed to update edencommon 2024.01.22.00 -> 2024.03.11.00 https://repology.org/project/edencommon/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath hdf4, using log file: /var/log/nixpkgs-update/hdf4/2024-03-21.log hdf4 4.2.15 -> 4.3.0 https://repology.org/project/hdf/versions attrpath: hdf4 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 hdf4 4.2.15 -> 4.3.0 https://repology.org/project/hdf/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.PHEindicatormethods, using log file: /var/log/nixpkgs-update/rPackages.PHEindicatormethods/2024-03-21.log rPackages.PHEindicatormethods 2.0.1 -> 2.0.2 https://repology.org/project/r:pheindicatormethods/versions attrpath: rPackages.PHEindicatormethods 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.PHEindicatormethods 2.0.1 -> 2.0.2 https://repology.org/project/r:pheindicatormethods/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.GJRM, using log file: /var/log/nixpkgs-update/rPackages.GJRM/2024-03-21.log rPackages.GJRM 0.2-6.4 -> 0.2-6.5 https://repology.org/project/r:gjrm/versions attrpath: rPackages.GJRM Checking auto update branch... No auto update branch exists Old version 0.2-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.GJRM 0.2-6.4 -> 0.2-6.5 https://repology.org/project/r:gjrm/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.exact2x2, using log file: /var/log/nixpkgs-update/rPackages.exact2x2/2024-03-21.log rPackages.exact2x2 1.6.8 -> 1.6.9 https://repology.org/project/r:exact2x2/versions attrpath: rPackages.exact2x2 Checking auto update branch... No auto update branch exists Old version 1.6.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.exact2x2 1.6.8 -> 1.6.9 https://repology.org/project/r:exact2x2/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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-libav 1.22.9 -> 1.24.0 https://repology.org/project/gstreamer:libav/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.RPPanalyzer, using log file: /var/log/nixpkgs-update/rPackages.RPPanalyzer/2024-03-21.log rPackages.RPPanalyzer 1.4.8 -> 1.4.9 https://repology.org/project/r:rppanalyzer/versions attrpath: rPackages.RPPanalyzer Checking auto update branch... No auto update branch exists Old version 1.4.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.RPPanalyzer 1.4.8 -> 1.4.9 https://repology.org/project/r:rppanalyzer/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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.iotarelr, using log file: /var/log/nixpkgs-update/rPackages.iotarelr/2024-03-21.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.rpact, using log file: /var/log/nixpkgs-update/rPackages.rpact/2024-03-21.log rPackages.rpact 3.4.0 -> 3.5.1 https://repology.org/project/r:rpact/versions attrpath: rPackages.rpact Checking auto update branch... No auto update branch exists Old version 3.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.rpact 3.4.0 -> 3.5.1 https://repology.org/project/r:rpact/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.CodelistGenerator, using log file: /var/log/nixpkgs-update/rPackages.CodelistGenerator/2024-03-21.log rPackages.CodelistGenerator 2.1.1 -> 2.2.3 https://repology.org/project/r:codelistgenerator/versions attrpath: rPackages.CodelistGenerator 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.CodelistGenerator 2.1.1 -> 2.2.3 https://repology.org/project/r:codelistgenerator/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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.poweRlaw, using log file: /var/log/nixpkgs-update/rPackages.poweRlaw/2024-03-21.log rPackages.poweRlaw 0.70.6 -> 0.80.0 https://repology.org/project/r:powerlaw/versions attrpath: rPackages.poweRlaw Checking auto update branch... No auto update branch exists Old version 0.70.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.poweRlaw 0.70.6 -> 0.80.0 https://repology.org/project/r:powerlaw/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.FPDclustering, using log file: /var/log/nixpkgs-update/rPackages.FPDclustering/2024-03-21.log rPackages.FPDclustering 2.2 -> 2.3.1 https://repology.org/project/r:fpdclustering/versions attrpath: rPackages.FPDclustering Checking auto update branch... No auto update branch exists Old version 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.FPDclustering 2.2 -> 2.3.1 https://repology.org/project/r:fpdclustering/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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] 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 For attrpath rPackages.imf_data, using log file: /var/log/nixpkgs-update/rPackages.imf_data/2024-03-21.log rPackages.imf_data 0.1.3 -> 0.1.5 https://repology.org/project/r:imf.data/versions attrpath: rPackages.imf_data 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.imf_data 0.1.3 -> 0.1.5 https://repology.org/project/r:imf.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.PRECAST, using log file: /var/log/nixpkgs-update/rPackages.PRECAST/2024-03-21.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 johnny, using log file: /var/log/nixpkgs-update/johnny/2024-03-21.log johnny 2.2 -> 20120424 https://repology.org/project/johnny/versions attrpath: johnny 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/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv building '/nix/store/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv'... trying https://github.com/openwall/johnny/archive/v20120424.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/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/openwall/johnny/archive/v20120424.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/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'johnny.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv /nix/store/g1vmybnk9chq1hxi7n5jhbg98sg5q0a1-johnny-20120424.drv these 2 paths will be fetched (21.27 MiB download, 75.10 MiB unpacked): /nix/store/1yfql8zaki78bkm0kjp0m8sqi8g58nly-john-1.9.0-jumbo-1 /nix/store/zh5pg0snl4lqvx3ac278mp1xkrkdkl7v-python3.11-scapy-2.5.0 copying path '/nix/store/zh5pg0snl4lqvx3ac278mp1xkrkdkl7v-python3.11-scapy-2.5.0' from 'https://cache.nixos.org'... building '/nix/store/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv'... trying https://github.com/openwall/johnny/archive/v20120424.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 copying path '/nix/store/1yfql8zaki78bkm0kjp0m8sqi8g58nly-john-1.9.0-jumbo-1' from 'https://cache.nixos.org'... 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/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/openwall/johnny/archive/v20120424.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/fmfsj844rsy36miv2smd88c3ayn1j7wp-source.drv'. error: 1 dependencies of derivation '/nix/store/g1vmybnk9chq1hxi7n5jhbg98sg5q0a1-johnny-20120424.drv' failed to build [result] Failed to update johnny 2.2 -> 20120424 https://repology.org/project/johnny/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.sads, using log file: /var/log/nixpkgs-update/rPackages.sads/2024-03-21.log rPackages.sads 0.4.2 -> 0.6.3 https://repology.org/project/r:sads/versions attrpath: rPackages.sads 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.sads 0.4.2 -> 0.6.3 https://repology.org/project/r:sads/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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-21.log python312Packages.llama-index-readers-file 0.1.7 -> 0.1.11 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] 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! The diff was empty after rewrites. [result] Failed to update python312Packages.llama-index-readers-file 0.1.7 -> 0.1.11 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-21.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 rPackages.lfe, using log file: /var/log/nixpkgs-update/rPackages.lfe/2024-03-21.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.OptGS, using log file: /var/log/nixpkgs-update/rPackages.OptGS/2024-03-21.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.hdflex, using log file: /var/log/nixpkgs-update/rPackages.hdflex/2024-03-21.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.intendo, using log file: /var/log/nixpkgs-update/rPackages.intendo/2024-03-21.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.moderate_mediation, using log file: /var/log/nixpkgs-update/rPackages.moderate_mediation/2024-03-21.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 phpunit, using log file: /var/log/nixpkgs-update/phpunit/2024-03-21.log phpunit 11.0.4 -> 11.0.6 https://github.com/sebastianbergmann/phpunit/releases 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.6 https://github.com/sebastianbergmann/phpunit/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 ocamlPackages.mmap, using log file: /var/log/nixpkgs-update/ocamlPackages.mmap/2024-03-21.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/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-mmap-v1.2.0.tbz.drv building '/nix/store/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-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/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-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/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-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/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-mmap-v1.2.0.tbz.drv /nix/store/1a2ycx6cissfz4dkfwikyljfl0dddjld-ocaml5.1.1-mmap-1.2.0.drv building '/nix/store/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-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/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-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/8w6z4mklx73jjclmh3ljgdgsv7nq7yvk-mmap-v1.2.0.tbz.drv'. error: 1 dependencies of derivation '/nix/store/1a2ycx6cissfz4dkfwikyljfl0dddjld-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 higan, using log file: /var/log/nixpkgs-update/higan/2024-03-21.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 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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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/mb488rr560vq1xnl10hinnyfflcrd51n-coreutils-9.4/bin/mktemp -d + tmpdir=/run/nixpkgs-update-worker/tmp.yHoiSVI8tJ + cloneArgs=(--bare) + [[ 1 == \1 ]] + cloneArgs+=(--depth=1) + [[ -n '' ]] + /nix/store/fmx804pc0bs1966xq5bb67kark2mww9r-git-2.43.2/bin/git clone --bare --depth=1 https://github.com/higan-emu/higan.git /run/nixpkgs-update-worker/tmp.yHoiSVI8tJ Cloning into bare repository '/run/nixpkgs-update-worker/tmp.yHoiSVI8tJ'... + pushd /run/nixpkgs-update-worker/tmp.yHoiSVI8tJ ++ /nix/store/fmx804pc0bs1966xq5bb67kark2mww9r-git-2.43.2/bin/git show -s --pretty=format:%cs + commit_date=2024-02-17 ++ /nix/store/fmx804pc0bs1966xq5bb67kark2mww9r-git-2.43.2/bin/git show -s --pretty=format:%H + commit_sha=ba4b918c0bbcc302e0d5d2ed70f2c56214d62681 + [[ -z '' ]] + new_version=unstable-2024-02-17 + popd + /nix/store/7sqzhqm9rb4bbwimri9i03rgyxm8pkzb-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 intel-gpu-tools, using log file: /var/log/nixpkgs-update/intel-gpu-tools/2024-03-21.log intel-gpu-tools 1.27.1 -> 1.28 https://repology.org/project/intel-gpu-tools/versions attrpath: intel-gpu-tools 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-gpu-tools 1.27.1 -> 1.28 https://repology.org/project/intel-gpu-tools/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ovito, using log file: /var/log/nixpkgs-update/ovito/2024-03-21.log ovito 3.7.11 -> 3.10.4 https://repology.org/project/ovito/versions attrpath: ovito 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/ovito/default.nix b/pkgs/applications/graphics/ovito/default.nix index 81ce2518cea7..c02abcb78da9 100644 --- a/pkgs/applications/graphics/ovito/default.nix +++ b/pkgs/applications/graphics/ovito/default.nix @@ -21,13 +21,13 @@ mkDerivation rec { pname = "ovito"; - version = "3.7.11"; + version = "3.10.4"; src = fetchFromGitLab { owner = "stuko"; repo = "ovito"; rev = "v${version}"; - sha256 = "sha256-Z3uwjOYJ7di/LLllbzdKjzUE7m119i03bA8dJPqhxWA="; + sha256 = "sha256-BIycT1BwWRU4aMQXBtQoAGnDoMwfbQ5bpel09gxeDmc="; }; nativeBuildInputs = [ [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 ovito nix build failed. -- The C compiler identification is GNU 13.2.0 -- The CXX 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/qhpw32pz39y6i30b3vrbw5fw6zv5549f-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/qhpw32pz39y6i30b3vrbw5fw6zv5549f-gcc-wrapper-13.2.0/bin/g++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Could NOT find Git (missing: GIT_EXECUTABLE) CMake Error at CMakeLists.txt:70 (FIND_PACKAGE): By not providing "FindQt6.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Qt6", but CMake did not find one. Could not find a package configuration file provided by "Qt6" (requested version 6.2) with any of the following names: Qt6Config.cmake qt6-config.cmake Add the installation prefix of "Qt6" to CMAKE_PREFIX_PATH or set "Qt6_DIR" to a directory containing one of the above files. If "Qt6" provides a separate development package or SDK, be sure it has been installed.  -- Configuring incomplete, errors occurred! [result] Failed to update ovito 3.7.11 -> 3.10.4 https://repology.org/project/ovito/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath neomutt, using log file: /var/log/nixpkgs-update/neomutt/2024-03-21.log neomutt 20231221 -> 20240201 https://github.com/neomutt/neomutt/releases attrpath: neomutt Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - neomutt: 20231221 -> 20240201 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/285578" [result] Failed to update neomutt 20231221 -> 20240201 https://github.com/neomutt/neomutt/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-21.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.rPBK, using log file: /var/log/nixpkgs-update/rPackages.rPBK/2024-03-21.log rPackages.rPBK 0.2.2 -> 0.2.4 https://repology.org/project/r:rpbk/versions attrpath: rPackages.rPBK 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.rPBK 0.2.2 -> 0.2.4 https://repology.org/project/r:rpbk/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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.RDS, using log file: /var/log/nixpkgs-update/rPackages.RDS/2024-03-21.log rPackages.RDS 0.9-7 -> 0.9-9 https://repology.org/project/r:rds/versions attrpath: rPackages.RDS Checking auto update branch... No auto update branch exists Old version 0.9-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.RDS 0.9-7 -> 0.9-9 https://repology.org/project/r:rds/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/79w6li0m3bqp9fikl361rsyygkhb195x-libmediainfo_24.01.1.tar.xz.drv building '/nix/store/79w6li0m3bqp9fikl361rsyygkhb195x-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/79w6li0m3bqp9fikl361rsyygkhb195x-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/79w6li0m3bqp9fikl361rsyygkhb195x-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/79w6li0m3bqp9fikl361rsyygkhb195x-libmediainfo_24.01.1.tar.xz.drv /nix/store/a8y5rhbhlig0jcc0vwk6wvx2bcqkhrzf-libmediainfo-24.01.1.drv building '/nix/store/79w6li0m3bqp9fikl361rsyygkhb195x-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/79w6li0m3bqp9fikl361rsyygkhb195x-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/79w6li0m3bqp9fikl361rsyygkhb195x-libmediainfo_24.01.1.tar.xz.drv'. error: 1 dependencies of derivation '/nix/store/a8y5rhbhlig0jcc0vwk6wvx2bcqkhrzf-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.nc, using log file: /var/log/nixpkgs-update/rPackages.nc/2024-03-21.log rPackages.nc 2023.8.24 -> 2024.2.21 https://repology.org/project/r:nc/versions attrpath: rPackages.nc Checking auto update branch... No auto update branch exists Old version 2023.8.24" 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.nc 2023.8.24 -> 2024.2.21 https://repology.org/project/r:nc/versions [options] github_user: r-ryantm, pull_request: 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.PerlTidy 20230912 -> 20240202 https://repology.org/project/perl:perl-tidy/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.admiral, using log file: /var/log/nixpkgs-update/rPackages.admiral/2024-03-21.log rPackages.admiral 1.0.0 -> 1.0.2 https://repology.org/project/r:admiral/versions attrpath: rPackages.admiral 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.admiral 1.0.0 -> 1.0.2 https://repology.org/project/r:admiral/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath udns, using log file: /var/log/nixpkgs-update/udns/2024-03-21.log udns 0.4 -> 0.5 https://repology.org/project/udns/versions attrpath: udns Checking auto update branch... An auto update branch exists with message `udns: 0.4 -> 0.5`. New version is 0.5. An auto update branch exists with an equal or greater version [result] Failed to update udns 0.4 -> 0.5 https://repology.org/project/udns/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libajantv2, using log file: /var/log/nixpkgs-update/libajantv2/2024-03-21.log libajantv2 16.2-bugfix5 -> 17.0.1 https://repology.org/project/libajantv2/versions attrpath: libajantv2 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/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv building '/nix/store/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv'... trying https://github.com/aja-video/ntv2/archive/v17.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 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/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/aja-video/ntv2/archive/v17.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 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/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'libajantv2.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv /nix/store/jpb2h5337fraa32qcfqqf9zs09zp273j-libajantv2-17.0.1.drv building '/nix/store/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv'... trying https://github.com/aja-video/ntv2/archive/v17.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 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/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/aja-video/ntv2/archive/v17.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 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/khwq0qha1bjcr5zhcj72fnvw1x1lfnax-source.drv'. error: 1 dependencies of derivation '/nix/store/jpb2h5337fraa32qcfqqf9zs09zp273j-libajantv2-17.0.1.drv' failed to build [result] Failed to update libajantv2 16.2-bugfix5 -> 17.0.1 https://repology.org/project/libajantv2/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libsForQt5.soundkonverter, using log file: /var/log/nixpkgs-update/libsForQt5.soundkonverter/2024-03-21.log libsForQt5.soundkonverter 3.0.1 -> 3.0.1.32 https://repology.org/project/soundkonverter/versions attrpath: libsForQt5.soundkonverter 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 libsForQt5.soundkonverter 3.0.1 -> 3.0.1.32 https://repology.org/project/soundkonverter/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.zCompositions, using log file: /var/log/nixpkgs-update/rPackages.zCompositions/2024-03-21.log rPackages.zCompositions 1.5.0-1 -> 1.5.0.3 https://repology.org/project/r:zcompositions/versions attrpath: rPackages.zCompositions Checking auto update branch... No auto update branch exists Old version 1.5.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.zCompositions 1.5.0-1 -> 1.5.0.3 https://repology.org/project/r:zcompositions/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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-21.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 driversi686Linux.intel-media-driver, using log file: /var/log/nixpkgs-update/driversi686Linux.intel-media-driver/2024-03-21.log driversi686Linux.intel-media-driver 23.3.5 -> 24.1.4 https://repology.org/project/intel-media-driver/versions attrpath: driversi686Linux.intel-media-driver 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 driversi686Linux.intel-media-driver 23.3.5 -> 24.1.4 https://repology.org/project/intel-media-driver/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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-21.log phpactor 2023.12.03.0 -> 2024.03.09.0 https://github.com/phpactor/phpactor/releases 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://github.com/phpactor/phpactor/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.google-cloud-iam, using log file: /var/log/nixpkgs-update/python312Packages.google-cloud-iam/2024-03-21.log python312Packages.google-cloud-iam 2.12.2 -> 2.14.3 https://repology.org/project/python:google-cloud-iam/versions attrpath: python312Packages.google-cloud-iam 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] Going to be running update for following packages: - python3.12-google-cloud-iam-2.12.2 Press Enter key to continue... Running update for: - python3.12-google-cloud-iam-2.12.2: UPDATING ... - python3.12-google-cloud-iam-2.12.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/google-cloud-iam/default.nix b/pkgs/development/python-modules/google-cloud-iam/default.nix index 9e1ca821bdae..93c85687dd4c 100644 --- a/pkgs/development/python-modules/google-cloud-iam/default.nix +++ b/pkgs/development/python-modules/google-cloud-iam/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "google-cloud-iam"; - version = "2.12.2"; + version = "2.14.3"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-YDHQwZEfx5zguLuPb+FkUoO5wakYi0g9rmI7U7TYGBw="; + hash = "sha256-yC6ZP4qSGcW6H84TnDSu1vAZ3V+bRc6VbVQwWD0q8m4="; }; propagatedBuildInputs = [ No auto update branch exists Old version 2.12.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , google-api-core , libcst , mock , proto-plus , pytest-asyncio , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "google-cloud-iam"; version = "2.14.3"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-yC6ZP4qSGcW6H84TnDSu1vAZ3V+bRc6VbVQwWD0q8m4="; }; propagatedBuildInputs = [ google-api-core libcst proto-plus ] ++ google-api-core.optional-dependencies.grpc; nativeCheckInputs = [ mock pytest-asyncio pytestCheckHook ]; pythonImportsCheck = [ "google.cloud.iam_credentials" "google.cloud.iam_credentials_v1" ]; meta = with lib; { description = "IAM Service Account Credentials API client library"; homepage = "https://github.com/googleapis/python-iam"; changelog = "https://github.com/googleapis/python-iam/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ austinbutler ]; }; } [result] Failed to update python312Packages.google-cloud-iam 2.12.2 -> 2.14.3 https://repology.org/project/python:google-cloud-iam/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.RQuantLib, using log file: /var/log/nixpkgs-update/rPackages.RQuantLib/2024-03-21.log rPackages.RQuantLib 0.4.20 -> 0.4.21 https://repology.org/project/r:rquantlib/versions attrpath: rPackages.RQuantLib Checking auto update branch... No auto update branch exists Old version 0.4.20" 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.RQuantLib 0.4.20 -> 0.4.21 https://repology.org/project/r:rquantlib/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.matsindf, using log file: /var/log/nixpkgs-update/rPackages.matsindf/2024-03-21.log rPackages.matsindf 0.4.7 -> 0.4.8 https://repology.org/project/r:matsindf/versions attrpath: rPackages.matsindf Checking auto update branch... No auto update branch exists Old version 0.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.matsindf 0.4.7 -> 0.4.8 https://repology.org/project/r:matsindf/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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 freepats, using log file: /var/log/nixpkgs-update/freepats/2024-03-21.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/5j7161mz34w1zbbmchaxrvywqcnxjci4-freepats-20221026.tar.bz2.drv building '/nix/store/5j7161mz34w1zbbmchaxrvywqcnxjci4-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/5j7161mz34w1zbbmchaxrvywqcnxjci4-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/5j7161mz34w1zbbmchaxrvywqcnxjci4-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/5j7161mz34w1zbbmchaxrvywqcnxjci4-freepats-20221026.tar.bz2.drv /nix/store/y7646x149aqaz8k50xbi3l2c79d0r2wy-freepats-20221026.drv building '/nix/store/5j7161mz34w1zbbmchaxrvywqcnxjci4-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/5j7161mz34w1zbbmchaxrvywqcnxjci4-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/5j7161mz34w1zbbmchaxrvywqcnxjci4-freepats-20221026.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/y7646x149aqaz8k50xbi3l2c79d0r2wy-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 jstest-gtk, using log file: /var/log/nixpkgs-update/jstest-gtk/2024-03-21.log jstest-gtk 2018-07-10 -> 20180710 https://repology.org/project/jstest-gtk/versions attrpath: jstest-gtk 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/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv building '/nix/store/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv'... trying https://gitlab.com/api/v4/projects/jstest-gtk%2Fjstest-gtk/repository/archive.tar.gz?sha=62f6e2d7d44620e503149510c428df9e004c9f3b % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 35 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/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv' failed with exit code 1; last 7 log lines: > > trying https://gitlab.com/api/v4/projects/jstest-gtk%2Fjstest-gtk/repository/archive.tar.gz?sha=62f6e2d7d44620e503149510c428df9e004c9f3b > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 35 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/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'jstest-gtk.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv /nix/store/sh9azjc1a560453yr9qh3xkwqcn89216-jstest-gtk-20180710.drv building '/nix/store/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv'... trying https://gitlab.com/api/v4/projects/jstest-gtk%2Fjstest-gtk/repository/archive.tar.gz?sha=62f6e2d7d44620e503149510c428df9e004c9f3b % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 35 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/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv' failed with exit code 1; last 7 log lines: > > trying https://gitlab.com/api/v4/projects/jstest-gtk%2Fjstest-gtk/repository/archive.tar.gz?sha=62f6e2d7d44620e503149510c428df9e004c9f3b > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 35 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/c7gpbxsisvhryhhw5wkcvpjgm8w0xjlb-source.drv'. error: 1 dependencies of derivation '/nix/store/sh9azjc1a560453yr9qh3xkwqcn89216-jstest-gtk-20180710.drv' failed to build [result] Failed to update jstest-gtk 2018-07-10 -> 20180710 https://repology.org/project/jstest-gtk/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cdecl, using log file: /var/log/nixpkgs-update/cdecl/2024-03-21.log cdecl 2.5 -> 16.2.1 https://repology.org/project/cdecl/versions attrpath: cdecl 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/lfjwpdczmyd993sjclxhnvzadccl4g7c-cdecl-blocks-16.2.1.tar.gz.drv building '/nix/store/lfjwpdczmyd993sjclxhnvzadccl4g7c-cdecl-blocks-16.2.1.tar.gz.drv'... trying https://www.cdecl.org/files/cdecl-blocks-16.2.1.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 162 100 162 0 0 662 0 --:--:-- --:--:-- --:--:-- 663 0 174 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download cdecl-blocks-16.2.1.tar.gz from any mirror error: builder for '/nix/store/lfjwpdczmyd993sjclxhnvzadccl4g7c-cdecl-blocks-16.2.1.tar.gz.drv' failed with exit code 1; last 8 log lines: > > trying https://www.cdecl.org/files/cdecl-blocks-16.2.1.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 162 100 162 0 0 662 0 --:--:-- --:--:-- --:--:-- 663 > 0 174 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download cdecl-blocks-16.2.1.tar.gz from any mirror For full logs, run 'nix log /nix/store/lfjwpdczmyd993sjclxhnvzadccl4g7c-cdecl-blocks-16.2.1.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'cdecl.originalSrc' not found stderr did not split as expected full stderr was: error (ignored): error: end of string reached error: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:9:12: (source not available) … while evaluating derivation 'cdecl-16.2.1' whose name attribute is located at /var/cache/nixpkgs-update/worker/worktree/cdecl/pkgs/stdenv/generic/make-derivation.nix:331:7 … while evaluating attribute 'patches' of derivation 'cdecl-16.2.1' at /var/cache/nixpkgs-update/worker/worktree/cdecl/pkgs/stdenv/generic/make-derivation.nix:395:14: 394| 395| inherit patches; | ^ 396| error: getting status of '/var/cache/nixpkgs-update/worker/worktree/cdecl/pkgs/development/tools/cdecl/cdecl-16.2.1-lex.patch': No such file or directory [result] Failed to update cdecl 2.5 -> 16.2.1 https://repology.org/project/cdecl/versions [options] github_user: r-ryantm, pull_request: 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-21.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-21.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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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/4vzal97iq3dmrgycj8r0gflrh51p8w1s-bash-5.2p26/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I/nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include -I/nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/k1qjs35nw1lbssg1l1xpmh0082hy7wl4-glib-2.78.4/lib/glib-2.0/include -I/nix/store/cp57lxc641c5qq6435506xnqn89pf3pd-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/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include -I/nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/k1qjs35nw1lbssg1l1xpmh0082hy7wl4-glib-2.78.4/lib/glib-2.0/include -I/nix/store/cp57lxc641c5qq6435506xnqn89pf3pd-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/4vzal97iq3dmrgycj8r0gflrh51p8w1s-bash-5.2p26/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I/nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include -I/nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/k1qjs35nw1lbssg1l1xpmh0082hy7wl4-glib-2.78.4/lib/glib-2.0/include -I/nix/store/cp57lxc641c5qq6435506xnqn89pf3pd-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/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include -I/nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0 -I/nix/store/k1qjs35nw1lbssg1l1xpmh0082hy7wl4-glib-2.78.4/lib/glib-2.0/include -I/nix/store/cp57lxc641c5qq6435506xnqn89pf3pd-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/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0/glib/galloca.h:34, from /nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0/glib.h:32, from lm-utils.c:33: /nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-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/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0/glib/giochannel.h:35, from /nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-glib-2.78.4-dev/include/glib-2.0/glib.h:56: /nix/store/s0nl17v1827bl7qyjgkkar90c2a40ykb-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 rPackages.mpmsim, using log file: /var/log/nixpkgs-update/rPackages.mpmsim/2024-03-21.log rPackages.mpmsim 1.1.0 -> 2.0.0 https://repology.org/project/r:mpmsim/versions attrpath: rPackages.mpmsim 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.mpmsim 1.1.0 -> 2.0.0 https://repology.org/project/r:mpmsim/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath genromfs, using log file: /var/log/nixpkgs-update/genromfs/2024-03-21.log genromfs 0.5.2 -> 0.5.7 https://repology.org/project/genromfs/versions attrpath: genromfs 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/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv building '/nix/store/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv'... trying https://downloads.sourceforge.net/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 811 0 --:--:-- --:--:-- --:--:-- 807 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/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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 genromfs-0.5.7.tar.gz from any mirror error: builder for '/nix/store/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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 genromfs-0.5.7.tar.gz from any mirror For full logs, run 'nix log /nix/store/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'genromfs.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv /nix/store/hrf39c905cmf68s43y820cam5pyha5yr-genromfs-0.5.7.drv building '/nix/store/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv'... trying https://downloads.sourceforge.net/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1301 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/romfs/genromfs/0.5.7/genromfs-0.5.7.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 248 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/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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 genromfs-0.5.7.tar.gz from any mirror error: builder for '/nix/store/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/romfs/genromfs/0.5.7/genromfs-0.5.7.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 248 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/romfs/genromfs/0.5.7/genromfs-0.5.7.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/romfs/genromfs/0.5.7/genromfs-0.5.7.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 genromfs-0.5.7.tar.gz from any mirror For full logs, run 'nix log /nix/store/b4p2hfaljhx6jbd0zdlp4x9wlyma5ww8-genromfs-0.5.7.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/hrf39c905cmf68s43y820cam5pyha5yr-genromfs-0.5.7.drv' failed to build [result] Failed to update genromfs 0.5.2 -> 0.5.7 https://repology.org/project/genromfs/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath directvnc, using log file: /var/log/nixpkgs-update/directvnc/2024-03-21.log directvnc 0.7.7.2015-04-16 -> 0.7.8 https://repology.org/project/directvnc/versions attrpath: directvnc 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 directvnc 0.7.7.2015-04-16 -> 0.7.8 https://repology.org/project/directvnc/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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.django-formtools, using log file: /var/log/nixpkgs-update/python311Packages.django-formtools/2024-03-21.log python311Packages.django-formtools 0 -> 1 attrpath: python311Packages.django-formtools 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] Going to be running update for following packages: - python3.11-django-formtools-2.5.1 Press Enter key to continue... Running update for: - python3.11-django-formtools-2.5.1: UPDATING ... - python3.11-django-formtools-2.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.django-formtools 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 python311Packages.crownstone-cloud, using log file: /var/log/nixpkgs-update/python311Packages.crownstone-cloud/2024-03-21.log python311Packages.crownstone-cloud 0 -> 1 attrpath: python311Packages.crownstone-cloud 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] Going to be running update for following packages: - python3.11-crownstone-cloud-1.4.9 Press Enter key to continue... Running update for: - python3.11-crownstone-cloud-1.4.9: UPDATING ... - python3.11-crownstone-cloud-1.4.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.crownstone-cloud 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 saw-tools, using log file: /var/log/nixpkgs-update/saw-tools/2024-03-21.log saw-tools 0.1.1-20150731 -> 1.1 https://github.com/GaloisInc/saw-script/releases attrpath: saw-tools 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 saw-tools 0.1.1-20150731 -> 1.1 https://github.com/GaloisInc/saw-script/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.jsons, using log file: /var/log/nixpkgs-update/python311Packages.jsons/2024-03-21.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] 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 libmanette, using log file: /var/log/nixpkgs-update/libmanette/2024-03-21.log libmanette 0 -> 1 attrpath: libmanette Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update libmanette 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.msgraph-core, using log file: /var/log/nixpkgs-update/python311Packages.msgraph-core/2024-03-21.log python311Packages.msgraph-core 0 -> 1 attrpath: python311Packages.msgraph-core 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] Going to be running update for following packages: - python3.11-msgraph-core-0.2.2 Press Enter key to continue... Running update for: - python3.11-msgraph-core-0.2.2: UPDATING ... - python3.11-msgraph-core-0.2.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/msgraph-core/default.nix b/pkgs/development/python-modules/msgraph-core/default.nix index a1df35addf03..708ffaa142ca 100644 --- a/pkgs/development/python-modules/msgraph-core/default.nix +++ b/pkgs/development/python-modules/msgraph-core/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "msgraph-core"; - version = "0.2.2"; + version = "1.0.0"; disabled = pythonOlder "3.5"; @@ -19,8 +19,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "microsoftgraph"; repo = "msgraph-sdk-python-core"; - rev = "v${version}"; - hash = "sha256-eRRlG3GJX3WeKTNJVWgNTTHY56qiUGOlxtvEZ2xObLA="; + rev = "refs/tags/v${version}"; + hash = "sha256-VizjN7sXqPvo9VOSaaUnogTlUDJ1OA2COYNTcVRqhJA="; }; nativeBuildInputs = [ No auto update branch exists There might already be an open PR for this update: - python311Packages.msgraph-core: 0.2.2 -> 1.0.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/283337" - prowler: 3.12.1 -> 3.13.0, python311Packages.msgraph-sdk: init at 1.1.0, python311Packages.msgraph-core: 0.2.2 -> 1.0.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/289246" [result] Failed to update python311Packages.msgraph-core 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.mlxtend, using log file: /var/log/nixpkgs-update/python312Packages.mlxtend/2024-03-21.log python312Packages.mlxtend 0.23.0 -> 0.23.1 https://repology.org/project/python:mlxtend/versions attrpath: python312Packages.mlxtend 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] Going to be running update for following packages: - python3.12-mlxtend-0.23.0 Press Enter key to continue... Running update for: - python3.12-mlxtend-0.23.0: UPDATING ... - python3.12-mlxtend-0.23.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/mlxtend/default.nix b/pkgs/development/python-modules/mlxtend/default.nix index 7f84aaac49ba..4a743ac664a9 100644 --- a/pkgs/development/python-modules/mlxtend/default.nix +++ b/pkgs/development/python-modules/mlxtend/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "mlxtend"; - version = "0.23.0"; + version = "0.23.1"; pyproject = true; disabled = isPy27; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "rasbt"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-TUZ8SdQAOV1CaIlDl4uXYVHvdlEkOz6E48S3pUS6UE0="; + hash = "sha256-FlP6UqX/Ejk9c3Enm0EJ0xqy7iOhDlFqjWWxd4VIczQ="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.23.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , isPy27 , setuptools , pytestCheckHook , scipy , numpy , scikit-learn , pandas , matplotlib , joblib }: buildPythonPackage rec { pname = "mlxtend"; version = "0.23.1"; pyproject = true; disabled = isPy27; src = fetchFromGitHub { owner = "rasbt"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-FlP6UqX/Ejk9c3Enm0EJ0xqy7iOhDlFqjWWxd4VIczQ="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ scipy numpy scikit-learn pandas matplotlib joblib ]; nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "-sv" ]; disabledTestPaths = [ # image tests download files over the network "mlxtend/image" ]; meta = with lib; { description = "A library of Python tools and extensions for data science"; homepage = "https://github.com/rasbt/mlxtend"; license= licenses.bsd3; maintainers = with maintainers; [ evax ]; platforms = platforms.unix; # incompatible with nixpkgs scikit-learn version broken = true; }; } [result] Failed to update python312Packages.mlxtend 0.23.0 -> 0.23.1 https://repology.org/project/python:mlxtend/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath mpdscribble, using log file: /var/log/nixpkgs-update/mpdscribble/2024-03-21.log mpdscribble 0.24 -> 0.25 https://repology.org/project/mpdscribble/versions attrpath: mpdscribble 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 mpdscribble 0.24 -> 0.25 https://repology.org/project/mpdscribble/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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] 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-21.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] 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! The diff was empty after rewrites. [result] Failed to update 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 aws-encryption-sdk-cli, using log file: /var/log/nixpkgs-update/aws-encryption-sdk-cli/2024-03-21.log aws-encryption-sdk-cli 0 -> 1 attrpath: aws-encryption-sdk-cli 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/jd2il3zlx08sm5dr52wwpkp2rbm4lqsp-packages.json.drv building '/nix/store/jd2il3zlx08sm5dr52wwpkp2rbm4lqsp-packages.json.drv'... Going to be running update for following packages: - aws-encryption-sdk-cli-4.1.0 Press Enter key to continue... Running update for: - aws-encryption-sdk-cli-4.1.0: UPDATING ... - aws-encryption-sdk-cli-4.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update aws-encryption-sdk-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.json-home-client, using log file: /var/log/nixpkgs-update/python311Packages.json-home-client/2024-03-21.log python311Packages.json-home-client 0 -> 1 attrpath: python311Packages.json-home-client 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] Going to be running update for following packages: - python3.11-json-home-client-1.1.1 Press Enter key to continue... Running update for: - python3.11-json-home-client-1.1.1: UPDATING ... - python3.11-json-home-client-1.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.json-home-client 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 behdad-fonts, using log file: /var/log/nixpkgs-update/behdad-fonts/2024-03-21.log behdad-fonts 0.0.3 -> 1.0.0 https://github.com/font-store/BehdadFont/releases attrpath: behdad-fonts 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/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv building '/nix/store/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv'... trying https://github.com/font-store/BehdadFont/archive/v1.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/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/font-store/BehdadFont/archive/v1.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/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'behdad-fonts.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv /nix/store/9218g7zpqjlgn6sgy4alswf08nslkyqy-behdad-fonts-1.0.0.drv building '/nix/store/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv'... trying https://github.com/font-store/BehdadFont/archive/v1.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/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/font-store/BehdadFont/archive/v1.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/fnbf8wmq1x3yhkc3a4qhljhw5fv7ihpk-source.drv'. error: 1 dependencies of derivation '/nix/store/9218g7zpqjlgn6sgy4alswf08nslkyqy-behdad-fonts-1.0.0.drv' failed to build [result] Failed to update behdad-fonts 0.0.3 -> 1.0.0 https://github.com/font-store/BehdadFont/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.pycares, using log file: /var/log/nixpkgs-update/python311Packages.pycares/2024-03-21.log python311Packages.pycares 0 -> 1 attrpath: python311Packages.pycares 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] Going to be running update for following packages: - python3.11-pycares-4.4.0 Press Enter key to continue... Running update for: - python3.11-pycares-4.4.0: UPDATING ... - python3.11-pycares-4.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pycares 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 logmap, using log file: /var/log/nixpkgs-update/logmap/2024-03-21.log logmap 0 -> 1 attrpath: logmap 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] Going to be running update for following packages: - logmap-unstable-2021-12-15 Press Enter key to continue... Running update for: - logmap-unstable-2021-12-15: UPDATING ... - logmap-unstable-2021-12-15: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update logmap 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 das, using log file: /var/log/nixpkgs-update/das/2024-03-21.log das 0 -> 1 attrpath: das 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] Going to be running update for following packages: - das-1.0.3 Press Enter key to continue... Running update for: - das-1.0.3: UPDATING ... - das-1.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update das 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.algebraic-data-types, using log file: /var/log/nixpkgs-update/python311Packages.algebraic-data-types/2024-03-21.log python311Packages.algebraic-data-types 0 -> 1 attrpath: python311Packages.algebraic-data-types 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] Going to be running update for following packages: - python3.11-algebraic-data-types-0.2.1 Press Enter key to continue... Running update for: - python3.11-algebraic-data-types-0.2.1: UPDATING ... - python3.11-algebraic-data-types-0.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.algebraic-data-types 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 wmderlandc, using log file: /var/log/nixpkgs-update/wmderlandc/2024-03-21.log wmderlandc unstable-2020-07-17 -> 1.0.5 https://github.com/aesophor/wmderland/releases attrpath: wmderlandc 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/window-managers/wmderlandc/default.nix b/pkgs/applications/window-managers/wmderlandc/default.nix index 45170ab0d15a..e7804e99cbf5 100644 --- a/pkgs/applications/window-managers/wmderlandc/default.nix +++ b/pkgs/applications/window-managers/wmderlandc/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "wmderlandc"; - version = "unstable-2020-07-17"; + version = "1.0.5"; src = fetchFromGitHub { owner = "aesophor"; repo = "wmderland"; rev = "a40a3505dd735b401d937203ab6d8d1978307d72"; - sha256 = "0npmlnybblp82mfpinjbz7dhwqgpdqc1s63wc1zs8mlcs19pdh98"; + sha256 = "sha256-KMF2U9CMVqR/YHwYHRhu92EO2/lL2nhdFejStbyl9Vo="; }; sourceRoot = "${finalAttrs.src.name}/ipc-client"; Source url did not change. [result] Failed to update wmderlandc unstable-2020-07-17 -> 1.0.5 https://github.com/aesophor/wmderland/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 gazelle-origin, using log file: /var/log/nixpkgs-update/gazelle-origin/2024-03-21.log gazelle-origin 0 -> 1 attrpath: gazelle-origin 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] Going to be running update for following packages: - gazelle-origin-3.0.0 Press Enter key to continue... Running update for: - gazelle-origin-3.0.0: UPDATING ... - gazelle-origin-3.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update gazelle-origin 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.wagtail-factories, using log file: /var/log/nixpkgs-update/python311Packages.wagtail-factories/2024-03-21.log python311Packages.wagtail-factories 0 -> 1 attrpath: python311Packages.wagtail-factories 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] Going to be running update for following packages: - python3.11-wagtail-factories-4.1.0 Press Enter key to continue... Running update for: - python3.11-wagtail-factories-4.1.0: UPDATING ... - python3.11-wagtail-factories-4.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.wagtail-factories 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.xmltodict, using log file: /var/log/nixpkgs-update/python311Packages.xmltodict/2024-03-21.log python311Packages.xmltodict 0 -> 1 attrpath: python311Packages.xmltodict 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] Going to be running update for following packages: - python3.11-xmltodict-0.13.0 Press Enter key to continue... Running update for: - python3.11-xmltodict-0.13.0: UPDATING ... - python3.11-xmltodict-0.13.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.xmltodict 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.netmap, using log file: /var/log/nixpkgs-update/python311Packages.netmap/2024-03-21.log python311Packages.netmap 0 -> 1 attrpath: python311Packages.netmap 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] Going to be running update for following packages: - python3.11-netmap-0.7.0.2 Press Enter key to continue... Running update for: - python3.11-netmap-0.7.0.2: UPDATING ... - python3.11-netmap-0.7.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.netmap 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.mk, using log file: /var/log/nixpkgs-update/aspellDicts.mk/2024-03-21.log aspellDicts.mk 0 -> 1 attrpath: aspellDicts.mk 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] Going to be running update for following packages: - aspell-dict-mk-0.50-0 Press Enter key to continue... Running update for: - aspell-dict-mk-0.50-0: UPDATING ... - aspell-dict-mk-0.50-0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update aspellDicts.mk 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-21.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] 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-21.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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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 sbomnix, using log file: /var/log/nixpkgs-update/sbomnix/2024-03-21.log sbomnix 0 -> 1 attrpath: sbomnix 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] Going to be running update for following packages: - sbomnix-1.4.5 Press Enter key to continue... Running update for: - sbomnix-1.4.5: UPDATING ... - sbomnix-1.4.5: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/tools/security/sbomnix/default.nix b/pkgs/tools/security/sbomnix/default.nix index 2449573c080a..43e40bc351ed 100644 --- a/pkgs/tools/security/sbomnix/default.nix +++ b/pkgs/tools/security/sbomnix/default.nix @@ -20,13 +20,13 @@ python.pkgs.buildPythonApplication rec { pname = "sbomnix"; - version = "1.4.5"; + version = "1.5.0"; src = fetchFromGitHub { owner = "tiiuae"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-RxDFxVGivVBw2uhtzf231Q2HHTBFKSqGrknr2Es/ygM="; + hash = "sha256-C/oBWN7fLe68ObcJIVJbD77H1teRA2BiHAMmjn+dOdc="; }; makeWrapperArgs = [ 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 sbomnix Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . sbomnix Standard output: error: build log of 'sbomnix' is not available [result] Failed to update sbomnix 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-21.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] 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..8493121dc51c 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.1"; src = fetchPypi { inherit pname version; - hash = "sha256-omFFuM5D0tk0s8aCbXe5E84QXFKOsuSUyJCz41Jd3zM="; + hash = "sha256-QnwzpagXgNubnnV/BnX2XqIpLZpkKi0pHPtcrmzUaZE="; }; propagatedBuildInputs = [ param ]; 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 python311Packages.pyviz-comms nix build failed. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/_distutils/core.py", line 159, in setup dist.parse_config_files() File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/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/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 66, in apply_configuration config = read_configuration(filepath, True, ignore_option_errors, dist) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 131, in read_configuration return expand_configuration(asdict, root_dir, ignore_option_errors, dist) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 156, in expand_configuration return _ConfigExpander(config, root_dir, ignore_option_errors, dist).expand() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 204, in expand self._expand_all_dynamic(dist, package_dir) File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 242, in _expand_all_dynamic obtained_dynamic = { ^ File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 243, in field: self._obtain(dist, field, package_dir) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 292, in _obtain self._ensure_previously_set(dist, field) File "/nix/store/bvqadys5w6dallgim0y8y98h05b7kfn7-python3.11-setuptools-69.0.3/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", line 268, 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/v099hqvw5z87423p4hz1vfhzaqa07dii-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 lomiri.lomiri-ui-extras, using log file: /var/log/nixpkgs-update/lomiri.lomiri-ui-extras/2024-03-21.log lomiri.lomiri-ui-extras 0 -> 1 attrpath: lomiri.lomiri-ui-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] Going to be running update for following packages: - lomiri-ui-extras-0.6.3 Press Enter key to continue... Running update for: - lomiri-ui-extras-0.6.3: UPDATING ... - lomiri-ui-extras-0.6.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update lomiri.lomiri-ui-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.nunavut, using log file: /var/log/nixpkgs-update/python311Packages.nunavut/2024-03-21.log python311Packages.nunavut 0 -> 1 attrpath: python311Packages.nunavut 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] Going to be running update for following packages: - python3.11-nunavut-2.3.1 Press Enter key to continue... Running update for: - python3.11-nunavut-2.3.1: UPDATING ... - python3.11-nunavut-2.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nunavut 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.pyuca, using log file: /var/log/nixpkgs-update/python311Packages.pyuca/2024-03-21.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/aya2dplxfzi1vmk966m47svxhgafzk4l-packages.json.drv building '/nix/store/aya2dplxfzi1vmk966m47svxhgafzk4l-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 python311Packages.eduvpn-common, using log file: /var/log/nixpkgs-update/python311Packages.eduvpn-common/2024-03-21.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] 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 python311Packages.ncclient, using log file: /var/log/nixpkgs-update/python311Packages.ncclient/2024-03-21.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] 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 bzrtp, using log file: /var/log/nixpkgs-update/bzrtp/2024-03-21.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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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/qhpw32pz39y6i30b3vrbw5fw6zv5549f-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/qhpw32pz39y6i30b3vrbw5fw6zv5549f-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.MsQuality, using log file: /var/log/nixpkgs-update/rPackages.MsQuality/2024-03-21.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 obs-studio-plugins.obs-pipewire-audio-capture, using log file: /var/log/nixpkgs-update/obs-studio-plugins.obs-pipewire-audio-capture/2024-03-21.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 python311Packages.oscscreen, using log file: /var/log/nixpkgs-update/python311Packages.oscscreen/2024-03-21.log python311Packages.oscscreen 0 -> 1 attrpath: python311Packages.oscscreen 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] Going to be running update for following packages: - python3.11-oscscreen-unstable-2023-03-23 Press Enter key to continue... Running update for: - python3.11-oscscreen-unstable-2023-03-23: UPDATING ... - python3.11-oscscreen-unstable-2023-03-23: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.oscscreen 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.jishaku, using log file: /var/log/nixpkgs-update/python311Packages.jishaku/2024-03-21.log python311Packages.jishaku 0 -> 1 attrpath: python311Packages.jishaku 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/zh3ppgy77141spmgihnpvb25zvryhf39-packages.json.drv building '/nix/store/zh3ppgy77141spmgihnpvb25zvryhf39-packages.json.drv'... Going to be running update for following packages: - python3.11-jishaku-2.5.2 Press Enter key to continue... Running update for: - python3.11-jishaku-2.5.2: UPDATING ... - python3.11-jishaku-2.5.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.jishaku 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.flufl-bounce, using log file: /var/log/nixpkgs-update/python311Packages.flufl-bounce/2024-03-21.log python311Packages.flufl-bounce 0 -> 1 attrpath: python311Packages.flufl-bounce 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] Going to be running update for following packages: - python3.11-flufl-bounce-4.0 Press Enter key to continue... Running update for: - python3.11-flufl-bounce-4.0: UPDATING ... - python3.11-flufl-bounce-4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.flufl-bounce 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.rustworkx, using log file: /var/log/nixpkgs-update/python311Packages.rustworkx/2024-03-21.log python311Packages.rustworkx 0.13.1 -> 0.14.2 https://repology.org/project/python:rustworkx/versions attrpath: python311Packages.rustworkx 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] Going to be running update for following packages: - python3.11-rustworkx-0.13.1 Press Enter key to continue... Running update for: - python3.11-rustworkx-0.13.1: UPDATING ... - python3.11-rustworkx-0.13.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.rustworkx 0.13.1 -> 0.14.2 https://repology.org/project/python:rustworkx/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.gorilla, using log file: /var/log/nixpkgs-update/python311Packages.gorilla/2024-03-21.log python311Packages.gorilla 0 -> 1 attrpath: python311Packages.gorilla 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] Going to be running update for following packages: - python3.11-gorilla-0.4.0 Press Enter key to continue... Running update for: - python3.11-gorilla-0.4.0: UPDATING ... - python3.11-gorilla-0.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.gorilla 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.mousetrap, using log file: /var/log/nixpkgs-update/rPackages.mousetrap/2024-03-21.log rPackages.mousetrap 3.2.2 -> 3.2.3 https://repology.org/project/r:mousetrap/versions attrpath: rPackages.mousetrap 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.mousetrap 3.2.2 -> 3.2.3 https://repology.org/project/r:mousetrap/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.dvc-hdfs, using log file: /var/log/nixpkgs-update/python311Packages.dvc-hdfs/2024-03-21.log python311Packages.dvc-hdfs 0 -> 1 attrpath: python311Packages.dvc-hdfs 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] Going to be running update for following packages: - python3.11-dvc-hdfs-3.0.0 Press Enter key to continue... Running update for: - python3.11-dvc-hdfs-3.0.0: UPDATING ... - python3.11-dvc-hdfs-3.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dvc-hdfs 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.Mondrian, using log file: /var/log/nixpkgs-update/rPackages.Mondrian/2024-03-21.log rPackages.Mondrian 1.1.0 -> 1.1-1 https://repology.org/project/r:mondrian/versions attrpath: rPackages.Mondrian 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.Mondrian 1.1.0 -> 1.1-1 https://repology.org/project/r:mondrian/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.MCARtest, using log file: /var/log/nixpkgs-update/rPackages.MCARtest/2024-03-21.log rPackages.MCARtest 1.1 -> 1.2 https://repology.org/project/r:mcartest/versions attrpath: rPackages.MCARtest Checking auto update branch... No auto update branch exists Old version 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.MCARtest 1.1 -> 1.2 https://repology.org/project/r:mcartest/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.yardstick, using log file: /var/log/nixpkgs-update/rPackages.yardstick/2024-03-21.log rPackages.yardstick 1.2.0 -> 1.3.0 https://repology.org/project/r:yardstick/versions attrpath: rPackages.yardstick 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.yardstick 1.2.0 -> 1.3.0 https://repology.org/project/r:yardstick/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath elixir_1_10, using log file: /var/log/nixpkgs-update/elixir_1_10/2024-03-21.log elixir_1_10 1.10.4 -> 1.16.2 https://github.com/elixir-lang/elixir/releases attrpath: elixir_1_10 Checking auto update branch... No auto update branch exists Version in attr path elixir_1_10 not compatible with 1.16.2 [result] Failed to update elixir_1_10 1.10.4 -> 1.16.2 https://github.com/elixir-lang/elixir/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 rtags, using log file: /var/log/nixpkgs-update/rtags/2024-03-21.log rtags 2.38 -> 2.40 https://repology.org/project/rtags/versions attrpath: rtags 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 rtags 2.38 -> 2.40 https://repology.org/project/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 meshoptimizer, using log file: /var/log/nixpkgs-update/meshoptimizer/2024-03-21.log meshoptimizer 0 -> 1 attrpath: meshoptimizer 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/rdhm207crk9br43rb67jifdg4m05mc4z-packages.json.drv building '/nix/store/rdhm207crk9br43rb67jifdg4m05mc4z-packages.json.drv'... Going to be running update for following packages: - meshoptimizer-0.20 Press Enter key to continue... Running update for: - meshoptimizer-0.20: UPDATING ... - meshoptimizer-0.20: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update meshoptimizer 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 bsh, using log file: /var/log/nixpkgs-update/bsh/2024-03-21.log bsh 2.0b5.jar -> 2.1.1 https://repology.org/project/bsh/versions attrpath: bsh Checking auto update branch... No auto update branch exists Old version 2.0b5.jar" not present in master derivation file with contents: { lib, buildPackages ? { inherit stdenvNoCC; }, stdenvNoCC , curl # Note that `curl' may be `null', in case of the native stdenvNoCC. , cacert ? null }: let mirrors = import ./mirrors.nix; # Write the list of mirrors to a file that we can reuse between # fetchurl instantiations, instead of passing the mirrors to # fetchurl instantiations via environment variables. This makes the # resulting store derivations (.drv files) much smaller, which in # turn makes nix-env/nix-instantiate faster. mirrorsFile = buildPackages.stdenvNoCC.mkDerivation ({ name = "mirrors-list"; strictDeps = true; builder = ./write-mirror-list.sh; preferLocalBuild = true; } // mirrors); # Names of the master sites that are mirrored (i.e., "sourceforge", # "gnu", etc.). sites = builtins.attrNames mirrors; impureEnvVars = lib.fetchers.proxyImpureEnvVars ++ [ # This variable allows the user to pass additional options to curl "NIX_CURL_FLAGS" # This variable allows the user to override hashedMirrors from the # command-line. "NIX_HASHED_MIRRORS" # This variable allows overriding the timeout for connecting to # the hashed mirrors. "NIX_CONNECT_TIMEOUT" ] ++ (map (site: "NIX_MIRRORS_${site}") sites); in { # URL to fetch. url ? "" , # Alternatively, a list of URLs specifying alternative download # locations. They are tried in order. urls ? [] , # Additional curl options needed for the download to succeed. # Warning: Each space (no matter the escaping) will start a new argument. # If you wish to pass arguments with spaces, use `curlOptsList` curlOpts ? "" , # Additional curl options needed for the download to succeed. curlOptsList ? [] , # Name of the file. If empty, use the basename of `url' (or of the # first element of `urls'). name ? "" # for versioned downloads optionally take pname + version. , pname ? "" , version ? "" , # SRI hash. hash ? "" , # Legacy ways of specifying the hash. outputHash ? "" , outputHashAlgo ? "" , sha1 ? "" , sha256 ? "" , sha512 ? "" , recursiveHash ? false , # Shell code to build a netrc file for BASIC auth netrcPhase ? null , # Impure env vars (https://nixos.org/nix/manual/#sec-advanced-attributes) # needed for netrcPhase netrcImpureEnvVars ? [] , # Shell code executed after the file has been fetched # successfully. This can do things like check or transform the file. postFetch ? "" , # Whether to download to a temporary path rather than $out. Useful # in conjunction with postFetch. The location of the temporary file # is communicated to postFetch via $downloadedFile. downloadToTemp ? false , # If true, set executable bit on downloaded file executable ? false , # If set, don't download the file, but write a list of all possible # URLs (resulting from resolving mirror:// URLs) to $out. showURLs ? false , # Meta information, if any. meta ? {} # Passthru information, if any. , passthru ? {} # Doing the download on a remote machine just duplicates network # traffic, so don't do that by default , preferLocalBuild ? true # Additional packages needed as part of a fetch , nativeBuildInputs ? [ ] }: let urls_ = if urls != [] && url == "" then (if lib.isList urls then urls else throw "`urls` is not a list") else if urls == [] && url != "" then (if lib.isString url then [url] else throw "`url` is not a string") else throw "fetchurl requires either `url` or `urls` to be set"; hash_ = if with lib.lists; length (filter (s: s != "") [ hash outputHash sha1 sha256 sha512 ]) > 1 then throw "multiple hashes passed to fetchurl" else if hash != "" then { outputHashAlgo = null; outputHash = hash; } else if outputHash != "" then if outputHashAlgo != "" then { inherit outputHashAlgo outputHash; } else throw "fetchurl was passed outputHash without outputHashAlgo" else if sha512 != "" then { outputHashAlgo = "sha512"; outputHash = sha512; } else if sha256 != "" then { outputHashAlgo = "sha256"; outputHash = sha256; } else if sha1 != "" then { outputHashAlgo = "sha1"; outputHash = sha1; } else if cacert != null then { outputHashAlgo = "sha256"; outputHash = ""; } else throw "fetchurl requires a hash for fixed-output derivation: ${lib.concatStringsSep ", " urls_}"; in assert (lib.isList curlOpts) -> lib.warn '' fetchurl for ${toString (builtins.head urls_)}: curlOpts is a list (${lib.generators.toPretty { multiline = false; } curlOpts}), which is not supported anymore. - If you wish to get the same effect as before, for elements with spaces (even if escaped) to expand to multiple curl arguments, use a string argument instead: curlOpts = ${lib.strings.escapeNixString (toString curlOpts)}; - If you wish for each list element to be passed as a separate curl argument, allowing arguments to contain spaces, use curlOptsList instead: curlOptsList = [ ${lib.concatMapStringsSep " " lib.strings.escapeNixString curlOpts} ];'' true; stdenvNoCC.mkDerivation (( if (pname != "" && version != "") then { inherit pname version; } else { name = if showURLs then "urls" else if name != "" then name else baseNameOf (toString (builtins.head urls_)); } ) // { builder = ./builder.sh; nativeBuildInputs = [ curl ] ++ nativeBuildInputs; urls = urls_; # If set, prefer the content-addressable mirrors # (http://tarballs.nixos.org) over the original URLs. preferHashedMirrors = true; # New-style output content requirements. inherit (hash_) outputHashAlgo outputHash; SSL_CERT_FILE = if (hash_.outputHash == "" || hash_.outputHash == lib.fakeSha256 || hash_.outputHash == lib.fakeSha512 || hash_.outputHash == lib.fakeHash) then "${cacert}/etc/ssl/certs/ca-bundle.crt" else "/no-cert-file.crt"; outputHashMode = if (recursiveHash || executable) then "recursive" else "flat"; inherit curlOpts; curlOptsList = lib.escapeShellArgs curlOptsList; inherit showURLs mirrorsFile postFetch downloadToTemp executable; impureEnvVars = impureEnvVars ++ netrcImpureEnvVars; nixpkgsVersion = lib.trivial.release; inherit preferLocalBuild; postHook = if netrcPhase == null then null else '' ${netrcPhase} curlOpts="$curlOpts --netrc-file $PWD/netrc" ''; inherit meta; passthru = { inherit url; } // passthru; }) [result] Failed to update bsh 2.0b5.jar -> 2.1.1 https://repology.org/project/bsh/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.frilouz, using log file: /var/log/nixpkgs-update/python311Packages.frilouz/2024-03-21.log python311Packages.frilouz 0 -> 1 attrpath: python311Packages.frilouz 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] Going to be running update for following packages: - python3.11-frilouz-0.0.2 Press Enter key to continue... Running update for: - python3.11-frilouz-0.0.2: UPDATING ... - python3.11-frilouz-0.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.frilouz 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.nbdev, using log file: /var/log/nixpkgs-update/python311Packages.nbdev/2024-03-21.log python311Packages.nbdev 0 -> 1 attrpath: python311Packages.nbdev 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] Going to be running update for following packages: - python3.11-nbdev-2.3.13 Press Enter key to continue... Running update for: - python3.11-nbdev-2.3.13: UPDATING ... - python3.11-nbdev-2.3.13: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nbdev 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 gupnp-tools, using log file: /var/log/nixpkgs-update/gupnp-tools/2024-03-21.log gupnp-tools 0 -> 1 attrpath: gupnp-tools Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gupnp-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 cloud-init, using log file: /var/log/nixpkgs-update/cloud-init/2024-03-21.log cloud-init 0 -> 1 attrpath: cloud-init 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] Going to be running update for following packages: - cloud-init-23.4.4 Press Enter key to continue... Running update for: - cloud-init-23.4.4: UPDATING ... - cloud-init-23.4.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/tools/virtualization/cloud-init/default.nix b/pkgs/tools/virtualization/cloud-init/default.nix index dd6e6c483a33..e77ddd234d94 100644 --- a/pkgs/tools/virtualization/cloud-init/default.nix +++ b/pkgs/tools/virtualization/cloud-init/default.nix @@ -17,14 +17,14 @@ python3.pkgs.buildPythonApplication rec { pname = "cloud-init"; - version = "23.4.4"; + version = "24.1.2"; namePrefix = ""; src = fetchFromGitHub { owner = "canonical"; repo = "cloud-init"; rev = "refs/tags/${version}"; - hash = "sha256-imA3C2895W4vbBT9TsELT1H9QfNIxntNQLsniv+/FGg="; + hash = "sha256-zOTRfLchcbcK5YmyDlaQHnQGJU6Q331EwK4k66Tco4o="; }; patches = [ No auto update branch exists Old version 23.4.4" not present in staging derivation file with contents: { lib , nixosTests , cloud-utils , dmidecode , fetchFromGitHub , iproute2 , openssh , python3 , shadow , systemd , coreutils , gitUpdater , busybox , procps }: python3.pkgs.buildPythonApplication rec { pname = "cloud-init"; version = "24.1"; pyproject = true; namePrefix = ""; src = fetchFromGitHub { owner = "canonical"; repo = "cloud-init"; rev = "refs/tags/${version}"; hash = "sha256-gcqo8q3BxxqXU7WnoOnTgTJ3QHF9h/p20zTJUhsCL2A="; }; patches = [ ./0001-add-nixos-support.patch ]; prePatch = '' substituteInPlace setup.py \ --replace /lib/systemd $out/lib/systemd substituteInPlace cloudinit/net/networkd.py \ --replace '["/usr/sbin", "/bin"]' '["/usr/sbin", "/bin", "${iproute2}/bin", "${systemd}/bin"]' substituteInPlace tests/unittests/test_net_activators.py \ --replace '["/usr/sbin", "/bin"]' \ '["/usr/sbin", "/bin", "${iproute2}/bin", "${systemd}/bin"]' substituteInPlace tests/unittests/cmd/test_clean.py \ --replace "/bin/bash" "/bin/sh" ''; postInstall = '' install -D -m755 ./tools/write-ssh-key-fingerprints $out/libexec/write-ssh-key-fingerprints for i in $out/libexec/*; do wrapProgram $i --prefix PATH : "${lib.makeBinPath [ openssh ]}" done ''; build-system = with python3.pkgs; [ setuptools ]; propagatedBuildInputs = with python3.pkgs; [ configobj jinja2 jsonpatch jsonschema netifaces oauthlib pyserial pyyaml requests ]; nativeCheckInputs = with python3.pkgs; [ (pytestCheckHook.override { pytest = pytest_7; }) httpretty dmidecode # needed for tests; at runtime we rather want the setuid wrapper passlib shadow responses pytest-mock coreutils procps ]; makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ dmidecode cloud-utils.guest busybox ]}/bin" ]; disabledTests = [ # tries to create /var "test_dhclient_run_with_tmpdir" "test_dhcp_client_failover" # clears path and fails because mkdir is not found "test_path_env_gets_set_from_main" # tries to read from /etc/ca-certificates.conf while inside the sandbox "test_handler_ca_certs" "TestRemoveDefaultCaCerts" # Doesn't work in the sandbox "TestEphemeralDhcpNoNetworkSetup" "TestHasURLConnectivity" "TestReadFileOrUrl" "TestConsumeUserDataHttp" # Chef Omnibus "TestInstallChefOmnibus" # Disable failing VMware and PuppetAio tests "test_get_data_iso9660_with_network_config" "test_get_data_vmware_guestinfo_with_network_config" "test_get_host_info" "test_no_data_access_method" "test_install_with_collection" "test_install_with_custom_url" "test_install_with_default_arguments" "test_install_with_no_cleanup" "test_install_with_version" # https://github.com/canonical/cloud-init/issues/5002 "test_found_via_userdata" ]; preCheck = '' # TestTempUtils.test_mkdtemp_default_non_root does not like TMPDIR=/build export TMPDIR=/tmp ''; pythonImportsCheck = [ "cloudinit" ]; passthru = { tests = { inherit (nixosTests) cloud-init cloud-init-hostname; }; updateScript = gitUpdater { ignoredVersions = ".ubuntu.*"; }; }; meta = with lib; { homepage = "https://github.com/canonical/cloud-init"; description = "Provides configuration and customization of cloud instance"; changelog = "https://github.com/canonical/cloud-init/raw/${version}/ChangeLog"; license = with licenses; [ asl20 gpl3Plus ]; maintainers = with maintainers; [ illustris jfroche ]; platforms = platforms.all; }; } [result] Failed to update cloud-init 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.fuzzyfinder, using log file: /var/log/nixpkgs-update/python311Packages.fuzzyfinder/2024-03-21.log python311Packages.fuzzyfinder 0 -> 1 attrpath: python311Packages.fuzzyfinder 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] Going to be running update for following packages: - python3.11-fuzzyfinder-2.1.0 Press Enter key to continue... Running update for: - python3.11-fuzzyfinder-2.1.0: UPDATING ... - python3.11-fuzzyfinder-2.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.fuzzyfinder 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.picosvg, using log file: /var/log/nixpkgs-update/python311Packages.picosvg/2024-03-21.log python311Packages.picosvg 0 -> 1 attrpath: python311Packages.picosvg 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] Going to be running update for following packages: - python3.11-picosvg-0.22.1 Press Enter key to continue... Running update for: - python3.11-picosvg-0.22.1: UPDATING ... - python3.11-picosvg-0.22.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.picosvg 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.aiohappyeyeballs, using log file: /var/log/nixpkgs-update/python311Packages.aiohappyeyeballs/2024-03-21.log python311Packages.aiohappyeyeballs 0 -> 1 attrpath: python311Packages.aiohappyeyeballs 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] Going to be running update for following packages: - python3.11-aiohappyeyeballs-2.3.2 Press Enter key to continue... Running update for: - python3.11-aiohappyeyeballs-2.3.2: UPDATING ... - python3.11-aiohappyeyeballs-2.3.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aiohappyeyeballs 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.setuptools-lint, using log file: /var/log/nixpkgs-update/python311Packages.setuptools-lint/2024-03-21.log python311Packages.setuptools-lint 0 -> 1 attrpath: python311Packages.setuptools-lint 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] Going to be running update for following packages: - python3.11-setuptools-lint-0.6.0 Press Enter key to continue... Running update for: - python3.11-setuptools-lint-0.6.0: UPDATING ... - python3.11-setuptools-lint-0.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.setuptools-lint 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 ja2-stracciatella, using log file: /var/log/nixpkgs-update/ja2-stracciatella/2024-03-21.log ja2-stracciatella 0.17.0 -> 0.21.0 https://repology.org/project/ja2-stracciatella/versions attrpath: ja2-stracciatella Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command --extra-experimental-features flakes eval .#ja2-stracciatella.src --raw --apply "p: p.cargoHash" Standard error: warning: Git tree '/var/cache/nixpkgs-update/worker/worktree/ja2-stracciatella' is dirty error: attribute 'cargoHash' missing at «string»:1:4: 1| p: p.cargoHash | ^ Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command --extra-experimental-features flakes eval .#ja2-stracciatella.originalSrc --raw --apply "p: p.cargoHash" Standard error: warning: Git tree '/var/cache/nixpkgs-update/worker/worktree/ja2-stracciatella' is dirty error: flake 'git+file:///var/cache/nixpkgs-update/worker/worktree/ja2-stracciatella' does not provide attribute 'packages.x86_64-linux.ja2-stracciatella.originalSrc', 'legacyPackages.x86_64-linux.ja2-stracciatella.originalSrc' or 'ja2-stracciatella.originalSrc' Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command --extra-experimental-features flakes eval .#ja2-stracciatella --raw --apply "p: p.cargoHash" Standard error: warning: Git tree '/var/cache/nixpkgs-update/worker/worktree/ja2-stracciatella' is dirty error: attribute 'cargoHash' missing at «string»:1:4: 1| p: p.cargoHash | ^ [result] Failed to update ja2-stracciatella 0.17.0 -> 0.21.0 https://repology.org/project/ja2-stracciatella/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.spark-parser, using log file: /var/log/nixpkgs-update/python311Packages.spark-parser/2024-03-21.log python311Packages.spark-parser 0 -> 1 attrpath: python311Packages.spark-parser 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] Going to be running update for following packages: - python3.11-spark-parser-1.8.9 Press Enter key to continue... Running update for: - python3.11-spark-parser-1.8.9: UPDATING ... - python3.11-spark-parser-1.8.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.spark-parser 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-pidfile, using log file: /var/log/nixpkgs-update/python311Packages.python-pidfile/2024-03-21.log python311Packages.python-pidfile 0 -> 1 attrpath: python311Packages.python-pidfile 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] Going to be running update for following packages: - python3.11-python-pidfile-3.1.1 Press Enter key to continue... Running update for: - python3.11-python-pidfile-3.1.1: UPDATING ... - python3.11-python-pidfile-3.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-pidfile 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 u3-tool, using log file: /var/log/nixpkgs-update/u3-tool/2024-03-21.log u3-tool 0.3 -> 1.0 https://repology.org/project/u3-tool/versions attrpath: u3-tool 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/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv building '/nix/store/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv'... trying https://downloads.sourceforge.net/u3-tool/u3-tool-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/u3-tool/u3-tool-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/u3-tool/u3-tool-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 801 0 --:--:-- --:--:-- --:--:-- 802 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/u3-tool/u3-tool-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 227 0 --:--:-- --:--:-- --:--:-- 228 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/u3-tool/u3-tool-1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 308 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/u3-tool/u3-tool-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 u3-tool-1.0.tar.gz from any mirror error: builder for '/nix/store/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/u3-tool/u3-tool-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 227 0 --:--:-- --:--:-- --:--:-- 228 > 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/u3-tool/u3-tool-1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 308 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/u3-tool/u3-tool-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 u3-tool-1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'u3-tool.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv /nix/store/mc5rps2y24alfg6k6wwbyp6v9s6nxwg4-u3-tool-1.0.drv building '/nix/store/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv'... trying https://downloads.sourceforge.net/u3-tool/u3-tool-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/u3-tool/u3-tool-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/u3-tool/u3-tool-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 1275 0 --:--:-- --:--:-- --:--:-- 1277 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/u3-tool/u3-tool-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/u3-tool/u3-tool-1.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 308 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/u3-tool/u3-tool-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 u3-tool-1.0.tar.gz from any mirror error: builder for '/nix/store/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/u3-tool/u3-tool-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/u3-tool/u3-tool-1.0.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 308 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/u3-tool/u3-tool-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 u3-tool-1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/yzswvq2snyfrpj3mi9df28h7p5cj95v1-u3-tool-1.0.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/mc5rps2y24alfg6k6wwbyp6v9s6nxwg4-u3-tool-1.0.drv' failed to build [result] Failed to update u3-tool 0.3 -> 1.0 https://repology.org/project/u3-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 python311Packages.mattermostdriver, using log file: /var/log/nixpkgs-update/python311Packages.mattermostdriver/2024-03-21.log python311Packages.mattermostdriver 0 -> 1 attrpath: python311Packages.mattermostdriver 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] Going to be running update for following packages: - python3.11-mattermostdriver-7.3.2 Press Enter key to continue... Running update for: - python3.11-mattermostdriver-7.3.2: UPDATING ... - python3.11-mattermostdriver-7.3.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mattermostdriver 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.pyls-flake8, using log file: /var/log/nixpkgs-update/python311Packages.pyls-flake8/2024-03-21.log python311Packages.pyls-flake8 0 -> 1 attrpath: python311Packages.pyls-flake8 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] Going to be running update for following packages: - python3.11-pyls-flake8-0.4.0 Press Enter key to continue... Running update for: - python3.11-pyls-flake8-0.4.0: UPDATING ... - python3.11-pyls-flake8-0.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyls-flake8 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.youtube-transcript-api, using log file: /var/log/nixpkgs-update/python311Packages.youtube-transcript-api/2024-03-21.log python311Packages.youtube-transcript-api 0 -> 1 attrpath: python311Packages.youtube-transcript-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] Going to be running update for following packages: - python3.11-youtube-transcript-api-0.6.2 Press Enter key to continue... Running update for: - python3.11-youtube-transcript-api-0.6.2: UPDATING ... - python3.11-youtube-transcript-api-0.6.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.youtube-transcript-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 sysprof, using log file: /var/log/nixpkgs-update/sysprof/2024-03-21.log sysprof 0 -> 1 attrpath: sysprof Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update sysprof 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 atomic-swap, using log file: /var/log/nixpkgs-update/atomic-swap/2024-03-21.log atomic-swap 0 -> 1 attrpath: atomic-swap 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/a60874cpv8csr40pqnga2g0cksygjmpi-packages.json.drv building '/nix/store/a60874cpv8csr40pqnga2g0cksygjmpi-packages.json.drv'... Going to be running update for following packages: - atomic-swap-0.4.3 Press Enter key to continue... Running update for: - atomic-swap-0.4.3: UPDATING ... - atomic-swap-0.4.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update atomic-swap 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.pysolr, using log file: /var/log/nixpkgs-update/python311Packages.pysolr/2024-03-21.log python311Packages.pysolr 0 -> 1 attrpath: python311Packages.pysolr 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] Going to be running update for following packages: - python3.11-pysolr-3.9.0 Press Enter key to continue... Running update for: - python3.11-pysolr-3.9.0: UPDATING ... - python3.11-pysolr-3.9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pysolr 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 rshell, using log file: /var/log/nixpkgs-update/rshell/2024-03-21.log rshell 0 -> 1 attrpath: rshell 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] Going to be running update for following packages: - rshell-0.0.32 Press Enter key to continue... Running update for: - rshell-0.0.32: UPDATING ... - rshell-0.0.32: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update rshell 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.btsmarthub-devicelist, using log file: /var/log/nixpkgs-update/python311Packages.btsmarthub-devicelist/2024-03-21.log python311Packages.btsmarthub-devicelist 0 -> 1 attrpath: python311Packages.btsmarthub-devicelist 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] Going to be running update for following packages: - python3.11-btsmarthub-devicelist-0.2.3 Press Enter key to continue... Running update for: - python3.11-btsmarthub-devicelist-0.2.3: UPDATING ... - python3.11-btsmarthub-devicelist-0.2.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.btsmarthub-devicelist 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.typing-inspect, using log file: /var/log/nixpkgs-update/python311Packages.typing-inspect/2024-03-21.log python311Packages.typing-inspect 0 -> 1 attrpath: python311Packages.typing-inspect 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] Going to be running update for following packages: - python3.11-typing-inspect-0.9.0 Press Enter key to continue... Running update for: - python3.11-typing-inspect-0.9.0: UPDATING ... - python3.11-typing-inspect-0.9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.typing-inspect 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.bond-async, using log file: /var/log/nixpkgs-update/python311Packages.bond-async/2024-03-21.log python311Packages.bond-async 0 -> 1 attrpath: python311Packages.bond-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] Going to be running update for following packages: - python3.11-bond-async-0.2.1 Press Enter key to continue... Running update for: - python3.11-bond-async-0.2.1: UPDATING ... - python3.11-bond-async-0.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.bond-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 python311Packages.python-gnupg, using log file: /var/log/nixpkgs-update/python311Packages.python-gnupg/2024-03-21.log python311Packages.python-gnupg 0 -> 1 attrpath: python311Packages.python-gnupg 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] Going to be running update for following packages: - python3.11-python-gnupg-0.5.1 Press Enter key to continue... Running update for: - python3.11-python-gnupg-0.5.1: UPDATING ... - python3.11-python-gnupg-0.5.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-gnupg/default.nix b/pkgs/development/python-modules/python-gnupg/default.nix index 03290d2e99c5..95ebc2b954e8 100644 --- a/pkgs/development/python-modules/python-gnupg/default.nix +++ b/pkgs/development/python-modules/python-gnupg/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "python-gnupg"; - version = "0.5.1"; + version = "0.5.2"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-VnS61Ok4dsCw0xl+MU1/lC05AYvzHiuDP2eIpoE8P7g="; + hash = "sha256-AdgBOTHJ+j9Fgku+pwVMA9bhHyWKcufghuFo28uRhUw="; }; postPatch = '' No auto update branch exists Old version 0.5.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , setuptools , gnupg , pytestCheckHook }: buildPythonPackage rec { pname = "python-gnupg"; version = "0.5.2"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-AdgBOTHJ+j9Fgku+pwVMA9bhHyWKcufghuFo28uRhUw="; }; postPatch = '' substituteInPlace gnupg.py \ --replace "gpgbinary='gpg'" "gpgbinary='${gnupg}/bin/gpg'" substituteInPlace test_gnupg.py \ --replace "os.environ.get('GPGBINARY', 'gpg')" "os.environ.get('GPGBINARY', '${gnupg}/bin/gpg')" ''; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # network access "test_search_keys" ]; pythonImportsCheck = [ "gnupg" ]; meta = with lib; { description = "API for the GNU Privacy Guard (GnuPG)"; homepage = "https://github.com/vsajip/python-gnupg"; changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; license = licenses.bsd3; maintainers = with maintainers; [ copumpkin ]; }; } [result] Failed to update python311Packages.python-gnupg 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.flow-record, using log file: /var/log/nixpkgs-update/python311Packages.flow-record/2024-03-21.log python311Packages.flow-record 0 -> 1 attrpath: python311Packages.flow-record 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] Going to be running update for following packages: - python3.11-flow-record-3.14 Press Enter key to continue... Running update for: - python3.11-flow-record-3.14: UPDATING ... - python3.11-flow-record-3.14: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.flow-record 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 cassandra, using log file: /var/log/nixpkgs-update/cassandra/2024-03-21.log cassandra 0 -> 1 attrpath: cassandra 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 Going to be running update for following packages: - cassandra-4.1.2 Press Enter key to continue... Running update for: - cassandra-4.1.2: UPDATING ... - cassandra-4.1.2: ERROR --- SHOWING ERROR LOG FOR cassandra-4.1.2 ---------------------- + test -d pkgs -a -d nixos -a -d lib + cd pkgs/servers/nosql/cassandra + PATH=/nix/store/fmx804pc0bs1966xq5bb67kark2mww9r-git-2.43.2/bin:/nix/store/1q3yng4smvrbvffgifrbk78jgs3il9z1-gnupg-2.4.4/bin:/nix/store/032wiarm65zp3bh9ak3dz2sqcr3n8g70-bash-interactive-5.2p26/bin:/nix/store/3125ahv429pk8sxnfhj5l3f2ph7jllrk-patchelf-0.15.0/bin:/nix/store/qhpw32pz39y6i30b3vrbw5fw6zv5549f-gcc-wrapper-13.2.0/bin:/nix/store/7vc88ixc6yca2hwgszjk51dh23j3g2nr-gcc-13.2.0/bin:/nix/store/m9b4wcy4yyn5xcy394h74x7klb28nm2c-glibc-2.38-44-bin/bin:/nix/store/mb488rr560vq1xnl10hinnyfflcrd51n-coreutils-9.4/bin:/nix/store/7hhd9smnjspppk4k6n47bkw64fdbgbrz-binutils-wrapper-2.41/bin:/nix/store/bczmlm8brs93gp4lscwvc1dnn2ipymnc-binutils-2.41/bin:/nix/store/mb488rr560vq1xnl10hinnyfflcrd51n-coreutils-9.4/bin:/nix/store/rr5pqqck5f6fjkv7agwjyhaljvh27ncn-findutils-4.9.0/bin:/nix/store/n6i46dn14q3iq82gqgb5qkl74aqhwr77-diffutils-3.10/bin:/nix/store/q7kq0naays5251ihghw0ccsz39id7kk5-gnused-4.9/bin:/nix/store/320v66ili0mwnyrxj3dwbxm0z8ndkbw7-gnugrep-3.11/bin:/nix/store/sgpv5hm93gzkcm4s536nmkpag3q5d22s-gawk-5.2.2/bin:/nix/store/zq7c5lha3pzixhs8vgy0c0k2sn9s6kq9-gnutar-1.35/bin:/nix/store/p27jyrx9ghhxbl5j82114fdy50lr33z3-gzip-1.13/bin:/nix/store/f7i053lqqbppa3nx3nbmk6y46wy06shj-bzip2-1.0.8-bin/bin:/nix/store/3wwka0sn2h96cmqxyclj2vba26a5sk1s-gnumake-4.4.1/bin:/nix/store/4vzal97iq3dmrgycj8r0gflrh51p8w1s-bash-5.2p26/bin:/nix/store/yb3vxdqkdx672wl4hg92xf1zhykjjppr-patch-2.7.6/bin:/nix/store/p6iz6wa3lqwzf5nbihpv52zpp1ji9243-xz-5.6.0-bin/bin:/nix/store/pqraddz55s3qlsjxs71zwjchj0c4csfw-file-5.45/bin:/nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin:/nix/store/fmx804pc0bs1966xq5bb67kark2mww9r-git-2.43.2/bin:/nix/store/r81q2dy4jh3ywz2jhv76bfr4k9jd78ky-openssh-9.7p1/bin:/nix/store/320v66ili0mwnyrxj3dwbxm0z8ndkbw7-gnugrep-3.11/bin:/nix/store/q7kq0naays5251ihghw0ccsz39id7kk5-gnused-4.9/bin:/nix/store/dzs2chgxcwzpwplcw6wvv8nzkn01yr7y-curl-8.6.0-bin/bin:/nix/store/4xps2y8rs3yrihq0as5k532zwc14zx12-getent-glibc-2.38-44/bin:/nix/store/n0xa6ygwf2w5f8bbr0cvpg48lg4441nw-cachix-1.7-bin/bin:/nix/store/kdsvai12fazw64q372k3nvqvd2f9sf0y-apache-httpd-2.4.58/bin:/nix/store/5p1d05vnhga3jzrxrypwf84kkqqyz084-socat-1.8.0.0/bin:/nix/store/mb488rr560vq1xnl10hinnyfflcrd51n-coreutils-9.4/bin:/nix/store/rr5pqqck5f6fjkv7agwjyhaljvh27ncn-findutils-4.9.0/bin:/nix/store/320v66ili0mwnyrxj3dwbxm0z8ndkbw7-gnugrep-3.11/bin:/nix/store/q7kq0naays5251ihghw0ccsz39id7kk5-gnused-4.9/bin:/nix/store/klc3y2c97sc22wsv1cjwf4dfwcws095l-systemd-255.2/bin:/nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/sbin:/nix/store/fmx804pc0bs1966xq5bb67kark2mww9r-git-2.43.2/sbin:/nix/store/r81q2dy4jh3ywz2jhv76bfr4k9jd78ky-openssh-9.7p1/sbin:/nix/store/320v66ili0mwnyrxj3dwbxm0z8ndkbw7-gnugrep-3.11/sbin:/nix/store/q7kq0naays5251ihghw0ccsz39id7kk5-gnused-4.9/sbin:/nix/store/dzs2chgxcwzpwplcw6wvv8nzkn01yr7y-curl-8.6.0-bin/sbin:/nix/store/4xps2y8rs3yrihq0as5k532zwc14zx12-getent-glibc-2.38-44/sbin:/nix/store/n0xa6ygwf2w5f8bbr0cvpg48lg4441nw-cachix-1.7-bin/sbin:/nix/store/kdsvai12fazw64q372k3nvqvd2f9sf0y-apache-httpd-2.4.58/sbin:/nix/store/5p1d05vnhga3jzrxrypwf84kkqqyz084-socat-1.8.0.0/sbin:/nix/store/mb488rr560vq1xnl10hinnyfflcrd51n-coreutils-9.4/sbin:/nix/store/rr5pqqck5f6fjkv7agwjyhaljvh27ncn-findutils-4.9.0/sbin:/nix/store/320v66ili0mwnyrxj3dwbxm0z8ndkbw7-gnugrep-3.11/sbin:/nix/store/q7kq0naays5251ihghw0ccsz39id7kk5-gnused-4.9/sbin:/nix/store/klc3y2c97sc22wsv1cjwf4dfwcws095l-systemd-255.2/sbin ++ mktemp -d + tmp=/run/nixpkgs-update-worker/tmp.RQGvEa4a9W + trap cleanup EXIT + git ls-remote --tags https://github.com/apache/cassandra + awk '{ if (match($0, /refs.tags.cassandra-([0-9.]*)$/, m)) print m[1] }' + sort -V + tac ++ grep -E '^4' ++ head -n 1 + version=4.1.4 + path=cassandra/4.1.4/apache-cassandra-4.1.4-bin.tar.gz + curl https://downloads.apache.org/cassandra/4.1.4/apache-cassandra-4.1.4-bin.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 100 48.0M 100 48.0M 0 0 94.2M 0 --:--:-- --:--:-- --:--:-- 94.3M + curl https://downloads.apache.org/cassandra/4.1.4/apache-cassandra-4.1.4-bin.tar.gz.asc % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 833 100 833 0 0 14904 0 --:--:-- --:--:-- --:--:-- 15145 + for key in A4C465FEA0C552561A392A61E91335D77E3E87CB + gpg --trustdb-name /run/nixpkgs-update-worker/tmp.RQGvEa4a9W/trust.db --batch --recv-keys A4C465FEA0C552561A392A61E91335D77E3E87CB gpg: key E91335D77E3E87CB: "Michael Semb Wever " not changed gpg: Total number processed: 1 gpg: unchanged: 1 + echo A4C465FEA0C552561A392A61E91335D77E3E87CB:5: + gpg --trustdb-name /run/nixpkgs-update-worker/tmp.RQGvEa4a9W/trust.db --batch --import-ownertrust gpg: /run/nixpkgs-update-worker/tmp.RQGvEa4a9W/trust.db: trustdb created gpg: inserting ownertrust of 5 + gpg --trustdb-name /run/nixpkgs-update-worker/tmp.RQGvEa4a9W/trust.db --batch --verify --trust-model direct /run/nixpkgs-update-worker/tmp.RQGvEa4a9W/src.tar.gz.asc /run/nixpkgs-update-worker/tmp.RQGvEa4a9W/src.tar.gz gpg: Signature made Tue 23 Jan 2024 07:45:06 PM UTC gpg: using RSA key 7464AAD9068241C50BA6A26232F35CB2F546D93E gpg: Can't check signature: No public key + cleanup + rm -rf /run/nixpkgs-update-worker/tmp.RQGvEa4a9W --- SHOWING ERROR LOG FOR cassandra-4.1.2 ---------------------- The update script for cassandra-4.1.2 failed with exit code 2 [result] Failed to update cassandra 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.webtest-aiohttp, using log file: /var/log/nixpkgs-update/python311Packages.webtest-aiohttp/2024-03-21.log python311Packages.webtest-aiohttp 0 -> 1 attrpath: python311Packages.webtest-aiohttp 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] Going to be running update for following packages: - python3.11-webtest-aiohttp-2.0.0 Press Enter key to continue... Running update for: - python3.11-webtest-aiohttp-2.0.0: UPDATING ... - python3.11-webtest-aiohttp-2.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.webtest-aiohttp 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 sqlint, using log file: /var/log/nixpkgs-update/sqlint/2024-03-21.log sqlint 0 -> 1 attrpath: sqlint 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 sqlint 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 scons_3_1_2, using log file: /var/log/nixpkgs-update/scons_3_1_2/2024-03-21.log scons_3_1_2 0 -> 1 attrpath: scons_3_1_2 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/ln7kmqg6nl5hxj147n7kpafmv6gnvhn7-packages.json.drv building '/nix/store/ln7kmqg6nl5hxj147n7kpafmv6gnvhn7-packages.json.drv'... Going to be running update for following packages: - scons-3.1.2 Press Enter key to continue... Running update for: - scons-3.1.2: UPDATING ... - scons-3.1.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/tools/build-managers/scons/3.1.2.nix b/pkgs/development/tools/build-managers/scons/3.1.2.nix index 0bac0685b0d1..e2b0d840bd87 100644 --- a/pkgs/development/tools/build-managers/scons/3.1.2.nix +++ b/pkgs/development/tools/build-managers/scons/3.1.2.nix @@ -2,12 +2,12 @@ let pname = "scons"; - version = "3.1.2"; + version = "4.7.0"; src = fetchFromGitHub { owner = "Scons"; repo = "scons"; - rev = version; - hash = "sha256-C3U4N7+9vplzoJoevQe5Zeuz0TDmB6/miMwBJLzA3WA="; + rev = "refs/tags/${version}"; + hash = "sha256-7VzGuz9CAUF6MRCEpj5z1FkZD19/Ic+YBukYQocvkr0="; }; in python3.pkgs.buildPythonApplication { 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 scons_3_1_2 nix build failed. got build log for 'scons_3_1_2' from 'daemon' Sourcing python-remove-tests-dir-hook Sourcing python-catch-conflicts-hook.sh Sourcing python-remove-bin-bytecode-hook.sh Sourcing setuptools-build-hook Using setuptoolsBuildPhase Using setuptoolsShellHook Sourcing pypa-install-hook Using pypaInstallPhase Sourcing python-imports-check-hook.sh Using pythonImportsCheckPhase Sourcing python-namespaces-hook Sourcing python-catch-conflicts-hook.sh Sourcing setuptools-check-hook Using setuptoolsCheckPhase @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/q0jm2w0l6zdhf47fvc2y1h47g21l1x81-source source root is source setting SOURCE_DATE_EPOCH to timestamp 315619200 of file source/timings/js/plotter.js @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase python: can't open file '/build/source/bootstrap.py': [Errno 2] No such file or directory /nix/store/v099hqvw5z87423p4hz1vfhzaqa07dii-stdenv-linux/setup: line 131: pop_var_context: head of shell_variables not a function context [result] Failed to update scons_3_1_2 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.pyfreedompro, using log file: /var/log/nixpkgs-update/python311Packages.pyfreedompro/2024-03-21.log python311Packages.pyfreedompro 0 -> 1 attrpath: python311Packages.pyfreedompro 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] Going to be running update for following packages: - python3.11-pyfreedompro-1.1.0 Press Enter key to continue... Running update for: - python3.11-pyfreedompro-1.1.0: UPDATING ... - python3.11-pyfreedompro-1.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyfreedompro 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.rns, using log file: /var/log/nixpkgs-update/python311Packages.rns/2024-03-21.log python311Packages.rns 0 -> 1 attrpath: python311Packages.rns 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] Going to be running update for following packages: - python3.11-rns-0.7.3 Press Enter key to continue... Running update for: - python3.11-rns-0.7.3: UPDATING ... - python3.11-rns-0.7.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.rns 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.avidtools, using log file: /var/log/nixpkgs-update/python311Packages.avidtools/2024-03-21.log python311Packages.avidtools 0 -> 1 attrpath: python311Packages.avidtools 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] Going to be running update for following packages: - python3.11-avidtools-0.1.2 Press Enter key to continue... Running update for: - python3.11-avidtools-0.1.2: UPDATING ... - python3.11-avidtools-0.1.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.avidtools 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 regexploit, using log file: /var/log/nixpkgs-update/regexploit/2024-03-21.log regexploit 0 -> 1 attrpath: regexploit 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] Going to be running update for following packages: - regexploit-1.0.0 Press Enter key to continue... Running update for: - regexploit-1.0.0: UPDATING ... - regexploit-1.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update regexploit 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-21.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] 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-21.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-21.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] 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 deepin.dtkgui, using log file: /var/log/nixpkgs-update/deepin.dtkgui/2024-03-21.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.circuit-webhook, using log file: /var/log/nixpkgs-update/python311Packages.circuit-webhook/2024-03-21.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] 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 rPackages.parsermd, using log file: /var/log/nixpkgs-update/rPackages.parsermd/2024-03-21.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-21.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] 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-21.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] 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-21.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 python311Packages.zconfig, using log file: /var/log/nixpkgs-update/python311Packages.zconfig/2024-03-21.log python311Packages.zconfig 0 -> 1 attrpath: python311Packages.zconfig 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] Going to be running update for following packages: - python3.11-zconfig-4.0 Press Enter key to continue... Running update for: - python3.11-zconfig-4.0: UPDATING ... - python3.11-zconfig-4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.zconfig 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-multiselectfield, using log file: /var/log/nixpkgs-update/python311Packages.django-multiselectfield/2024-03-21.log python311Packages.django-multiselectfield 0 -> 1 attrpath: python311Packages.django-multiselectfield 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] Going to be running update for following packages: - python3.11-django-multiselectfield-0.1.12 Press Enter key to continue... Running update for: - python3.11-django-multiselectfield-0.1.12: UPDATING ... - python3.11-django-multiselectfield-0.1.12: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.django-multiselectfield 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-21.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 postgresql12JitPackages.timescaledb_toolkit, using log file: /var/log/nixpkgs-update/postgresql12JitPackages.timescaledb_toolkit/2024-03-21.log postgresql12JitPackages.timescaledb_toolkit 0 -> 1 attrpath: postgresql12JitPackages.timescaledb_toolkit 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/pazd325p40qrz5cmrnmcpx4k3bb5yab8-packages.json.drv building '/nix/store/pazd325p40qrz5cmrnmcpx4k3bb5yab8-packages.json.drv'... Going to be running update for following packages: - timescaledb_toolkit-1.18.0 Press Enter key to continue... Running update for: - timescaledb_toolkit-1.18.0: UPDATING ... - timescaledb_toolkit-1.18.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update postgresql12JitPackages.timescaledb_toolkit 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-openfiles, using log file: /var/log/nixpkgs-update/python311Packages.pytest-openfiles/2024-03-21.log python311Packages.pytest-openfiles 0 -> 1 attrpath: python311Packages.pytest-openfiles 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] Going to be running update for following packages: - python3.11-pytest-openfiles-0.5.0 Press Enter key to continue... Running update for: - python3.11-pytest-openfiles-0.5.0: UPDATING ... - python3.11-pytest-openfiles-0.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytest-openfiles 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.insegel, using log file: /var/log/nixpkgs-update/python311Packages.insegel/2024-03-21.log python311Packages.insegel 0 -> 1 attrpath: python311Packages.insegel 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] Going to be running update for following packages: - python3.11-insegel-1.3.1 Press Enter key to continue... Running update for: - python3.11-insegel-1.3.1: UPDATING ... - python3.11-insegel-1.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.insegel 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 libgnome-games-support, using log file: /var/log/nixpkgs-update/libgnome-games-support/2024-03-21.log libgnome-games-support 0 -> 1 attrpath: libgnome-games-support Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update libgnome-games-support 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.pylzma, using log file: /var/log/nixpkgs-update/python311Packages.pylzma/2024-03-21.log python311Packages.pylzma 0 -> 1 attrpath: python311Packages.pylzma 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] Going to be running update for following packages: - python3.11-pylzma-0.5.0 Press Enter key to continue... Running update for: - python3.11-pylzma-0.5.0: UPDATING ... - python3.11-pylzma-0.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pylzma 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-21.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] 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.zfec, using log file: /var/log/nixpkgs-update/python311Packages.zfec/2024-03-21.log python311Packages.zfec 0 -> 1 attrpath: python311Packages.zfec 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] Going to be running update for following packages: - python3.11-zfec-1.5.7.4 Press Enter key to continue... Running update for: - python3.11-zfec-1.5.7.4: UPDATING ... - python3.11-zfec-1.5.7.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.zfec 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.RSQLite, using log file: /var/log/nixpkgs-update/rPackages.RSQLite/2024-03-21.log rPackages.RSQLite 2.3.4 -> 2.3.5 https://repology.org/project/r:rsqlite/versions attrpath: rPackages.RSQLite Checking auto update branch... No auto update branch exists Old version 2.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.RSQLite 2.3.4 -> 2.3.5 https://repology.org/project/r:rsqlite/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-countries, using log file: /var/log/nixpkgs-update/python311Packages.django-countries/2024-03-21.log python311Packages.django-countries 0 -> 1 attrpath: python311Packages.django-countries 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] Going to be running update for following packages: - python3.11-django-countries-7.5.1 Press Enter key to continue... Running update for: - python3.11-django-countries-7.5.1: UPDATING ... - python3.11-django-countries-7.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.django-countries 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 aws-c-auth, using log file: /var/log/nixpkgs-update/aws-c-auth/2024-03-21.log aws-c-auth 0.7.10 -> 0.7.16 https://repology.org/project/aws-c-auth/versions attrpath: aws-c-auth Checking auto update branch... An auto update branch exists with message `aws-c-auth: 0.7.10 -> 0.7.16`. New version is 0.7.16. An auto update branch exists with an equal or greater version [result] Failed to update aws-c-auth 0.7.10 -> 0.7.16 https://repology.org/project/aws-c-auth/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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] 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 graph-cli, using log file: /var/log/nixpkgs-update/graph-cli/2024-03-21.log graph-cli 0 -> 1 attrpath: graph-cli 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] Going to be running update for following packages: - graph-cli-0.1.19 Press Enter key to continue... Running update for: - graph-cli-0.1.19: UPDATING ... - graph-cli-0.1.19: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update graph-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.raincloudy, using log file: /var/log/nixpkgs-update/python311Packages.raincloudy/2024-03-21.log python311Packages.raincloudy 0 -> 1 attrpath: python311Packages.raincloudy 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] Going to be running update for following packages: - python3.11-raincloudy-1.2.0 Press Enter key to continue... Running update for: - python3.11-raincloudy-1.2.0: UPDATING ... - python3.11-raincloudy-1.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.raincloudy 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-21.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] 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.mindsdb-evaluator, using log file: /var/log/nixpkgs-update/python311Packages.mindsdb-evaluator/2024-03-21.log python311Packages.mindsdb-evaluator 0 -> 1 attrpath: python311Packages.mindsdb-evaluator 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] Going to be running update for following packages: - python3.11-mindsdb-evaluator-0.0.11 Press Enter key to continue... Running update for: - python3.11-mindsdb-evaluator-0.0.11: UPDATING ... - python3.11-mindsdb-evaluator-0.0.11: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/mindsdb-evaluator/default.nix b/pkgs/development/python-modules/mindsdb-evaluator/default.nix index 7e18975095b0..9cc654911fc5 100644 --- a/pkgs/development/python-modules/mindsdb-evaluator/default.nix +++ b/pkgs/development/python-modules/mindsdb-evaluator/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "mindsdb-evaluator"; - version = "0.0.11"; + version = "0.0.12"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "mindsdb_evaluator"; inherit version; - hash = "sha256-pEfY+ocLEE8qcDjf6AzJxtXo1cqD2LhcBmlLjN0llTA="; + hash = "sha256-SqcBtoY7WZcorAaoyhqNDscf1MkSz0pE993mz1MRXCU="; }; nativeBuildInputs = [ An auto update branch exists with message `python311Packages.mindsdb-evaluator: 0.0.11 -> 0.0.12`. New version is 0.0.12. An auto update branch exists with an equal or greater version [result] Failed to update python311Packages.mindsdb-evaluator 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 a2jmidid, using log file: /var/log/nixpkgs-update/a2jmidid/2024-03-21.log a2jmidid 9 -> 12 https://repology.org/project/a2jmidid/versions attrpath: a2jmidid 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/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv building '/nix/store/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv'... trying https://github.com/linuxaudio/a2jmidid/archive/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 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/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/linuxaudio/a2jmidid/archive/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 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/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'a2jmidid.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv /nix/store/gsrzfssb8dx5ci2ksn6z0nm6629as13m-a2jmidid-12.drv building '/nix/store/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv'... trying https://github.com/linuxaudio/a2jmidid/archive/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 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/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv' failed with exit code 1; last 9 log lines: > > trying https://github.com/linuxaudio/a2jmidid/archive/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 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/1zdzzhd0jv7k9s6wi4b953mi48skga2p-source.drv'. error: 1 dependencies of derivation '/nix/store/gsrzfssb8dx5ci2ksn6z0nm6629as13m-a2jmidid-12.drv' failed to build [result] Failed to update a2jmidid 9 -> 12 https://repology.org/project/a2jmidid/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-machinelearningcompute, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-machinelearningcompute/2024-03-21.log python311Packages.azure-mgmt-machinelearningcompute 0 -> 1 attrpath: python311Packages.azure-mgmt-machinelearningcompute 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] Going to be running update for following packages: - python3.11-azure-mgmt-machinelearningcompute-0.4.1 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-machinelearningcompute-0.4.1: UPDATING ... - python3.11-azure-mgmt-machinelearningcompute-0.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-machinelearningcompute 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-21.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] 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 metis, using log file: /var/log/nixpkgs-update/metis/2024-03-21.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/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-metis-5.2.1.tar.gz.drv building '/nix/store/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-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/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-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/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-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/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-metis-5.2.1.tar.gz.drv /nix/store/q5is9937agahizr8v72mqbw6gam1kdw9-metis-5.2.1.drv building '/nix/store/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-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/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-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/ip5ipi4wyfin0mf2rghixrzk0agkq6dj-metis-5.2.1.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/q5is9937agahizr8v72mqbw6gam1kdw9-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-21.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] 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.Babel, using log file: /var/log/nixpkgs-update/python311Packages.Babel/2024-03-21.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] 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 llvmPackages.mlir, using log file: /var/log/nixpkgs-update/llvmPackages.mlir/2024-03-21.log llvmPackages.mlir 17.0.6 -> 18.1.1 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.1 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-21.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-21.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.tinygrad, using log file: /var/log/nixpkgs-update/python311Packages.tinygrad/2024-03-21.log python311Packages.tinygrad 0 -> 1 attrpath: python311Packages.tinygrad 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] Going to be running update for following packages: - python3.11-tinygrad-0.8.0 Press Enter key to continue... Running update for: - python3.11-tinygrad-0.8.0: UPDATING ... - python3.11-tinygrad-0.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.tinygrad 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 octopus, using log file: /var/log/nixpkgs-update/octopus/2024-03-21.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/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-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. make[1]: Leaving directory '/build/source' @nix { "action": "setPhase", "phase": "fixupPhase" } Running phase: fixupPhase shrinking RPATHs of ELF executables and libraries in /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0 shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/lib/libsymspg.so.0.0.0 shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/octopus shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-propagation_spectrum shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-harmonic-spectrum shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-casida_spectrum shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-vibrational_spectrum shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-infrared_spectrum shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-xyz-anim shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-center-geom shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-help shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-oscillator-strength shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-dielectric-function shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-photoelectron_spectrum shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-convert shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-local_multipoles shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-conductivity shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-floquet shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-spin_susceptibility shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-wannier90 shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-unfold shrinking /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/oct-tdtdm checking for references to /build/ in /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0... RPATH of binary /nix/store/m50pi4g2g064kfdlvg39nr6sbnbk5b96-octopus-14.0/bin/octopus contains a forbidden reference to /build/ /nix/store/v099hqvw5z87423p4hz1vfhzaqa07dii-stdenv-linux/setup: line 74: pop_var_context: head of shell_variables not a function context /nix/store/v099hqvw5z87423p4hz1vfhzaqa07dii-stdenv-linux/setup: line 1439: pop_var_context: head of shell_variables not a function context /nix/store/v099hqvw5z87423p4hz1vfhzaqa07dii-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 python312Packages.keystoneauth1, using log file: /var/log/nixpkgs-update/python312Packages.keystoneauth1/2024-03-21.log python312Packages.keystoneauth1 5.4.0 -> 5.6.0 https://repology.org/project/python:keystoneauth1/versions attrpath: python312Packages.keystoneauth1 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] Going to be running update for following packages: - python3.12-keystoneauth1-5.4.0 Press Enter key to continue... Running update for: - python3.12-keystoneauth1-5.4.0: UPDATING ... - python3.12-keystoneauth1-5.4.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/keystoneauth1/default.nix b/pkgs/development/python-modules/keystoneauth1/default.nix index c3e13d8b0fc4..412080ba846f 100644 --- a/pkgs/development/python-modules/keystoneauth1/default.nix +++ b/pkgs/development/python-modules/keystoneauth1/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pname = "keystoneauth1"; - version = "5.4.0"; + version = "5.6.0"; pyproject= true; src = fetchPypi { inherit pname version; - hash = "sha256-GsE0FRzrAuULaK143smCG/if5TvTb8hlhQHEewfL31M="; + hash = "sha256-7LfzR1nr4QPbNyqwlTwLghkp3dSX8zKqaz72yqz/7Yg="; }; postPatch = '' No auto update branch exists Old version 5.4.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , betamax , hacking , iso8601 , lxml , oauthlib , os-service-types , oslo-config , oslo-utils , pbr , pycodestyle , pyyaml , requests , requests-kerberos , requests-mock , setuptools , six , stestr , stevedore , testresources , testtools }: buildPythonPackage rec { pname = "keystoneauth1"; version = "5.6.0"; pyproject= true; src = fetchPypi { inherit pname version; hash = "sha256-7LfzR1nr4QPbNyqwlTwLghkp3dSX8zKqaz72yqz/7Yg="; }; postPatch = '' # only a small portion of the listed packages are actually needed for running the tests # so instead of removing them one by one remove everything rm test-requirements.txt ''; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ betamax iso8601 lxml oauthlib os-service-types pbr requests requests-kerberos six stevedore ]; nativeCheckInputs = [ hacking oslo-config oslo-utils pycodestyle pyyaml requests-mock stestr testresources testtools ]; # test_keystoneauth_betamax_fixture is incompatible with urllib3 2.0.0 # https://bugs.launchpad.net/keystoneauth/+bug/2020112 checkPhase = '' stestr run \ -E "keystoneauth1.tests.unit.test_betamax_fixture.TestBetamaxFixture.test_keystoneauth_betamax_fixture" ''; pythonImportsCheck = [ "keystoneauth1" ]; meta = with lib; { description = "Authentication Library for OpenStack Identity"; homepage = "https://github.com/openstack/keystoneauth"; license = licenses.asl20; maintainers = teams.openstack.members; }; } [result] Failed to update python312Packages.keystoneauth1 5.4.0 -> 5.6.0 https://repology.org/project/python:keystoneauth1/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-21.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/bjbzmjhg56ipyy540jxcw0yy6ry5r2wd-packages.json.drv building '/nix/store/bjbzmjhg56ipyy540jxcw0yy6ry5r2wd-packages.json.drv'... Going to be running update for following packages: - rust-analyzer-unwrapped-2024-03-11 Press Enter key to continue... Running update for: - rust-analyzer-unwrapped-2024-03-11: UPDATING ... - rust-analyzer-unwrapped-2024-03-11: 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 bfab5ca7eb52..04bb998ab551 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-11"; - cargoSha256 = "sha256-fhlz/Yo+UKeG/C5GENyDZYA8O15TF59HpKdUs04qMUE="; + version = "2024-03-18"; + cargoSha256 = "sha256-CZC90HtAuK66zXDCHam9YJet9C62psxkHeJ/+1vIjTg="; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-analyzer"; rev = version; - sha256 = "sha256-NfeDjQZUrVb9hzBPcqO19s0p/zSOatD5ZK+J7rZiE3c="; + sha256 = "sha256-Jd6pmXlwKk5uYcjyO/8BfbUVmx8g31Qfk7auI2IG66A="; }; cargoBuildFlags = [ "--bin" "rust-analyzer" "--bin" "rust-analyzer-proc-macro-srv" ]; No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/sk63qpw386vga50yggylg7pl29a95dqg-rust-analyzer-unwrapped-2024-03-18" [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 failed to build:
  • vscode-extensions.rust-lang.rust-analyzer
3 packages built:
  • ra-multiplex
  • rust-analyzer
  • rust-analyzer-unwrapped
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 rust-analyzer-unwrapped is: A modular compiler frontend for the Rust language meta.homepage for rust-analyzer-unwrapped is: https://rust-analyzer.github.io ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes - [Compare changes on GitHub](https://github.com/rust-lang/rust-analyzer/compare/2024-03-11...2024-03-18) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 2024-03-18 with grep in /nix/store/sk63qpw386vga50yggylg7pl29a95dqg-rust-analyzer-unwrapped-2024-03-18 - found 2024-03-18 in filename of file in /nix/store/sk63qpw386vga50yggylg7pl29a95dqg-rust-analyzer-unwrapped-2024-03-18 ---
Rebuild report (if merged into master) (click to expand) ``` 4 total rebuild path(s) 4 package rebuild(s) First fifty rebuilds by attrpath ra-multiplex rust-analyzer rust-analyzer-unwrapped vscode-extensions.rust-lang.rust-analyzer ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/sk63qpw386vga50yggylg7pl29a95dqg-rust-analyzer-unwrapped-2024-03-18 \ --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 rust-analyzer-unwrapped https://github.com/r-ryantm/nixpkgs/archive/efaacb0f1918429d69dd7cf0281b83573432d038.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/efaacb0f1918429d69dd7cf0281b83573432d038#rust-analyzer-unwrapped ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/sk63qpw386vga50yggylg7pl29a95dqg-rust-analyzer-unwrapped-2024-03-18 ls -la /nix/store/sk63qpw386vga50yggylg7pl29a95dqg-rust-analyzer-unwrapped-2024-03-18/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 failed to build:
  • vscode-extensions.rust-lang.rust-analyzer
3 packages built:
  • ra-multiplex
  • rust-analyzer
  • rust-analyzer-unwrapped
--- ###### Maintainer pings cc @oxalica 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/297630 [result] Success updating 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.recipe-scrapers, using log file: /var/log/nixpkgs-update/python311Packages.recipe-scrapers/2024-03-21.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] 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 For attrpath python311Packages.opentelemetry-exporter-otlp-proto-http, using log file: /var/log/nixpkgs-update/python311Packages.opentelemetry-exporter-otlp-proto-http/2024-03-21.log python311Packages.opentelemetry-exporter-otlp-proto-http 0 -> 1 attrpath: python311Packages.opentelemetry-exporter-otlp-proto-http 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] Going to be running update for following packages: - python3.11-opentelemetry-exporter-otlp-proto-http-1.23.0 Press Enter key to continue... Running update for: - python3.11-opentelemetry-exporter-otlp-proto-http-1.23.0: UPDATING ... - python3.11-opentelemetry-exporter-otlp-proto-http-1.23.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.opentelemetry-exporter-otlp-proto-http 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 pry, using log file: /var/log/nixpkgs-update/pry/2024-03-21.log pry 0 -> 1 attrpath: pry 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 pry 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 ratpoints, using log file: /var/log/nixpkgs-update/ratpoints/2024-03-21.log ratpoints 2.1.3.p4 -> 2.2.1 https://repology.org/project/ratpoints/versions attrpath: ratpoints 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 ratpoints 2.1.3.p4 -> 2.2.1 https://repology.org/project/ratpoints/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.matlink-gpapi, using log file: /var/log/nixpkgs-update/python311Packages.matlink-gpapi/2024-03-21.log python311Packages.matlink-gpapi 0 -> 1 attrpath: python311Packages.matlink-gpapi 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] Going to be running update for following packages: - python3.11-matlink-gpapi-0.4.4.5 Press Enter key to continue... Running update for: - python3.11-matlink-gpapi-0.4.4.5: UPDATING ... - python3.11-matlink-gpapi-0.4.4.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.matlink-gpapi 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.pyinfra, using log file: /var/log/nixpkgs-update/python311Packages.pyinfra/2024-03-21.log python311Packages.pyinfra 2.8 -> 2.9.2 https://repology.org/project/python:pyinfra/versions attrpath: python311Packages.pyinfra 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] Going to be running update for following packages: - python3.11-pyinfra-2.8 Press Enter key to continue... Running update for: - python3.11-pyinfra-2.8: UPDATING ... - python3.11-pyinfra-2.8: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pyinfra/default.nix b/pkgs/development/python-modules/pyinfra/default.nix index ae518fa5c16a..b7b7894432ab 100644 --- a/pkgs/development/python-modules/pyinfra/default.nix +++ b/pkgs/development/python-modules/pyinfra/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "pyinfra"; - version = "2.8"; + version = "2.9.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "Fizzadar"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-BYd2UYQJD/HsmpnlQjZvjfg17ShPuA3j4rtv6fTQK/A="; + hash = "sha256-lzbFwAg1aLCfBnSnqq4oVteArpkRBa7hU8V3vB5ODa8="; }; patches = [ No auto update branch exists Old version 2.8" not present in staging derivation file with contents: { lib , buildPythonPackage , click , colorama , configparser , distro , fetchFromGitHub , fetchpatch , gevent , jinja2 , paramiko , pytestCheckHook , python-dateutil , pythonOlder , pywinrm , pyyaml , setuptools }: buildPythonPackage rec { pname = "pyinfra"; version = "2.9.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "Fizzadar"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-lzbFwAg1aLCfBnSnqq4oVteArpkRBa7hU8V3vB5ODa8="; }; propagatedBuildInputs = [ click colorama configparser distro gevent jinja2 paramiko python-dateutil pywinrm pyyaml setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pyinfra" ]; disabledTests = [ # Test requires SSH binary "test_load_ssh_config" ]; meta = with lib; { description = "Python-based infrastructure automation"; mainProgram = "pyinfra"; longDescription = '' pyinfra automates/provisions/manages/deploys infrastructure. It can be used for ad-hoc command execution, service deployment, configuration management and more. ''; homepage = "https://pyinfra.com"; downloadPage = "https://pyinfra.com/Fizzadar/pyinfra/releases"; changelog = "https://github.com/Fizzadar/pyinfra/blob/v${version}/CHANGELOG.md"; maintainers = with maintainers; [ totoroot ]; license = licenses.mit; }; } [result] Failed to update python311Packages.pyinfra 2.8 -> 2.9.2 https://repology.org/project/python:pyinfra/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath tinyprog, using log file: /var/log/nixpkgs-update/tinyprog/2024-03-21.log tinyprog 0 -> 1 attrpath: tinyprog 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] Going to be running update for following packages: - tinyprog-1.0.24.dev114+g97f6353 Press Enter key to continue... Running update for: - tinyprog-1.0.24.dev114+g97f6353: UPDATING ... - tinyprog-1.0.24.dev114+g97f6353: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update tinyprog 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 dolphin-emu, using log file: /var/log/nixpkgs-update/dolphin-emu/2024-03-21.log dolphin-emu 0 -> 1 attrpath: dolphin-emu 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] Going to be running update for following packages: - dolphin-emu-5.0-21088 Press Enter key to continue... Running update for: - dolphin-emu-5.0-21088: UPDATING ... - dolphin-emu-5.0-21088: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update dolphin-emu 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 libtraceevent, using log file: /var/log/nixpkgs-update/libtraceevent/2024-03-21.log libtraceevent 0 -> 1 attrpath: libtraceevent 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] Going to be running update for following packages: - libtraceevent-1.8.2 Press Enter key to continue... Running update for: - libtraceevent-1.8.2: UPDATING ... - libtraceevent-1.8.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update libtraceevent 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 nu_scripts, using log file: /var/log/nixpkgs-update/nu_scripts/2024-03-21.log nu_scripts 0 -> 1 attrpath: nu_scripts 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/fk7bwpqfnsj2ic2i3w2p3y458mz7bsky-packages.json.drv building '/nix/store/fk7bwpqfnsj2ic2i3w2p3y458mz7bsky-packages.json.drv'... Going to be running update for following packages: - nu_scripts-unstable-2024-03-17 Press Enter key to continue... Running update for: - nu_scripts-unstable-2024-03-17: UPDATING ... - nu_scripts-unstable-2024-03-17: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/shells/nushell/nu_scripts/default.nix b/pkgs/shells/nushell/nu_scripts/default.nix index 87b46cb8e04c..dc36f5296813 100644 --- a/pkgs/shells/nushell/nu_scripts/default.nix +++ b/pkgs/shells/nushell/nu_scripts/default.nix @@ -6,13 +6,13 @@ stdenvNoCC.mkDerivation rec { pname = "nu_scripts"; - version = "unstable-2024-03-17"; + version = "unstable-2024-03-20"; src = fetchFromGitHub { owner = "nushell"; repo = pname; - rev = "7d662ad5c5e6cc33162034f6191f97394bdc9d6b"; - hash = "sha256-fJ05NC5N/90qLWuBR7RcrH5U4615MBAZEiVwg6JZp24="; + rev = "707cda345078553f3e878a100ca103a28f440705"; + hash = "sha256-pgihFkuPIjFTLYtVKaXA+NPUfs/8TpWoojpGyi5TLhY="; }; installPhase = '' No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/hx8acd6ld3900hvwjbh0b3w0yrhgfih9-nu_scripts-unstable-2024-03-20" [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:
  • nu_scripts
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 nu_scripts is: A place to share Nushell scripts with each other meta.homepage for nu_scripts is: https://github.com/nushell/nu_scripts ###### Updates performed - Ran passthru.UpdateScript ###### To inspect upstream changes - [Compare changes on GitHub](https://github.com/nushell/nu_scripts/compare/7d662ad5c5e6cc33162034f6191f97394bdc9d6b...707cda345078553f3e878a100ca103a28f440705) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found unstable-2024-03-20 in filename of file in /nix/store/hx8acd6ld3900hvwjbh0b3w0yrhgfih9-nu_scripts-unstable-2024-03-20 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath nu_scripts ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/hx8acd6ld3900hvwjbh0b3w0yrhgfih9-nu_scripts-unstable-2024-03-20 \ --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 nu_scripts https://github.com/r-ryantm/nixpkgs/archive/8674d015d199c72c2d1ff9bc0c50e71178f73b7a.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/8674d015d199c72c2d1ff9bc0c50e71178f73b7a#nu_scripts ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/hx8acd6ld3900hvwjbh0b3w0yrhgfih9-nu_scripts-unstable-2024-03-20 ls -la /nix/store/hx8acd6ld3900hvwjbh0b3w0yrhgfih9-nu_scripts-unstable-2024-03-20/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:
  • nu_scripts
--- ###### Maintainer pings cc @CardboardTurkey 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/297637 [result] Success updating nu_scripts 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.LinguaENWords2Nums 0.18 -> 0.19 https://repology.org/project/perl:lingua-en-words2nums/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-cognitiveservices, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-cognitiveservices/2024-03-21.log python311Packages.azure-mgmt-cognitiveservices 0 -> 1 attrpath: python311Packages.azure-mgmt-cognitiveservices 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] Going to be running update for following packages: - python3.11-azure-mgmt-cognitiveservices-13.5.0 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-cognitiveservices-13.5.0: UPDATING ... - python3.11-azure-mgmt-cognitiveservices-13.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-cognitiveservices 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.mock, using log file: /var/log/nixpkgs-update/python311Packages.mock/2024-03-21.log python311Packages.mock 0 -> 1 attrpath: python311Packages.mock 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] Going to be running update for following packages: - python3.11-mock-5.1.0 Press Enter key to continue... Running update for: - python3.11-mock-5.1.0: UPDATING ... - python3.11-mock-5.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mock 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 djview, using log file: /var/log/nixpkgs-update/djview/2024-03-21.log djview 4.10.6 -> 4.12 https://repology.org/project/djview/versions attrpath: djview Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - djview: 4.10.6 -> 4.12 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/267944" [result] Failed to update djview 4.10.6 -> 4.12 https://repology.org/project/djview/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.tensorrt, using log file: /var/log/nixpkgs-update/python311Packages.tensorrt/2024-03-21.log python311Packages.tensorrt 0 -> 1 attrpath: python311Packages.tensorrt 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] Going to be running update for following packages: - python3.11-tensorrt-8.6.1.6 Press Enter key to continue... Running update for: - python3.11-tensorrt-8.6.1.6: UPDATING ... - python3.11-tensorrt-8.6.1.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.tensorrt 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 radicale, using log file: /var/log/nixpkgs-update/radicale/2024-03-21.log radicale 0 -> 1 attrpath: radicale 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/7c5j58s8a5xvwc7wh2gkyqz15ig984kv-packages.json.drv building '/nix/store/7c5j58s8a5xvwc7wh2gkyqz15ig984kv-packages.json.drv'... Going to be running update for following packages: - radicale-3.1.9 Press Enter key to continue... Running update for: - radicale-3.1.9: UPDATING ... - radicale-3.1.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update radicale 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.type-infer, using log file: /var/log/nixpkgs-update/python311Packages.type-infer/2024-03-21.log python311Packages.type-infer 0 -> 1 attrpath: python311Packages.type-infer 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] Going to be running update for following packages: - python3.11-type-infer-0.0.17 Press Enter key to continue... Running update for: - python3.11-type-infer-0.0.17: UPDATING ... - python3.11-type-infer-0.0.17: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/type-infer/default.nix b/pkgs/development/python-modules/type-infer/default.nix index 7983ac8d29bf..1e1021503100 100644 --- a/pkgs/development/python-modules/type-infer/default.nix +++ b/pkgs/development/python-modules/type-infer/default.nix @@ -24,7 +24,7 @@ let in buildPythonPackage rec { pname = "type-infer"; - version = "0.0.17"; + version = "0.0.19"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -33,7 +33,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "type_infer"; inherit version; - hash = "sha256-2bPXJuGDXTVoYUP9IfwyRy8LbMT/ySoHDzuelrOq/DU="; + hash = "sha256-7fWRM776lAyOncp6WZDLH9ouVBhVvV23105xvhw8V24="; }; nativeBuildInputs = [ An auto update branch exists with message `python311Packages.type-infer: 0.0.17 -> 0.0.18`. New version is 0.0.19. The auto update branch does not match or exceed the new version. Old version 0.0.17" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , poetry-core , colorlog , dataclasses-json , langid , nltk , numpy , pandas , psutil , python-dateutil , scipy , toml , nltk-data , symlinkJoin }: let testNltkData = symlinkJoin { name = "nltk-test-data"; paths = [ nltk-data.punkt nltk-data.stopwords ]; }; in buildPythonPackage rec { pname = "type-infer"; version = "0.0.18"; format = "pyproject"; disabled = pythonOlder "3.8"; # using PyPI because the repo does not have tags or release branches src = fetchPypi { pname = "type_infer"; inherit version; hash = "sha256-nA5TlyHpCueFWqUggS7T/eKSLlffp0pIyGCouwXPZ28="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ colorlog dataclasses-json langid nltk numpy pandas psutil python-dateutil scipy toml ]; # PyPI package does not include tests doCheck = false; # Package import requires NLTK data to be downloaded # It is the only way to set NLTK_DATA environment variable, # so that it is available in pythonImportsCheck env.NLTK_DATA = testNltkData; pythonImportsCheck = [ "type_infer" ]; meta = with lib; { description = "Automated type inference for Machine Learning pipelines"; homepage = "https://pypi.org/project/type-infer/"; license = licenses.gpl3Only; maintainers = with maintainers; [ mbalatsko ]; }; } [result] Failed to update python311Packages.type-infer 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.minimock, using log file: /var/log/nixpkgs-update/python311Packages.minimock/2024-03-21.log python311Packages.minimock 0 -> 1 attrpath: python311Packages.minimock 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] Going to be running update for following packages: - python3.11-minimock-1.3.0 Press Enter key to continue... Running update for: - python3.11-minimock-1.3.0: UPDATING ... - python3.11-minimock-1.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.minimock 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.cert-chain-resolver, using log file: /var/log/nixpkgs-update/python311Packages.cert-chain-resolver/2024-03-21.log python311Packages.cert-chain-resolver 0 -> 1 attrpath: python311Packages.cert-chain-resolver 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] Going to be running update for following packages: - python3.11-cert-chain-resolver-1.1.0 Press Enter key to continue... Running update for: - python3.11-cert-chain-resolver-1.1.0: UPDATING ... - python3.11-cert-chain-resolver-1.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.cert-chain-resolver 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.dataclass-wizard, using log file: /var/log/nixpkgs-update/python311Packages.dataclass-wizard/2024-03-21.log python311Packages.dataclass-wizard 0.22.2 -> 0.22.3 https://repology.org/project/python:dataclass-wizard/versions attrpath: python311Packages.dataclass-wizard 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] Going to be running update for following packages: - python3.11-dataclass-wizard-0.22.2 Press Enter key to continue... Running update for: - python3.11-dataclass-wizard-0.22.2: UPDATING ... - python3.11-dataclass-wizard-0.22.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dataclass-wizard 0.22.2 -> 0.22.3 https://repology.org/project/python:dataclass-wizard/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libxmlxx, using log file: /var/log/nixpkgs-update/libxmlxx/2024-03-21.log libxmlxx 0 -> 1 attrpath: libxmlxx 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] Going to be running update for following packages: - libxml++-2.40.1 Press Enter key to continue... Running update for: - libxml++-2.40.1: UPDATING ... - libxml++-2.40.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update libxmlxx 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.dataclasses-json, using log file: /var/log/nixpkgs-update/python311Packages.dataclasses-json/2024-03-21.log python311Packages.dataclasses-json 0 -> 1 attrpath: python311Packages.dataclasses-json 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] Going to be running update for following packages: - python3.11-dataclasses-json-0.6.4 Press Enter key to continue... Running update for: - python3.11-dataclasses-json-0.6.4: UPDATING ... - python3.11-dataclasses-json-0.6.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dataclasses-json 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.georss-ign-sismologia-client, using log file: /var/log/nixpkgs-update/python311Packages.georss-ign-sismologia-client/2024-03-21.log python311Packages.georss-ign-sismologia-client 0 -> 1 attrpath: python311Packages.georss-ign-sismologia-client 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] Going to be running update for following packages: - python3.11-georss-ign-sismologia-client-0.8 Press Enter key to continue... Running update for: - python3.11-georss-ign-sismologia-client-0.8: UPDATING ... - python3.11-georss-ign-sismologia-client-0.8: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.georss-ign-sismologia-client 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 electrum-ltc, using log file: /var/log/nixpkgs-update/electrum-ltc/2024-03-21.log electrum-ltc 0 -> 1 attrpath: electrum-ltc 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] Going to be running update for following packages: - electrum-ltc-4.2.2.1 Press Enter key to continue... Running update for: - electrum-ltc-4.2.2.1: UPDATING ... - electrum-ltc-4.2.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update electrum-ltc 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 megasync, using log file: /var/log/nixpkgs-update/megasync/2024-03-21.log megasync 4.9.0.0 -> 5.2.0.0 https://repology.org/project/megasync/versions attrpath: megasync 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/megasync/default.nix b/pkgs/applications/misc/megasync/default.nix index 79800a6c46ee..149bcc9961f2 100644 --- a/pkgs/applications/misc/megasync/default.nix +++ b/pkgs/applications/misc/megasync/default.nix @@ -28,13 +28,13 @@ }: mkDerivation rec { pname = "megasync"; - version = "4.9.0.0"; + version = "5.2.0.0"; src = fetchFromGitHub { owner = "meganz"; repo = "MEGAsync"; rev = "v${version}_Linux"; - sha256 = "sha256-s0E8kJ4PJmhaxVcWPCyCk/KbcX4V3IESdZhSosPlZuM="; + sha256 = "sha256-zKDze+5nPxDC/dMjQQLJRGw29hRRBjcgbRUmr++5Kow="; fetchSubmodules = true; }; [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 megasync Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . megasync Standard output: error: … in the condition of the assert statement at /var/cache/nixpkgs-update/worker/worktree/megasync/lib/customisation.nix:268:17: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; … while evaluating the attribute 'handled' at /var/cache/nixpkgs-update/worker/worktree/megasync/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 ‘megasync-5.2.0.0’ in /var/cache/nixpkgs-update/worker/worktree/megasync/pkgs/applications/misc/megasync/default.nix:122 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) [ "megasync-5.2.0.0" ]; } 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 megasync 4.9.0.0 -> 5.2.0.0 https://repology.org/project/megasync/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.fastecdsa, using log file: /var/log/nixpkgs-update/python311Packages.fastecdsa/2024-03-21.log python311Packages.fastecdsa 0 -> 1 attrpath: python311Packages.fastecdsa 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] Going to be running update for following packages: - python3.11-fastecdsa-2.3.2 Press Enter key to continue... Running update for: - python3.11-fastecdsa-2.3.2: UPDATING ... - python3.11-fastecdsa-2.3.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.fastecdsa 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.cgen, using log file: /var/log/nixpkgs-update/python311Packages.cgen/2024-03-21.log python311Packages.cgen 0 -> 1 attrpath: python311Packages.cgen 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] Going to be running update for following packages: - python3.11-cgen-2020.1 Press Enter key to continue... Running update for: - python3.11-cgen-2020.1: UPDATING ... - python3.11-cgen-2020.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.cgen 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.psycopg2, using log file: /var/log/nixpkgs-update/python311Packages.psycopg2/2024-03-21.log python311Packages.psycopg2 0 -> 1 attrpath: python311Packages.psycopg2 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] Going to be running update for following packages: - python3.11-psycopg2-2.9.9 Press Enter key to continue... Running update for: - python3.11-psycopg2-2.9.9: UPDATING ... - python3.11-psycopg2-2.9.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.psycopg2 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.zope-configuration, using log file: /var/log/nixpkgs-update/python311Packages.zope-configuration/2024-03-21.log python311Packages.zope-configuration 0 -> 1 attrpath: python311Packages.zope-configuration 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] Going to be running update for following packages: - python3.11-zope-configuration-5.0 Press Enter key to continue... Running update for: - python3.11-zope-configuration-5.0: UPDATING ... - python3.11-zope-configuration-5.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/zope-configuration/default.nix b/pkgs/development/python-modules/zope-configuration/default.nix index 7a21ad79e29b..6a664daaf026 100644 --- a/pkgs/development/python-modules/zope-configuration/default.nix +++ b/pkgs/development/python-modules/zope-configuration/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "zope-configuration"; - version = "5.0"; + version = "5.0.1"; pyproject = true; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "zope.configuration"; inherit version; - hash = "sha256-I0tKGMcfazub9rzyJSZLrgFJrGjeoHsHLw9pmkzsJuc="; + hash = "sha256-81h36tXpmANjhdLdxGkZ6ryZjmmcBZh5ZPFxrY3ZJxs="; }; nativeBuildInputs = [ No auto update branch exists Old version 5.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder , setuptools , zope-i18nmessageid , zope-interface , zope-schema , pytestCheckHook , zope-testing , zope-testrunner , manuel }: buildPythonPackage rec { pname = "zope-configuration"; version = "5.0.1"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "zope.configuration"; inherit version; hash = "sha256-81h36tXpmANjhdLdxGkZ6ryZjmmcBZh5ZPFxrY3ZJxs="; }; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ manuel pytestCheckHook zope-testing zope-testrunner ]; propagatedBuildInputs = [ zope-i18nmessageid zope-interface zope-schema ]; # Need to investigate how to run the tests with zope-testrunner doCheck = false; pythonImportsCheck = [ "zope.configuration" ]; pythonNamespaces = [ "zope" ]; meta = with lib; { description = "Zope Configuration Markup Language (ZCML)"; homepage = "https://github.com/zopefoundation/zope.configuration"; changelog = "https://github.com/zopefoundation/zope.configuration/blob/${version}/CHANGES.rst"; license = licenses.zpl21; maintainers = with maintainers; [ goibhniu ]; }; } [result] Failed to update python311Packages.zope-configuration 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 obs-studio-plugins.obs-multi-rtmp, using log file: /var/log/nixpkgs-update/obs-studio-plugins.obs-multi-rtmp/2024-03-21.log obs-studio-plugins.obs-multi-rtmp 0.2.8.1-OBS28 -> 0.5.0.4 https://repology.org/project/obs-multi-rtmp/versions attrpath: obs-studio-plugins.obs-multi-rtmp 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/applications/video/obs-studio/plugins/obs-multi-rtmp/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-multi-rtmp/default.nix index e7c0d144b41d..07f1ce569c08 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-multi-rtmp/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-multi-rtmp/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "obs-multi-rtmp"; - version = "0.2.8.1-OBS28"; + version = "0.5.0.4"; src = fetchFromGitHub { owner = "sorayuki"; repo = "obs-multi-rtmp"; rev = version; - sha256 = "sha256-1W+c8Y0AmtKQmCIg8IDAaYYStQzDpZRuqw3vZEY5ncU="; + sha256 = "sha256-rpImKi09ARq0htDCj/xUzpTjjgUQx1Ww9yFIOiv+ZI8="; }; nativeBuildInputs = [ cmake ]; [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 obs-studio-plugins.obs-multi-rtmp nix build failed. got build log for 'obs-studio-plugins.obs-multi-rtmp' from 'daemon' @nix { "action": "setPhase", "phase": "qtPreHook" } Running phase: qtPreHook @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/rpknwxf11gs9wknkm2cph3mj3kjdsxlc-source source root is source @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/0m19vcpz37azcqrlr29s32pjnmq5wy71-fix-build.patch patching file CMakeLists.txt Hunk #1 FAILED at 65. Hunk #2 FAILED at 96. 2 out of 2 hunks FAILED -- saving rejects to file CMakeLists.txt.rej [result] Failed to update obs-studio-plugins.obs-multi-rtmp 0.2.8.1-OBS28 -> 0.5.0.4 https://repology.org/project/obs-multi-rtmp/versions [options] github_user: r-ryantm, pull_request: 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 python312Packages.sigstore-protobuf-specs 0.2.2 -> 0.3.0 https://repology.org/project/python:sigstore-protobuf-specs/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.olsrr, using log file: /var/log/nixpkgs-update/rPackages.olsrr/2024-03-21.log rPackages.olsrr 0.5.3 -> 0.6.0 https://repology.org/project/r:olsrr/versions attrpath: rPackages.olsrr 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.olsrr 0.5.3 -> 0.6.0 https://repology.org/project/r:olsrr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.clamp, using log file: /var/log/nixpkgs-update/rubyPackages.clamp/2024-03-21.log rubyPackages.clamp 0.6.5 -> 1.3.2 https://repology.org/project/ruby:clamp/versions attrpath: rubyPackages.clamp 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.clamp 0.6.5 -> 1.3.2 https://repology.org/project/ruby:clamp/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.divest, using log file: /var/log/nixpkgs-update/rPackages.divest/2024-03-21.log rPackages.divest 0.10.3 -> 1.0.0 https://repology.org/project/r:divest/versions attrpath: rPackages.divest Checking auto update branch... No auto update branch exists Old version 0.10.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.divest 0.10.3 -> 1.0.0 https://repology.org/project/r:divest/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.movecost, using log file: /var/log/nixpkgs-update/rPackages.movecost/2024-03-21.log rPackages.movecost 2.0 -> 2.1 https://repology.org/project/r:movecost/versions attrpath: rPackages.movecost 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.movecost 2.0 -> 2.1 https://repology.org/project/r:movecost/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath risor, using log file: /var/log/nixpkgs-update/risor/2024-03-21.log risor 1.3.2 -> 1.5.1 https://repology.org/project/risor/versions attrpath: risor 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-0NYvZhVkDX6WlKN4QFXyrNnEy0sjUQ1Us+iNEPIgNX0=" [golangModuleVersion] Replaced vendorHash with sha256-eW6eSZp5Msg/u50i1+S2KSzDws0Rq8JBY1Yxzq7/hVo= [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/development/interpreters/risor/default.nix b/pkgs/development/interpreters/risor/default.nix index 86c55107a44b..9cd56ba22e92 100644 --- a/pkgs/development/interpreters/risor/default.nix +++ b/pkgs/development/interpreters/risor/default.nix @@ -7,17 +7,17 @@ buildGoModule rec { pname = "risor"; - version = "1.3.2"; + version = "1.5.1"; src = fetchFromGitHub { owner = "risor-io"; repo = "risor"; rev = "v${version}"; - hash = "sha256-E4Huto3jvPziWEZqHwVBchZYDX/Tuq/TCBvoviin5UY="; + hash = "sha256-bGlJe61B5jMb1u81NvNMJDW+dNem6bNFT7DJYno5jCk="; }; proxyVendor = true; - vendorHash = "sha256-0NYvZhVkDX6WlKN4QFXyrNnEy0sjUQ1Us+iNEPIgNX0="; + vendorHash = "sha256-eW6eSZp5Msg/u50i1+S2KSzDws0Rq8JBY1Yxzq7/hVo="; subPackages = [ "cmd/risor" [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/2dnd2w6f0bb80pbfrlpqcwjjkrlv75wy-risor-1.5.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:
  • risor
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/risor/versions. meta.description for risor is: Fast and flexible scripting for Go developers and DevOps meta.homepage for risor is: https://github.com/risor-io/risor meta.changelog for risor is: https://github.com/risor-io/risor/releases/tag/v1.5.1 ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/risor-io/risor/releases/tag/v1.5.1) - [Compare changes on GitHub](https://github.com/risor-io/risor/compare/v1.3.2...v1.5.1) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.5.1 with grep in /nix/store/2dnd2w6f0bb80pbfrlpqcwjjkrlv75wy-risor-1.5.1 - found 1.5.1 in filename of file in /nix/store/2dnd2w6f0bb80pbfrlpqcwjjkrlv75wy-risor-1.5.1 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath risor ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/2dnd2w6f0bb80pbfrlpqcwjjkrlv75wy-risor-1.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 risor https://github.com/r-ryantm/nixpkgs/archive/4a1c0b92d878919ef8758fd25ed450688bedd248.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/4a1c0b92d878919ef8758fd25ed450688bedd248#risor ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/2dnd2w6f0bb80pbfrlpqcwjjkrlv75wy-risor-1.5.1 ls -la /nix/store/2dnd2w6f0bb80pbfrlpqcwjjkrlv75wy-risor-1.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)
1 package built:
  • risor
--- ###### Maintainer pings cc @figsoda 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/297647 [result] Success updating risor 1.3.2 -> 1.5.1 https://repology.org/project/risor/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath aws-sdk-cpp, using log file: /var/log/nixpkgs-update/aws-sdk-cpp/2024-03-21.log aws-sdk-cpp 1.11.207 -> 1.11.285 https://repology.org/project/aws-sdk-cpp/versions attrpath: aws-sdk-cpp 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/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix index 448139358e65..cf51fa1d6fab 100644 --- a/pkgs/development/libraries/aws-sdk-cpp/default.nix +++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix @@ -27,13 +27,13 @@ in stdenv.mkDerivation rec { pname = "aws-sdk-cpp"; - version = "1.11.207"; + version = "1.11.285"; src = fetchFromGitHub { owner = "aws"; repo = "aws-sdk-cpp"; rev = version; - sha256 = "sha256-IsPDQJo+TZ2noLefroiWl/Jx8fXmrmY73WHNRO41sik="; + sha256 = "sha256-d05yHdD8aM2erVV1v3SvJnt5UZ0DrDNMXvdcKH3gygM="; }; postPatch = '' [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 aws-sdk-cpp nix build failed. [ 31%] Linking CXX shared library libaws-cpp-sdk-route53domains.so [ 31%] Linking CXX shared library libaws-cpp-sdk-lex.so [ 31%] Built target aws-cpp-sdk-proton [ 31%] Built target aws-cpp-sdk-route53domains [ 31%] Built target aws-cpp-sdk-lex [ 31%] Linking CXX shared library libaws-cpp-sdk-rum.so [ 31%] Built target aws-cpp-sdk-rum [ 31%] Linking CXX shared library libaws-cpp-sdk-robomaker.so [ 31%] Built target aws-cpp-sdk-robomaker [ 31%] Linking CXX shared library libaws-cpp-sdk-redshift-serverless.so [ 31%] Built target aws-cpp-sdk-redshift-serverless [ 31%] Linking CXX shared library libaws-cpp-sdk-resiliencehub.so [ 31%] Built target aws-cpp-sdk-resiliencehub [ 31%] Linking CXX shared library libaws-cpp-sdk-route53resolver.so [ 31%] Built target aws-cpp-sdk-route53resolver [ 31%] Linking CXX shared library libaws-cpp-sdk-route53.so [ 31%] Built target aws-cpp-sdk-route53 [ 32%] Linking CXX shared library libaws-cpp-sdk-pinpoint.so [ 32%] Built target aws-cpp-sdk-pinpoint [ 32%] Linking CXX shared library libaws-cpp-sdk-rekognition.so [ 32%] Built target aws-cpp-sdk-rekognition [ 32%] Linking CXX shared library libaws-cpp-sdk-redshift.so [ 32%] Built target aws-cpp-sdk-redshift [ 32%] Linking CXX shared library libaws-cpp-sdk-s3.so [ 32%] Built target aws-cpp-sdk-s3 [ 32%] Linking CXX shared library libaws-cpp-sdk-quicksight.so [ 32%] Built target aws-cpp-sdk-quicksight [ 32%] Linking CXX shared library libaws-cpp-sdk-rds.so [ 32%] Built target aws-cpp-sdk-rds make: *** [Makefile:136: all] Error 2 [result] Failed to update aws-sdk-cpp 1.11.207 -> 1.11.285 https://repology.org/project/aws-sdk-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 ytree, using log file: /var/log/nixpkgs-update/ytree/2024-03-21.log ytree 2.06 -> 2.07 https://repology.org/project/ytree/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath cherrytree, using log file: /var/log/nixpkgs-update/cherrytree/2024-03-21.log cherrytree 1.0.4 -> 1.1.0 https://github.com/giuspen/cherrytree/releases attrpath: cherrytree 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/cherrytree/default.nix b/pkgs/applications/misc/cherrytree/default.nix index 74623b544af1..31a8ee716369 100644 --- a/pkgs/applications/misc/cherrytree/default.nix +++ b/pkgs/applications/misc/cherrytree/default.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { pname = "cherrytree"; - version = "1.0.4"; + version = "1.1.0"; src = fetchFromGitHub { owner = "giuspen"; repo = "cherrytree"; rev = "refs/tags/v${version}"; - hash = "sha256-SMx3a0pzhNahRzmenZwPQPCBgqoBGo9n3RcNcimNGBE="; + hash = "sha256-YoHaWc/olJrbV1A4hqDgYOLVlpHBrgI0x2TFr9oeqh4="; }; nativeBuildInputs = [ [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/avmfma0n4x4a1bs2xzszm5x9rsm5764r-cherrytree-1.1.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:
  • cherrytree
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/giuspen/cherrytree/releases. meta.description for cherrytree is: An hierarchical note taking application meta.homepage for cherrytree is: https://www.giuspen.com/cherrytree meta.changelog for cherrytree is: https://raw.githubusercontent.com/giuspen/cherrytree/1.1.0/changelog.txt ###### 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.1.0 with grep in /nix/store/avmfma0n4x4a1bs2xzszm5x9rsm5764r-cherrytree-1.1.0 - found 1.1.0 in filename of file in /nix/store/avmfma0n4x4a1bs2xzszm5x9rsm5764r-cherrytree-1.1.0 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath cherrytree ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/avmfma0n4x4a1bs2xzszm5x9rsm5764r-cherrytree-1.1.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 cherrytree https://github.com/r-ryantm/nixpkgs/archive/98685bbb5cac987b6b1673a57a19949e3c26037b.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/98685bbb5cac987b6b1673a57a19949e3c26037b#cherrytree ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/avmfma0n4x4a1bs2xzszm5x9rsm5764r-cherrytree-1.1.0 ls -la /nix/store/avmfma0n4x4a1bs2xzszm5x9rsm5764r-cherrytree-1.1.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:
  • cherrytree
--- ###### Maintainer pings https://api.github.com/repos/NixOS/nixpkgs/pulls/297665 [result] Success updating cherrytree 1.0.4 -> 1.1.0 https://github.com/giuspen/cherrytree/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.ocrmypdf, using log file: /var/log/nixpkgs-update/python312Packages.ocrmypdf/2024-03-21.log python312Packages.ocrmypdf 16.1.1 -> 16.1.2 https://github.com/ocrmypdf/OCRmyPDF/releases attrpath: python312Packages.ocrmypdf 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/kvf9xz4iq3smv1vylhp3kbl8q3wx91xl-packages.json.drv building '/nix/store/kvf9xz4iq3smv1vylhp3kbl8q3wx91xl-packages.json.drv'... Going to be running update for following packages: - python3.12-ocrmypdf-16.1.1 Press Enter key to continue... Running update for: - python3.12-ocrmypdf-16.1.1: UPDATING ... - python3.12-ocrmypdf-16.1.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ocrmypdf/default.nix b/pkgs/development/python-modules/ocrmypdf/default.nix index 3d73d3d19497..b23d2d94cfcd 100644 --- a/pkgs/development/python-modules/ocrmypdf/default.nix +++ b/pkgs/development/python-modules/ocrmypdf/default.nix @@ -30,7 +30,7 @@ buildPythonPackage rec { pname = "ocrmypdf"; - version = "16.1.1"; + version = "16.1.2"; disabled = pythonOlder "3.10"; @@ -39,14 +39,14 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "ocrmypdf"; repo = "OCRmyPDF"; - rev = "v${version}"; + rev = "refs/tags/v${version}"; # The content of .git_archival.txt is substituted upon tarball creation, # which creates indeterminism if master no longer points to the tag. # See https://github.com/ocrmypdf/OCRmyPDF/issues/841 postFetch = '' rm "$out/.git_archival.txt" ''; - hash = "sha256-XCYNz1QQodUEidz1+A79yleqOnOCK3zJ8mBIPU5JEQg="; + hash = "sha256-4OUMGkO9loIqqbaST10R7aqwow8X9ezdYwSSVqQPDjY="; }; patches = [ 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.ocrmypdf Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . python312Packages.ocrmypdf Standard output: error: build log of 'python312Packages.ocrmypdf' is not available [result] Failed to update python312Packages.ocrmypdf 16.1.1 -> 16.1.2 https://github.com/ocrmypdf/OCRmyPDF/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 ocamlPackages.linenoise, using log file: /var/log/nixpkgs-update/ocamlPackages.linenoise/2024-03-21.log ocamlPackages.linenoise 1.5 -> 1.5.1 https://github.com/fxfactorial/ocaml-linenoise/releases attrpath: ocamlPackages.linenoise 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/linenoise/default.nix b/pkgs/development/ocaml-modules/linenoise/default.nix index c096e2542396..96d00c28fce6 100644 --- a/pkgs/development/ocaml-modules/linenoise/default.nix +++ b/pkgs/development/ocaml-modules/linenoise/default.nix @@ -2,7 +2,7 @@ buildDunePackage rec { pname = "linenoise"; - version = "1.5"; + version = "1.5.1"; minimalOCamlVersion = "4.03"; @@ -10,7 +10,7 @@ buildDunePackage rec { owner = "fxfactorial"; repo = "ocaml-${pname}"; rev = "v${version}"; - sha256 = "sha256-ywcL5w65XXqInREalf0aDxvoEYA6tZW9eU5NGI/QETI="; + sha256 = "sha256-yWBWMbk1anXaF4hIakTOcRZFCYmxI0xG3bHFFOAyEDA="; }; propagatedBuildInputs = [ result ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/ldr3kksd3q6s5rmxfsyysy6v2bjllxpj-ocaml5.1.1-linenoise-1.5.1" 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 [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 built:
  • beluga
  • libbap
  • ligo
  • ocamlPackages.linenoise
  • ocamlPackages.ocamline
  • ocamlPackages.sail
  • python311Packages.bap
  • python311Packages.bap.dist
  • python312Packages.bap
  • python312Packages.bap.dist
  • sail-riscv-rv32
  • sail-riscv-rv64
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/fxfactorial/ocaml-linenoise/releases. meta.description for ocamlPackages.linenoise is: OCaml bindings to linenoise meta.homepage for ocamlPackages.linenoise is: https://github.com/fxfactorial/ocaml-linenoise ###### Updates performed - Version update ###### To inspect upstream changes - [Release on GitHub](https://github.com/ocaml-community/ocaml-linenoise/releases/tag/v1.5.1) - [Compare changes on GitHub](https://github.com/fxfactorial/ocaml-linenoise/compare/v1.5...v1.5.1) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.5.1 with grep in /nix/store/ldr3kksd3q6s5rmxfsyysy6v2bjllxpj-ocaml5.1.1-linenoise-1.5.1 - found 1.5.1 in filename of file in /nix/store/ldr3kksd3q6s5rmxfsyysy6v2bjllxpj-ocaml5.1.1-linenoise-1.5.1 ---
Rebuild report (if merged into master) (click to expand) ``` 7 total rebuild path(s) 7 package rebuild(s) First fifty rebuilds by attrpath beluga libbap ligo python311Packages.bap python312Packages.bap sail-riscv-rv32 sail-riscv-rv64 ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/ldr3kksd3q6s5rmxfsyysy6v2bjllxpj-ocaml5.1.1-linenoise-1.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 ocamlPackages.linenoise https://github.com/r-ryantm/nixpkgs/archive/ac94801b02226aa417cf29e3d5151f7307c188c3.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/ac94801b02226aa417cf29e3d5151f7307c188c3#ocamlPackages.linenoise ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/ldr3kksd3q6s5rmxfsyysy6v2bjllxpj-ocaml5.1.1-linenoise-1.5.1 ls -la /nix/store/ldr3kksd3q6s5rmxfsyysy6v2bjllxpj-ocaml5.1.1-linenoise-1.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)
12 packages built:
  • beluga
  • libbap
  • ligo
  • ocamlPackages.linenoise
  • ocamlPackages.ocamline
  • ocamlPackages.sail
  • python311Packages.bap
  • python311Packages.bap.dist
  • python312Packages.bap
  • python312Packages.bap.dist
  • sail-riscv-rv32
  • sail-riscv-rv64
--- ###### Maintainer pings cc @vbgl 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/297681 [result] Success updating ocamlPackages.linenoise 1.5 -> 1.5.1 https://github.com/fxfactorial/ocaml-linenoise/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.mypy-boto3-codepipeline, using log file: /var/log/nixpkgs-update/python311Packages.mypy-boto3-codepipeline/2024-03-21.log python311Packages.mypy-boto3-codepipeline 1.34.43 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases attrpath: python311Packages.mypy-boto3-codepipeline 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/afi3g8ip18hvfsxcnsr5mhb16zbm017n-packages.json.drv building '/nix/store/afi3g8ip18hvfsxcnsr5mhb16zbm017n-packages.json.drv'... Going to be running update for following packages: - python3.11-mypy-boto3-codepipeline-1.34.43 Press Enter key to continue... Running update for: - python3.11-mypy-boto3-codepipeline-1.34.43: UPDATING ... - python3.11-mypy-boto3-codepipeline-1.34.43: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mypy-boto3-codepipeline 1.34.43 -> 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 python312Packages.pyrdfa3, using log file: /var/log/nixpkgs-update/python312Packages.pyrdfa3/2024-03-21.log python312Packages.pyrdfa3 3.5.3 -> 3.6.2 https://github.com/prrvchr/pyrdfa3/releases attrpath: python312Packages.pyrdfa3 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/m5gyv3mbxny3ynxg2rh0bqf4rpalprin-packages.json.drv building '/nix/store/m5gyv3mbxny3ynxg2rh0bqf4rpalprin-packages.json.drv'... Going to be running update for following packages: - python3.12-pyrdfa3-3.6.2 Press Enter key to continue... Running update for: - python3.12-pyrdfa3-3.6.2: UPDATING ... - python3.12-pyrdfa3-3.6.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.pyrdfa3 3.5.3 -> 3.6.2 https://github.com/prrvchr/pyrdfa3/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.mypy-boto3-rds, using log file: /var/log/nixpkgs-update/python312Packages.mypy-boto3-rds/2024-03-21.log python312Packages.mypy-boto3-rds 1.34.65 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases attrpath: python312Packages.mypy-boto3-rds 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/h6d106w45jgl5qwnkdxz9d9w6ww6y6ll-packages.json.drv building '/nix/store/h6d106w45jgl5qwnkdxz9d9w6ww6y6ll-packages.json.drv'... Going to be running update for following packages: - python3.12-mypy-boto3-rds-1.34.65 Press Enter key to continue... Running update for: - python3.12-mypy-boto3-rds-1.34.65: UPDATING ... - python3.12-mypy-boto3-rds-1.34.65: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.mypy-boto3-rds 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 python312Packages.archspec, using log file: /var/log/nixpkgs-update/python312Packages.archspec/2024-03-21.log python312Packages.archspec 0.2.2 -> 0.2.3 https://github.com/archspec/archspec/releases attrpath: python312Packages.archspec 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/dzmavs53jlyaqxvwhx22hn111sk2s9nk-packages.json.drv building '/nix/store/dzmavs53jlyaqxvwhx22hn111sk2s9nk-packages.json.drv'... Going to be running update for following packages: - python3.12-archspec-0.2.3 Press Enter key to continue... Running update for: - python3.12-archspec-0.2.3: UPDATING ... - python3.12-archspec-0.2.3: ERROR --- SHOWING ERROR LOG FOR python3.12-archspec-0.2.3 ---------------------- INFO:root:Updating packages... Traceback (most recent call last): File "/nix/store/aahfbbagrzdsanbr4jibjrwj364986a1-update-python-libraries", line 596, in main() File "/nix/store/aahfbbagrzdsanbr4jibjrwj364986a1-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/aahfbbagrzdsanbr4jibjrwj364986a1-update-python-libraries", line 575, in results = list(filter(bool, p.map(lambda pkg: _update(pkg, target), packages))) ^^^^^^^^^^^^^^^^^^^^ File "/nix/store/aahfbbagrzdsanbr4jibjrwj364986a1-update-python-libraries", line 519, in _update return _update_package(path, target) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/aahfbbagrzdsanbr4jibjrwj364986a1-update-python-libraries", line 430, in _update_package new_version, new_sha256, prefix = FETCHERS[fetcher]( ^^^^^^^^^^^^^^^^^^ File "/nix/store/aahfbbagrzdsanbr4jibjrwj364986a1-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-archspec-0.2.3 ---------------------- The update script for python3.12-archspec-0.2.3 failed with exit code 1 [result] Failed to update python312Packages.archspec 0.2.2 -> 0.2.3 https://github.com/archspec/archspec/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.mocket, using log file: /var/log/nixpkgs-update/python312Packages.mocket/2024-03-21.log python312Packages.mocket 3.12.2 -> 3.12.4 https://github.com/mindflayer/python-mocket/releases attrpath: python312Packages.mocket 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/cxi1cnp67cxshjavmln3rr69ziish7b3-packages.json.drv building '/nix/store/cxi1cnp67cxshjavmln3rr69ziish7b3-packages.json.drv'... Going to be running update for following packages: - python3.12-mocket-3.12.4 Press Enter key to continue... Running update for: - python3.12-mocket-3.12.4: UPDATING ... - python3.12-mocket-3.12.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.mocket 3.12.2 -> 3.12.4 https://github.com/mindflayer/python-mocket/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.blobfile, using log file: /var/log/nixpkgs-update/python312Packages.blobfile/2024-03-21.log python312Packages.blobfile 2.0.2 -> 2.1.0 https://github.com/christopher-hesse/blobfile/releases attrpath: python312Packages.blobfile 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/1pdwjf82xfwsz1xkw3ljfg9sgxm07iqy-packages.json.drv building '/nix/store/1pdwjf82xfwsz1xkw3ljfg9sgxm07iqy-packages.json.drv'... Going to be running update for following packages: - python3.12-blobfile-2.1.0 Press Enter key to continue... Running update for: - python3.12-blobfile-2.1.0: UPDATING ... - python3.12-blobfile-2.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.blobfile 2.0.2 -> 2.1.0 https://github.com/christopher-hesse/blobfile/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.rtp, using log file: /var/log/nixpkgs-update/python312Packages.rtp/2024-03-21.log python312Packages.rtp 0.0.3 -> 0.0.4 https://github.com/bbc/rd-apmm-python-lib-rtp/releases attrpath: python312Packages.rtp 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/h2babfynvnfc8ksw5f3wpas2bhgg1x31-packages.json.drv building '/nix/store/h2babfynvnfc8ksw5f3wpas2bhgg1x31-packages.json.drv'... Going to be running update for following packages: - python3.12-rtp-0.0.3 Press Enter key to continue... Running update for: - python3.12-rtp-0.0.3: UPDATING ... - python3.12-rtp-0.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.rtp 0.0.3 -> 0.0.4 https://github.com/bbc/rd-apmm-python-lib-rtp/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.mypy-boto3-mediaconnect, using log file: /var/log/nixpkgs-update/python311Packages.mypy-boto3-mediaconnect/2024-03-21.log python311Packages.mypy-boto3-mediaconnect 1.34.7 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases attrpath: python311Packages.mypy-boto3-mediaconnect 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/31bbmfz2pal5bh4y3pna9l4aqsbkaj1h-packages.json.drv building '/nix/store/31bbmfz2pal5bh4y3pna9l4aqsbkaj1h-packages.json.drv'... Going to be running update for following packages: - python3.11-mypy-boto3-mediaconnect-1.34.7 Press Enter key to continue... Running update for: - python3.11-mypy-boto3-mediaconnect-1.34.7: UPDATING ... - python3.11-mypy-boto3-mediaconnect-1.34.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mypy-boto3-mediaconnect 1.34.7 -> 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 python311Packages.bootstrap.build, using log file: /var/log/nixpkgs-update/python311Packages.bootstrap.build/2024-03-21.log python311Packages.bootstrap.build 1.0.3 -> 1.1.1 https://github.com/pypa/build/releases attrpath: python311Packages.bootstrap.build Checking auto update branch... No auto update branch exists Old version 1.0.3" not present in master derivation file with contents: { lib , stdenv , build , buildPythonPackage , fetchFromGitHub , flit-core , filelock , packaging , pyproject-hooks , pytest-mock , pytest-rerunfailures , pytest-xdist , pytestCheckHook , pythonOlder , setuptools , tomli , wheel }: buildPythonPackage rec { pname = "build"; version = "1.1.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "pypa"; repo = "build"; rev = "refs/tags/${version}"; hash = "sha256-SGWpm+AGIfqKMpDfmz2aMYmcs+XVREbHIXSuU4R7U/k="; }; postPatch = '' # not strictly required, causes circular dependency cycle sed -i '/importlib-metadata >= 4.6/d' pyproject.toml ''; nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ packaging pyproject-hooks ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; # We need to disable tests because this package is part of the bootstrap chain # and its test dependencies cannot be built yet when this is being built. doCheck = false; passthru.tests = { pytest = buildPythonPackage { pname = "${pname}-pytest"; inherit src version; format = "other"; dontBuild = true; dontInstall = true; nativeCheckInputs = [ build filelock pytest-mock pytest-rerunfailures pytest-xdist pytestCheckHook setuptools wheel ]; pytestFlagsArray = [ "-W" "ignore::DeprecationWarning" ]; __darwinAllowLocalNetworking = true; disabledTests = [ # Tests often fail with StopIteration "test_isolat" "test_default_pip_is_never_too_old" "test_build" "test_with_get_requires" "test_init" "test_output" "test_wheel_metadata" ] ++ lib.optionals stdenv.isDarwin [ # Expects Apple's Python and its quirks "test_can_get_venv_paths_with_conflicting_default_scheme" ]; }; }; pythonImportsCheck = [ "build" ]; meta = with lib; { mainProgram = "pyproject-build"; description = "Simple, correct PEP517 package builder"; longDescription = '' build will invoke the PEP 517 hooks to build a distribution package. It is a simple build tool and does not perform any dependency management. ''; homepage = "https://github.com/pypa/build"; changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst"; license = licenses.mit; maintainers = teams.python.members ++ [ maintainers.fab ]; }; } [result] Failed to update python311Packages.bootstrap.build 1.0.3 -> 1.1.1 https://github.com/pypa/build/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.llama-index-embeddings-gemini, using log file: /var/log/nixpkgs-update/python311Packages.llama-index-embeddings-gemini/2024-03-21.log python311Packages.llama-index-embeddings-gemini 0.1.3 -> 0.10.20 https://github.com/run-llama/llama_index/releases attrpath: python311Packages.llama-index-embeddings-gemini 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/s9439n08czgfksjk40dmvv01c5d9fhv1-packages.json.drv building '/nix/store/s9439n08czgfksjk40dmvv01c5d9fhv1-packages.json.drv'... Going to be running update for following packages: - python3.11-llama-index-embeddings-gemini-0.1.3 Press Enter key to continue... Running update for: - python3.11-llama-index-embeddings-gemini-0.1.3: UPDATING ... - python3.11-llama-index-embeddings-gemini-0.1.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.llama-index-embeddings-gemini 0.1.3 -> 0.10.20 https://github.com/run-llama/llama_index/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.llama-index-readers-weather, using log file: /var/log/nixpkgs-update/python311Packages.llama-index-readers-weather/2024-03-21.log python311Packages.llama-index-readers-weather 0.1.4 -> 0.10.20 https://github.com/run-llama/llama_index/releases attrpath: python311Packages.llama-index-readers-weather 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/mxy6xj3p5zk1bgcafw9rlyf280lxjj7g-packages.json.drv building '/nix/store/mxy6xj3p5zk1bgcafw9rlyf280lxjj7g-packages.json.drv'... Going to be running update for following packages: - python3.11-llama-index-readers-weather-0.1.4 Press Enter key to continue... Running update for: - python3.11-llama-index-readers-weather-0.1.4: UPDATING ... - python3.11-llama-index-readers-weather-0.1.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.llama-index-readers-weather 0.1.4 -> 0.10.20 https://github.com/run-llama/llama_index/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.chromadb, using log file: /var/log/nixpkgs-update/python312Packages.chromadb/2024-03-21.log python312Packages.chromadb 0.4.23 -> 0.4.24 https://github.com/chroma-core/chroma/releases attrpath: python312Packages.chromadb 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/v8v7smzvyij1m5cisnkkvn3aql1lwcfz-packages.json.drv building '/nix/store/v8v7smzvyij1m5cisnkkvn3aql1lwcfz-packages.json.drv'... Going to be running update for following packages: - python3.12-chromadb-0.4.23 Press Enter key to continue... Running update for: - python3.12-chromadb-0.4.23: UPDATING ... - python3.12-chromadb-0.4.23: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.chromadb 0.4.23 -> 0.4.24 https://github.com/chroma-core/chroma/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.llama-index-readers-weather, using log file: /var/log/nixpkgs-update/python312Packages.llama-index-readers-weather/2024-03-21.log python312Packages.llama-index-readers-weather 0.1.4 -> 0.10.20 https://github.com/run-llama/llama_index/releases attrpath: python312Packages.llama-index-readers-weather 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/cwsp6g8xq0py8l90gd9kwqgbi1ay02jl-packages.json.drv building '/nix/store/cwsp6g8xq0py8l90gd9kwqgbi1ay02jl-packages.json.drv'... Going to be running update for following packages: - python3.12-llama-index-readers-weather-0.1.4 Press Enter key to continue... Running update for: - python3.12-llama-index-readers-weather-0.1.4: UPDATING ... - python3.12-llama-index-readers-weather-0.1.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.llama-index-readers-weather 0.1.4 -> 0.10.20 https://github.com/run-llama/llama_index/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.mypy-boto3-mediaconvert, using log file: /var/log/nixpkgs-update/python312Packages.mypy-boto3-mediaconvert/2024-03-21.log python312Packages.mypy-boto3-mediaconvert 1.34.33 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases attrpath: python312Packages.mypy-boto3-mediaconvert 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/fys77h9k8gw3sx1yc19zhc3h8xmyj1sd-packages.json.drv building '/nix/store/fys77h9k8gw3sx1yc19zhc3h8xmyj1sd-packages.json.drv'... Going to be running update for following packages: - python3.12-mypy-boto3-mediaconvert-1.34.33 Press Enter key to continue... Running update for: - python3.12-mypy-boto3-mediaconvert-1.34.33: UPDATING ... - python3.12-mypy-boto3-mediaconvert-1.34.33: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.mypy-boto3-mediaconvert 1.34.33 -> 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 python312Packages.hdate, using log file: /var/log/nixpkgs-update/python312Packages.hdate/2024-03-21.log python312Packages.hdate 0.10.4 -> 0.10.8 https://github.com/py-libhdate/py-libhdate/releases attrpath: python312Packages.hdate 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/pn2y3lacv4ilsbbjh6hf96xc4r22ndg0-packages.json.drv building '/nix/store/pn2y3lacv4ilsbbjh6hf96xc4r22ndg0-packages.json.drv'... Going to be running update for following packages: - python3.12-hdate-0.10.4 Press Enter key to continue... Running update for: - python3.12-hdate-0.10.4: UPDATING ... - python3.12-hdate-0.10.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/hdate/default.nix b/pkgs/development/python-modules/hdate/default.nix index 3c45b7ff08d6..979bb5a1395b 100644 --- a/pkgs/development/python-modules/hdate/default.nix +++ b/pkgs/development/python-modules/hdate/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "hdate"; - version = "0.10.4"; + version = "0.10.8"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "py-libhdate"; repo = "py-libhdate"; rev = "refs/tags/v${version}"; - hash = "sha256-NF2ZA9ruW7sL2tLY11VAtyPRxGg2o5/mpv3ZsH/Zxb8="; + hash = "sha256-SANCZl+1ghUuuxZAl6oycvo7hB7mIagjVEmwzarsspk="; }; postPatch = '' An auto update branch exists with message `python312Packages.hdate: 0.10.4 -> 0.10.7`. New version is 0.10.8. The auto update branch does not match or exceed the new version. [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.hdate nix build failed. Using pytestCheckPhase @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/9hgmrafhp2v2n01nhkpc82jwp0z8r5dj-source source root is source setting SOURCE_DATE_EPOCH to timestamp 315619200 of file source/tox.ini @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase substituteStream(): WARNING: '--replace' is deprecated, use --replace-{fail,warn,quiet}. (file 'pyproject.toml') substituteStream(): WARNING: pattern pytz\ =\ \"\>=\ 2020.0\" doesn't match anything in file 'pyproject.toml' substituteStream(): WARNING: pattern astral\ =\ \{version\ =\ \"\^2.2\"\,\ python\ =\ \"\^3.6\"\} doesn't match anything in file 'pyproject.toml' @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 hdate-0.10.8-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 hdate-0.10.8-py3-none-any.whl - astral<3.0,>=2.2 not satisfied by version 3.2 [result] Failed to update python312Packages.hdate 0.10.4 -> 0.10.8 https://github.com/py-libhdate/py-libhdate/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 go-mockery, using log file: /var/log/nixpkgs-update/go-mockery/2024-03-21.log go-mockery 2.38.0 -> 2.42.1 https://github.com/vektra/mockery/releases attrpath: go-mockery 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-iAZjWRW2TWKqcs94lepkcIXUPyPl9qlGhxlX84rN3ok=" [golangModuleVersion] Replaced vendorHash with sha256-FCl17nywcMoXEA3l0rOzY66Pj51rEEGdK6Zo6Y3/n34= 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 go-mockery nix build failed. go: downloading gopkg.in/ini.v1 v1.67.0 go: downloading github.com/mattn/go-colorable v0.1.13 go: downloading golang.org/x/text v0.14.0 go: downloading github.com/mattn/go-isatty v0.0.19 go: downloading github.com/pelletier/go-toml v1.9.5 go: downloading golang.org/x/mod v0.14.0 Building subPackage ./cmd Building subPackage ./mocks/github.com/vektra/mockery/v2/pkg go: downloading github.com/stretchr/testify v1.8.2 go: downloading github.com/stretchr/objx v0.5.0 go: downloading github.com/davecgh/go-spew v1.1.1 go: downloading github.com/pmezard/go-difflib v1.0.0 Building subPackage ./mocks/github.com/vektra/mockery/v2/pkg/fixtures Building subPackage ./mocks/github.com/vektra/mockery/v2/pkg/fixtures/buildtag/comment package github.com/vektra/mockery/v2/mocks/github.com/vektra/mockery/v2/pkg/fixtures/buildtag/comment: build constraints exclude all Go files in /build/source/mocks/github.com/vektra/mockery/v2/pkg/fixtures/buildtag/comment Building subPackage ./pkg Building subPackage ./pkg/config Building subPackage ./pkg/fixtures Building subPackage ./pkg/fixtures/buildtag/comment Building subPackage ./pkg/fixtures/buildtag/filename Building subPackage ./pkg/fixtures/constraints Building subPackage ./pkg/fixtures/example_project Building subPackage ./pkg/fixtures/example_project/bar/foo Building subPackage ./pkg/fixtures/example_project/baz Building subPackage ./pkg/fixtures/example_project/baz/internal/foo Building subPackage ./pkg/fixtures/example_project/context Building subPackage ./pkg/fixtures/example_project/foo Building subPackage ./pkg/fixtures/example_project/pkg_with_submodules Building subPackage ./pkg/fixtures/example_project/pkg_with_submodules/submodule main module (github.com/vektra/mockery/v2/pkg/fixtures/example_project/pkg_with_submodules) does not contain package github.com/vektra/mockery/v2/pkg/fixtures/example_project/pkg_with_submodules/submodule [result] Failed to update go-mockery 2.38.0 -> 2.42.1 https://github.com/vektra/mockery/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 firebird_2_5, using log file: /var/log/nixpkgs-update/firebird_2_5/2024-03-21.log firebird_2_5 2.5.9 -> 5.0.0 https://github.com/FirebirdSQL/firebird/releases attrpath: firebird_2_5 Checking auto update branch... No auto update branch exists Version in attr path firebird_2_5 not compatible with 5.0.0 [result] Failed to update firebird_2_5 2.5.9 -> 5.0.0 https://github.com/FirebirdSQL/firebird/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 wavegain, using log file: /var/log/nixpkgs-update/wavegain/2024-03-21.log wavegain 1.3.1 -> 1.3.2 https://github.com/MestreLion/wavegain/releases attrpath: wavegain 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 wavegain 1.3.1 -> 1.3.2 https://github.com/MestreLion/wavegain/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 multi-platform srcs in file. [result] Failed to update electron_28 28.2.6 -> 29.1.5 https://github.com/electron/electron/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 opensyclWithRocm, using log file: /var/log/nixpkgs-update/opensyclWithRocm/2024-03-21.log opensyclWithRocm 0.9.4 -> 24.02.0 https://github.com/OpenSYCL/OpenSYCL/releases attrpath: opensyclWithRocm 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/compilers/opensycl/default.nix b/pkgs/development/compilers/opensycl/default.nix index c406d4c9d5c2..388aca9ebd92 100644 --- a/pkgs/development/compilers/opensycl/default.nix +++ b/pkgs/development/compilers/opensycl/default.nix @@ -17,13 +17,13 @@ let in stdenv.mkDerivation rec { pname = "OpenSYCL"; - version = "0.9.4"; + version = "24.02.0"; src = fetchFromGitHub { owner = "OpenSYCL"; repo = "OpenSYCL"; rev = "v${version}"; - sha256 = "sha256-5YkuUOAnvoAD5xDKxKMPq0B7+1pb6hVisPAhs0Za1ls="; + sha256 = "sha256-9TBc5XZwz1is8D6PMfxs/MAttjXe6SLXGO5BnXIF2T0="; }; nativeBuildInputs = [ [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 opensyclWithRocm nix build failed. -- Performing Test Terminfo_LINKABLE -- Performing Test Terminfo_LINKABLE - Success -- Found Terminfo: /nix/store/1n8dg5f4435qm73m4b9m0479igx7iq7l-ncurses-6.4/lib/libtinfo.so -- Found ZLIB: /nix/store/zbaajn0dk65kwvrcglhli1j4xx4vhvvj-zlib-1.3.1/lib/libz.so (found version "1.3.1") -- Found LibXml2: /nix/store/6wfv81r4danww91b2p3i7i46l7n1lcs1-libxml2-2.12.5/lib/libxml2.so (found version "2.12.5") -- Building hipSYCL against LLVM configured from /nix/store/10kszj5bdizydcfd0xk2mj7j4y14k28x-llvm-15.0.7-dev/lib/cmake/llvm -- Selecting clang: /nix/store/8nh67s51s9mma86m3vdk1h796kqnyn8b-clang-wrapper-15.0.7/bin/clang++ -- Using clang include directory: /nix/store/7f905vl22bfnl6qjaj3pnxzn990fvs8d-clang-15.0.7-dev/include -- Looking for C++ include filesystem -- Looking for C++ include filesystem - found -- Performing Test CXX_FILESYSTEM_NO_LINK_NEEDED -- Performing Test CXX_FILESYSTEM_NO_LINK_NEEDED - Success CMake Error at /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/ExternalProject.cmake:2910 (message): error: could not find git for clone of llvmspirvtranslator-populate Call Stack (most recent call first): /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/ExternalProject.cmake:4418 (_ep_add_download_command) CMakeLists.txt:29 (ExternalProject_Add) -- Configuring incomplete, errors occurred!  CMake Error at /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FetchContent.cmake:1667 (message): CMake step for llvmspirvtranslator failed: 1 Call Stack (most recent call first): /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FetchContent.cmake:1819:EVAL:2 (__FetchContent_directPopulate) /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FetchContent.cmake:1819 (cmake_language) src/compiler/llvm-to-backend/CMakeLists.txt:141 (FetchContent_Populate)  -- Configuring incomplete, errors occurred! [result] Failed to update opensyclWithRocm 0.9.4 -> 24.02.0 https://github.com/OpenSYCL/OpenSYCL/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.dyn, using log file: /var/log/nixpkgs-update/python311Packages.dyn/2024-03-21.log python311Packages.dyn 0 -> 1 attrpath: python311Packages.dyn 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/3af1ymldwfcnh5zj2giv7n63hcq5v242-packages.json.drv building '/nix/store/3af1ymldwfcnh5zj2giv7n63hcq5v242-packages.json.drv'... Going to be running update for following packages: - python3.11-dyn-1.8.6 Press Enter key to continue... Running update for: - python3.11-dyn-1.8.6: UPDATING ... - python3.11-dyn-1.8.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dyn 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 cemu, using log file: /var/log/nixpkgs-update/cemu/2024-03-21.log cemu 0 -> 1 attrpath: cemu 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/gdd15872c3smja0pvga7b4kk8sj0xg60-packages.json.drv building '/nix/store/gdd15872c3smja0pvga7b4kk8sj0xg60-packages.json.drv'... Going to be running update for following packages: - cemu-2.0-68 Press Enter key to continue... Running update for: - cemu-2.0-68: UPDATING ... - cemu-2.0-68: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/applications/emulators/cemu/default.nix b/pkgs/applications/emulators/cemu/default.nix index fa7f68c7063f..cdc64ff8a9d7 100644 --- a/pkgs/applications/emulators/cemu/default.nix +++ b/pkgs/applications/emulators/cemu/default.nix @@ -46,13 +46,13 @@ let in stdenv.mkDerivation rec { pname = "cemu"; - version = "2.0-68"; + version = "2.0-72"; src = fetchFromGitHub { owner = "cemu-project"; repo = "Cemu"; rev = "v${version}"; - hash = "sha256-/c0rpj4s3aNJVH+AlU9R4t321OqTvJHfZQCfyzYB4m8="; + hash = "sha256-4sy2pI+pOJ69JntfktrcXd00yL3fkQI14K02j0l4cuI="; }; patches = [ An auto update branch exists with message `cemu: 2.0-68 -> 2.0-72`. New version is 2.0-72. An auto update branch exists with an equal or greater version [result] Failed to update cemu 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.pykodi, using log file: /var/log/nixpkgs-update/python311Packages.pykodi/2024-03-21.log python311Packages.pykodi 0 -> 1 attrpath: python311Packages.pykodi 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/v9707jd8jq9cgb9xjjw3fhmxc7c58rn9-packages.json.drv building '/nix/store/v9707jd8jq9cgb9xjjw3fhmxc7c58rn9-packages.json.drv'... Going to be running update for following packages: - python3.11-pykodi-0.2.7 Press Enter key to continue... Running update for: - python3.11-pykodi-0.2.7: UPDATING ... - python3.11-pykodi-0.2.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pykodi 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 db6, using log file: /var/log/nixpkgs-update/db6/2024-03-21.log db6 6.0.30 -> 18.1.40 https://repology.org/project/db/versions attrpath: db6 Checking auto update branch... No auto update branch exists Version in attr path db6 not compatible with 18.1.40 [result] Failed to update db6 6.0.30 -> 18.1.40 https://repology.org/project/db/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath profont, using log file: /var/log/nixpkgs-update/profont/2024-03-21.log profont 2019-11 -> 20040610 https://repology.org/project/profont/versions attrpath: profont 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 profont 2019-11 -> 20040610 https://repology.org/project/profont/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.elastic-apm, using log file: /var/log/nixpkgs-update/python311Packages.elastic-apm/2024-03-21.log python311Packages.elastic-apm 0 -> 1 attrpath: python311Packages.elastic-apm 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/zydhwvfcaw75kgsj6z7vp2qcmp5h1k4w-packages.json.drv building '/nix/store/zydhwvfcaw75kgsj6z7vp2qcmp5h1k4w-packages.json.drv'... Going to be running update for following packages: - python3.11-elastic-apm-6.21.3 Press Enter key to continue... Running update for: - python3.11-elastic-apm-6.21.3: UPDATING ... - python3.11-elastic-apm-6.21.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/elastic-apm/default.nix b/pkgs/development/python-modules/elastic-apm/default.nix index 61ad6705fe9b..7fe0262c81ca 100644 --- a/pkgs/development/python-modules/elastic-apm/default.nix +++ b/pkgs/development/python-modules/elastic-apm/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { pname = "elastic-apm"; - version = "6.21.3"; + version = "6.21.4"; pyproject = true; disabled = pythonOlder "3.8"; @@ -40,7 +40,7 @@ buildPythonPackage rec { owner = "elastic"; repo = "apm-agent-python"; rev = "refs/tags/v${version}"; - hash = "sha256-Ejix31cMyHOc/IGe4bRp/Nchm9Ps1cRYE8jIaIYlJjs="; + hash = "sha256-km/1bKxJa7luXeJ6+2SeosQRbKxTb7oNY0PO6VceIvA="; }; 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 python311Packages.elastic-apm nix build failed. adding 'elasticapm/transport/http_urllib3.py' adding 'elasticapm/utils/__init__.py' adding 'elasticapm/utils/cgroup.py' adding 'elasticapm/utils/cloud.py' adding 'elasticapm/utils/compat.py' adding 'elasticapm/utils/deprecation.py' adding 'elasticapm/utils/disttracing.py' adding 'elasticapm/utils/encoding.py' adding 'elasticapm/utils/json_encoder.py' adding 'elasticapm/utils/logging.py' adding 'elasticapm/utils/module_import.py' adding 'elasticapm/utils/stacks.py' adding 'elasticapm/utils/threading.py' adding 'elasticapm/utils/time.py' adding 'elasticapm/utils/wsgi.py' adding 'elastic_apm-6.21.4.dist-info/LICENSE' adding 'elastic_apm-6.21.4.dist-info/METADATA' adding 'elastic_apm-6.21.4.dist-info/WHEEL' adding 'elastic_apm-6.21.4.dist-info/entry_points.txt' adding 'elastic_apm-6.21.4.dist-info/top_level.txt' adding 'elastic_apm-6.21.4.dist-info/RECORD' removing build/bdist.linux-x86_64/wheel Successfully built elastic_apm-6.21.4-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 elastic_apm-6.21.4-py2.py3-none-any.whl - wrapt<1.15.0,>=1.14.1 not satisfied by version 1.16.0 [result] Failed to update python311Packages.elastic-apm 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.sounddevice, using log file: /var/log/nixpkgs-update/python311Packages.sounddevice/2024-03-21.log python311Packages.sounddevice 0 -> 1 attrpath: python311Packages.sounddevice 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/1971gsna1dbj22xkjncg1n3f16lks9cf-packages.json.drv building '/nix/store/1971gsna1dbj22xkjncg1n3f16lks9cf-packages.json.drv'... Going to be running update for following packages: - python3.11-sounddevice-0.4.6 Press Enter key to continue... Running update for: - python3.11-sounddevice-0.4.6: UPDATING ... - python3.11-sounddevice-0.4.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sounddevice 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.webthing-ws, using log file: /var/log/nixpkgs-update/python311Packages.webthing-ws/2024-03-21.log python311Packages.webthing-ws 0 -> 1 attrpath: python311Packages.webthing-ws 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/a49qxkjb0r9y4a1adgd1inc9f7s37nnk-packages.json.drv building '/nix/store/a49qxkjb0r9y4a1adgd1inc9f7s37nnk-packages.json.drv'... Going to be running update for following packages: - python3.11-webthing-ws-0.2.0 Press Enter key to continue... Running update for: - python3.11-webthing-ws-0.2.0: UPDATING ... - python3.11-webthing-ws-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.webthing-ws 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 hekatomb, using log file: /var/log/nixpkgs-update/hekatomb/2024-03-21.log hekatomb 0 -> 1 attrpath: hekatomb 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/6g9bcdgyx6zb2h7farac2w5b31jxdyqz-packages.json.drv building '/nix/store/6g9bcdgyx6zb2h7farac2w5b31jxdyqz-packages.json.drv'... Going to be running update for following packages: - hekatomb-1.5.14-unstable-2024-02-14 Press Enter key to continue... Running update for: - hekatomb-1.5.14-unstable-2024-02-14: UPDATING ... - hekatomb-1.5.14-unstable-2024-02-14: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update hekatomb 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 rdwatool, using log file: /var/log/nixpkgs-update/rdwatool/2024-03-21.log rdwatool 0 -> 1 attrpath: rdwatool 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/z2bmscd4nn5r3sksdb7vmrdv33bzv7w5-packages.json.drv building '/nix/store/z2bmscd4nn5r3sksdb7vmrdv33bzv7w5-packages.json.drv'... Going to be running update for following packages: - rdwatool-1.2-unstable-2023-11-27 Press Enter key to continue... Running update for: - rdwatool-1.2-unstable-2023-11-27: UPDATING ... - rdwatool-1.2-unstable-2023-11-27: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update rdwatool 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 sing-box, using log file: /var/log/nixpkgs-update/sing-box/2024-03-21.log sing-box 0 -> 1 attrpath: sing-box 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/hbs558lz1zgi1cadszfk471836q1840j-packages.json.drv building '/nix/store/hbs558lz1zgi1cadszfk471836q1840j-packages.json.drv'... Going to be running update for following packages: - sing-box-1.8.9 Press Enter key to continue... Running update for: - sing-box-1.8.9: UPDATING ... - sing-box-1.8.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update sing-box 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 proggyfonts, using log file: /var/log/nixpkgs-update/proggyfonts/2024-03-21.log proggyfonts 0.1 -> 1.0 https://repology.org/project/fonts:proggy/versions attrpath: proggyfonts 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/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv building '/nix/store/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv'... trying https://web.archive.org/web/20150801042353/http://kaictl.net/software/proggyfonts-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:00:02 --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download proggyfonts-1.0.tar.gz from any mirror error: builder for '/nix/store/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://web.archive.org/web/20150801042353/http://kaictl.net/software/proggyfonts-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:00:02 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download proggyfonts-1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'proggyfonts.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv /nix/store/apssmppbh1zl5sfsjw19h753w5zrbam9-proggyfonts-1.0.drv this path will be fetched (0.02 MiB download, 0.05 MiB unpacked): /nix/store/w1dqgig4s5097vrpa2avpa1d1zw6y0kz-mkfontscale-1.2.3 copying path '/nix/store/w1dqgig4s5097vrpa2avpa1d1zw6y0kz-mkfontscale-1.2.3' from 'https://cache.nixos.org'... building '/nix/store/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv'... trying https://web.archive.org/web/20150801042353/http://kaictl.net/software/proggyfonts-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: (22) The requested URL returned error: 404 error: cannot download proggyfonts-1.0.tar.gz from any mirror error: builder for '/nix/store/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv' failed with exit code 1; last 7 log lines: > > trying https://web.archive.org/web/20150801042353/http://kaictl.net/software/proggyfonts-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: (22) The requested URL returned error: 404 > error: cannot download proggyfonts-1.0.tar.gz from any mirror For full logs, run 'nix log /nix/store/krnq7dgq617bvrjg9hjxkasmyk8xw3bw-proggyfonts-1.0.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/apssmppbh1zl5sfsjw19h753w5zrbam9-proggyfonts-1.0.drv' failed to build [result] Failed to update proggyfonts 0.1 -> 1.0 https://repology.org/project/fonts:proggy/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath smbmap, using log file: /var/log/nixpkgs-update/smbmap/2024-03-21.log smbmap 0 -> 1 attrpath: smbmap 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/ni8zsifcb4ln3drwm95a3rwlg413k3mm-packages.json.drv building '/nix/store/ni8zsifcb4ln3drwm95a3rwlg413k3mm-packages.json.drv'... Going to be running update for following packages: - smbmap-1.10.2 Press Enter key to continue... Running update for: - smbmap-1.10.2: UPDATING ... - smbmap-1.10.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update smbmap 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 odoo15, using log file: /var/log/nixpkgs-update/odoo15/2024-03-21.log odoo15 0 -> 1 attrpath: odoo15 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/n5hd58p8jqmz2215xdhfbsr326n43ljc-packages.json.drv building '/nix/store/n5hd58p8jqmz2215xdhfbsr326n43ljc-packages.json.drv'... Going to be running update for following packages: - odoo15-15.0.20230816 Press Enter key to continue... Running update for: - odoo15-15.0.20230816: UPDATING ... - odoo15-15.0.20230816: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update odoo15 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.laundrify-aio, using log file: /var/log/nixpkgs-update/python311Packages.laundrify-aio/2024-03-21.log python311Packages.laundrify-aio 0 -> 1 attrpath: python311Packages.laundrify-aio 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/3h9wmq3dlbhvdq7zrb7mdnz2cr362bzh-packages.json.drv building '/nix/store/3h9wmq3dlbhvdq7zrb7mdnz2cr362bzh-packages.json.drv'... Going to be running update for following packages: - python3.11-laundrify-aio-1.1.2 Press Enter key to continue... Running update for: - python3.11-laundrify-aio-1.1.2: UPDATING ... - python3.11-laundrify-aio-1.1.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.laundrify-aio 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 patroni, using log file: /var/log/nixpkgs-update/patroni/2024-03-21.log patroni 0 -> 1 attrpath: patroni 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/zxzk2ix39x2270743y8jacyf8d4haph6-packages.json.drv building '/nix/store/zxzk2ix39x2270743y8jacyf8d4haph6-packages.json.drv'... Going to be running update for following packages: - patroni-2.1.3 Press Enter key to continue... Running update for: - patroni-2.1.3: UPDATING ... - patroni-2.1.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/servers/sql/patroni/default.nix b/pkgs/servers/sql/patroni/default.nix index 23c165ab545f..df511f58f87e 100644 --- a/pkgs/servers/sql/patroni/default.nix +++ b/pkgs/servers/sql/patroni/default.nix @@ -6,13 +6,13 @@ pythonPackages.buildPythonApplication rec { pname = "patroni"; - version = "2.1.3"; + version = "3.2.2"; src = fetchFromGitHub { owner = "zalando"; repo = pname; - rev = "v${version}"; - sha256 = "sha256-cBkiBrty/6A3rIv9A1oh8GvPjwxhHwYEKuDIsNzHw1g="; + rev = "refs/tags/v${version}"; + sha256 = "sha256-B23v/eNLJk5UpKivvDEhbjk88PJR+FzEfYArJuCLdys="; }; # cdiff renamed to ydiff; remove when patroni source reflects this. 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 patroni nix build failed. @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: patroni @nix { "action": "setPhase", "phase": "pytestCheckPhase" } Running phase: pytestCheckPhase Executing pytestCheckPhase ============================= test session starts ============================== platform linux -- Python 3.11.8, pytest-8.0.2, pluggy-1.4.0 rootdir: /build/source plugins: cov-4.1.0 collecting ...  collecting 85 items / 1 error  collected 562 items / 1 error  ==================================== ERRORS ==================================== ______________________ ERROR collecting tests/test_aws.py ______________________ ImportError while importing test module '/build/source/tests/test_aws.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: /nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/importlib/__init__.py:126: in import_module return _bootstrap._gcd_import(name[level:], package, level) tests/test_aws.py:1: in import botocore E ModuleNotFoundError: No module named 'botocore' =========================== short test summary info ============================ ERROR tests/test_aws.py !!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!! =============================== 1 error in 0.86s =============================== /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1578: pop_var_context: head of shell_variables not a function context [result] Failed to update patroni 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 loupe, using log file: /var/log/nixpkgs-update/loupe/2024-03-21.log loupe 0 -> 1 attrpath: loupe Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update loupe 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-storage-common, using log file: /var/log/nixpkgs-update/python311Packages.azure-storage-common/2024-03-21.log python311Packages.azure-storage-common 0 -> 1 attrpath: python311Packages.azure-storage-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/ivqlmqcnmzyfhbkxq522989az323v5pl-packages.json.drv building '/nix/store/ivqlmqcnmzyfhbkxq522989az323v5pl-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-storage-common-2.1.0 Press Enter key to continue... Running update for: - python3.11-azure-storage-common-2.1.0: UPDATING ... - python3.11-azure-storage-common-2.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-storage-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 ostree, using log file: /var/log/nixpkgs-update/ostree/2024-03-21.log ostree 2023.2 -> 2024.5 https://repology.org/project/ostree/versions attrpath: ostree 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/ostree/default.nix b/pkgs/tools/misc/ostree/default.nix index dcb4065a02c0..184d11a66079 100644 --- a/pkgs/tools/misc/ostree/default.nix +++ b/pkgs/tools/misc/ostree/default.nix @@ -42,13 +42,13 @@ let ]); in stdenv.mkDerivation rec { pname = "ostree"; - version = "2023.2"; + version = "2024.5"; outputs = [ "out" "dev" "man" "installedTests" ]; src = fetchurl { url = "https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz"; - sha256 = "sha256-zrB4h1Wgv/VzjURUNVL7+IPPcd9IG6o8pyiNp6QCu4U="; + sha256 = "sha256-vBLYST22QVIJPuW+d89iopzGekqeQw3JhxA+eKraSm8="; }; patches = [ [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 ostree nix build failed. Running phase: unpackPhase unpacking source archive /nix/store/74q916z44kxfxixiqsygcq4667ypwwk6-libostree-2024.5.tar.xz source root is libostree-2024.5 setting SOURCE_DATE_EPOCH to timestamp 1710451491 of file libostree-2024.5/apidoc/ostree.types @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/q6c43ylsd4pb7r52pgdcd2g7mml98dzm-01-Drop-ostree-trivial-httpd-CLI-move-to-tests-director.patch patching file Makefile-man.am Hunk #1 FAILED at 32. 1 out of 1 hunk FAILED -- saving rejects to file Makefile-man.am.rej patching file Makefile-ostree.am Hunk #1 FAILED at 138. 1 out of 1 hunk FAILED -- saving rejects to file Makefile-ostree.am.rej patching file Makefile-tests.am Hunk #1 succeeded at 283 with fuzz 1 (offset 8 lines). patching file configure.ac Hunk #1 FAILED at 186. Hunk #2 FAILED at 606. 2 out of 2 hunks FAILED -- saving rejects to file configure.ac.rej The next patch would delete the file man/ostree-trivial-httpd.xml, which does not exist! Assume -R? [n] Apply anyway? [n] Skipping patch. 1 out of 1 hunk ignored patching file src/ostree/main.c Hunk #1 FAILED at 118. 1 out of 1 hunk FAILED -- saving rejects to file src/ostree/main.c.rej patching file tests/libtest.sh Hunk #1 FAILED at 174. 1 out of 1 hunk FAILED -- saving rejects to file tests/libtest.sh.rej [result] Failed to update ostree 2023.2 -> 2024.5 https://repology.org/project/ostree/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.tweenr, using log file: /var/log/nixpkgs-update/rPackages.tweenr/2024-03-21.log rPackages.tweenr 2.0.2 -> 2.0.3 https://repology.org/project/r:tweenr/versions attrpath: rPackages.tweenr 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.tweenr 2.0.2 -> 2.0.3 https://repology.org/project/r:tweenr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath khronos, using log file: /var/log/nixpkgs-update/khronos/2024-03-21.log khronos 0 -> 1 attrpath: khronos 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/r6961g3kjkm3g87shihk1qgnl3pwqnbv-packages.json.drv building '/nix/store/r6961g3kjkm3g87shihk1qgnl3pwqnbv-packages.json.drv'... Going to be running update for following packages: - khronos-4.0.1 Press Enter key to continue... Running update for: - khronos-4.0.1: UPDATING ... - khronos-4.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update khronos 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 securefs, using log file: /var/log/nixpkgs-update/securefs/2024-03-21.log securefs 0.13.1 -> 0.14.3 https://repology.org/project/securefs/versions attrpath: securefs 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/securefs/default.nix b/pkgs/tools/filesystems/securefs/default.nix index fe148e955cb2..8945dedb14eb 100644 --- a/pkgs/tools/filesystems/securefs/default.nix +++ b/pkgs/tools/filesystems/securefs/default.nix @@ -7,14 +7,14 @@ stdenv.mkDerivation rec { pname = "securefs"; - version = "0.13.1"; + version = "0.14.3"; src = fetchFromGitHub { owner = "netheril96"; repo = "securefs"; rev = version; fetchSubmodules = true; - hash = "sha256-7xjGuN7jcLgfGkaBoSj+WsBpM806PPGzeBs7DnI+fwc="; + hash = "sha256-ZRolU95AkoruZUfHofK2mfhbrDKwjjvh2+b+II1T9yc="; }; nativeBuildInputs = [ cmake ]; [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 securefs nix build failed.  -- The C compiler identification is GNU 13.2.0 -- The CXX 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 -- 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 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success -- Found Threads: TRUE CMake Error at CMakeLists.txt:77 (find_package): Could not find a package configuration file provided by "absl" with any of the following names: abslConfig.cmake absl-config.cmake Add the installation prefix of "absl" to CMAKE_PREFIX_PATH or set "absl_DIR" to a directory containing one of the above files. If "absl" provides a separate development package or SDK, be sure it has been installed.  -- Configuring incomplete, errors occurred! [result] Failed to update securefs 0.13.1 -> 0.14.3 https://repology.org/project/securefs/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-simple-hipchat, using log file: /var/log/nixpkgs-update/python311Packages.python-simple-hipchat/2024-03-21.log python311Packages.python-simple-hipchat 0 -> 1 attrpath: python311Packages.python-simple-hipchat 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/9fcpqi70jxbvqb1gv6cc44p2yrwb6x94-packages.json.drv building '/nix/store/9fcpqi70jxbvqb1gv6cc44p2yrwb6x94-packages.json.drv'... Going to be running update for following packages: - python3.11-python-simple-hipchat-0.4.0 Press Enter key to continue... Running update for: - python3.11-python-simple-hipchat-0.4.0: UPDATING ... - python3.11-python-simple-hipchat-0.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-simple-hipchat 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 ssh-audit, using log file: /var/log/nixpkgs-update/ssh-audit/2024-03-21.log ssh-audit 0 -> 1 attrpath: ssh-audit 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/kgqxlbimmkgqvk6fb02lbvfpmxw4hbh7-packages.json.drv building '/nix/store/kgqxlbimmkgqvk6fb02lbvfpmxw4hbh7-packages.json.drv'... Going to be running update for following packages: - ssh-audit-3.1.0 Press Enter key to continue... Running update for: - ssh-audit-3.1.0: UPDATING ... - ssh-audit-3.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update ssh-audit 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.proton-vpn-connection, using log file: /var/log/nixpkgs-update/python311Packages.proton-vpn-connection/2024-03-21.log python311Packages.proton-vpn-connection 0 -> 1 attrpath: python311Packages.proton-vpn-connection 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/xibxfch1gww08plyjzyji29qvfdgnvrj-packages.json.drv building '/nix/store/xibxfch1gww08plyjzyji29qvfdgnvrj-packages.json.drv'... Going to be running update for following packages: - python3.11-proton-vpn-connection-0.11.3 Press Enter key to continue... Running update for: - python3.11-proton-vpn-connection-0.11.3: UPDATING ... - python3.11-proton-vpn-connection-0.11.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.proton-vpn-connection 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.biogeom, using log file: /var/log/nixpkgs-update/rPackages.biogeom/2024-03-21.log rPackages.biogeom 1.3.7 -> 1.4.2 https://repology.org/project/r:biogeom/versions attrpath: rPackages.biogeom Checking auto update branch... No auto update branch exists Old version 1.3.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.biogeom 1.3.7 -> 1.4.2 https://repology.org/project/r:biogeom/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.FIESTA, using log file: /var/log/nixpkgs-update/rPackages.FIESTA/2024-03-21.log rPackages.FIESTA 3.6.0 -> 3.6.2 https://repology.org/project/r:fiesta/versions attrpath: rPackages.FIESTA Checking auto update branch... No auto update branch exists Old version 3.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.FIESTA 3.6.0 -> 3.6.2 https://repology.org/project/r:fiesta/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.open-garage, using log file: /var/log/nixpkgs-update/python311Packages.open-garage/2024-03-21.log python311Packages.open-garage 0 -> 1 attrpath: python311Packages.open-garage 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/mv2m76y49wrh6lkpalp4pbjjax9140q6-packages.json.drv building '/nix/store/mv2m76y49wrh6lkpalp4pbjjax9140q6-packages.json.drv'... Going to be running update for following packages: - python3.11-open-garage-0.2.0 Press Enter key to continue... Running update for: - python3.11-open-garage-0.2.0: UPDATING ... - python3.11-open-garage-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.open-garage 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.testrail-api, using log file: /var/log/nixpkgs-update/python311Packages.testrail-api/2024-03-21.log python311Packages.testrail-api 0 -> 1 attrpath: python311Packages.testrail-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/114ns9yz79yrwki1wlbsmx0h01zkxpb6-packages.json.drv building '/nix/store/114ns9yz79yrwki1wlbsmx0h01zkxpb6-packages.json.drv'... Going to be running update for following packages: - python3.11-testrail-api-1.13.0 Press Enter key to continue... Running update for: - python3.11-testrail-api-1.13.0: UPDATING ... - python3.11-testrail-api-1.13.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.testrail-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.pycdio, using log file: /var/log/nixpkgs-update/python311Packages.pycdio/2024-03-21.log python311Packages.pycdio 0 -> 1 attrpath: python311Packages.pycdio 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/klycjw1g2pzzmliz6yg097skz6shxbhb-packages.json.drv building '/nix/store/klycjw1g2pzzmliz6yg097skz6shxbhb-packages.json.drv'... Going to be running update for following packages: - python3.11-pycdio-2.1.1 Press Enter key to continue... Running update for: - python3.11-pycdio-2.1.1: UPDATING ... - python3.11-pycdio-2.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pycdio 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.approvaltests, using log file: /var/log/nixpkgs-update/python312Packages.approvaltests/2024-03-21.log python312Packages.approvaltests 11.1.1 -> 11.1.2 https://github.com/approvals/ApprovalTests.Python/releases attrpath: python312Packages.approvaltests 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/nxbixh6zw8l243z23kiymr55rsvlb20p-packages.json.drv building '/nix/store/nxbixh6zw8l243z23kiymr55rsvlb20p-packages.json.drv'... Going to be running update for following packages: - python3.12-approvaltests-11.1.1 Press Enter key to continue... Running update for: - python3.12-approvaltests-11.1.1: UPDATING ... - python3.12-approvaltests-11.1.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/approvaltests/default.nix b/pkgs/development/python-modules/approvaltests/default.nix index 32ec4869cae5..16b7c1d29dcb 100644 --- a/pkgs/development/python-modules/approvaltests/default.nix +++ b/pkgs/development/python-modules/approvaltests/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "approvaltests"; - version = "11.1.1"; + version = "11.1.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "approvals"; repo = "ApprovalTests.Python"; rev = "refs/tags/v${version}"; - hash = "sha256-kVGCAht3ZP6ENhFJG3LoYs6PTH7OSNoj/h5QACwjKG8="; + hash = "sha256-VM4TP98bS9NmhxZz+YHMJrHKr5g6E6aYidxjKQyXp7k="; }; nativeBuildInputs = [ No auto update branch exists Old version 11.1.1" not present in master derivation file with contents: { lib , allpairspy , approval-utilities , beautifulsoup4 , buildPythonPackage , empty-files , fetchFromGitHub , mock , mrjob , numpy , pyperclip , pytest , pytest-asyncio , pytestCheckHook , pythonOlder , setuptools , testfixtures , typing-extensions }: buildPythonPackage rec { pname = "approvaltests"; version = "11.1.2"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "approvals"; repo = "ApprovalTests.Python"; rev = "refs/tags/v${version}"; hash = "sha256-VM4TP98bS9NmhxZz+YHMJrHKr5g6E6aYidxjKQyXp7k="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ allpairspy approval-utilities beautifulsoup4 empty-files mock mrjob pyperclip pytest testfixtures typing-extensions ]; nativeCheckInputs = [ numpy pytest-asyncio pytestCheckHook ]; disabledTests = [ # Tests expects paths below ApprovalTests.Python directory "test_received_filename" "test_pytest_namer" ]; pythonImportsCheck = [ "approvaltests.approvals" "approvaltests.reporters.generic_diff_reporter_factory" ]; meta = with lib; { description = "Assertion/verification library to aid testing"; homepage = "https://github.com/approvals/ApprovalTests.Python"; changelog = "https://github.com/approvals/ApprovalTests.Python/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ marsam ]; }; } [result] Failed to update python312Packages.approvaltests 11.1.1 -> 11.1.2 https://github.com/approvals/ApprovalTests.Python/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 libmspack, using log file: /var/log/nixpkgs-update/libmspack/2024-03-21.log libmspack 0.10.1 -> 0.11 https://repology.org/project/libmspack/versions attrpath: libmspack Checking auto update branch... No auto update branch exists Old version 0.10.1" not present in master derivation file with contents: {lib, stdenv, fetchurl}: stdenv.mkDerivation rec { pname = "libmspack"; version = "0.10.1alpha"; src = fetchurl { url = "https://www.cabextract.org.uk/libmspack/${pname}-${version}.tar.gz"; sha256 = "13janaqsvm7aqc4agjgd4819pbgqv50j88bh5kci1z70wvg65j5s"; }; meta = { description = "A de/compression library for various Microsoft formats"; homepage = "https://www.cabextract.org.uk/libmspack"; license = lib.licenses.lgpl2Only; platforms = lib.platforms.unix; }; } [result] Failed to update libmspack 0.10.1 -> 0.11 https://repology.org/project/libmspack/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.pyexcel-ods, using log file: /var/log/nixpkgs-update/python311Packages.pyexcel-ods/2024-03-21.log python311Packages.pyexcel-ods 0 -> 1 attrpath: python311Packages.pyexcel-ods 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/4a5gvp6k21hpxfawhmzpcvzicgfvzv6c-packages.json.drv building '/nix/store/4a5gvp6k21hpxfawhmzpcvzicgfvzv6c-packages.json.drv'... Going to be running update for following packages: - python3.11-pyexcel-ods-0.6.0 Press Enter key to continue... Running update for: - python3.11-pyexcel-ods-0.6.0: UPDATING ... - python3.11-pyexcel-ods-0.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyexcel-ods 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.pyatmo, using log file: /var/log/nixpkgs-update/python311Packages.pyatmo/2024-03-21.log python311Packages.pyatmo 0 -> 1 attrpath: python311Packages.pyatmo 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/48z3rhr4kbxvjvz99qvrgsxwbg3xphgq-packages.json.drv building '/nix/store/48z3rhr4kbxvjvz99qvrgsxwbg3xphgq-packages.json.drv'... Going to be running update for following packages: - python3.11-pyatmo-8.0.3 Press Enter key to continue... Running update for: - python3.11-pyatmo-8.0.3: UPDATING ... - python3.11-pyatmo-8.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyatmo 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.lxqt-archiver, using log file: /var/log/nixpkgs-update/lxqt.lxqt-archiver/2024-03-21.log lxqt.lxqt-archiver 0 -> 1 attrpath: lxqt.lxqt-archiver Packages for lxqt are currently skipped. [result] Failed to update lxqt.lxqt-archiver 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.eradicate, using log file: /var/log/nixpkgs-update/python311Packages.eradicate/2024-03-21.log python311Packages.eradicate 0 -> 1 attrpath: python311Packages.eradicate 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/2y4fq23z8f42m90qivb2w4nx1svwkhm0-packages.json.drv building '/nix/store/2y4fq23z8f42m90qivb2w4nx1svwkhm0-packages.json.drv'... Going to be running update for following packages: - python3.11-eradicate-2.3.0 Press Enter key to continue... Running update for: - python3.11-eradicate-2.3.0: UPDATING ... - python3.11-eradicate-2.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.eradicate 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 ipxe, using log file: /var/log/nixpkgs-update/ipxe/2024-03-21.log ipxe 0 -> 1 attrpath: ipxe 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/xsrkiilp18r6b6l7v8l5p2410gqa0mjr-packages.json.drv building '/nix/store/xsrkiilp18r6b6l7v8l5p2410gqa0mjr-packages.json.drv'... Going to be running update for following packages: - ipxe-unstable-2024-02-08 Press Enter key to continue... Running update for: - ipxe-unstable-2024-02-08: UPDATING ... - ipxe-unstable-2024-02-08: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/tools/misc/ipxe/default.nix b/pkgs/tools/misc/ipxe/default.nix index 293c32b3e6ff..d74759ad3117 100644 --- a/pkgs/tools/misc/ipxe/default.nix +++ b/pkgs/tools/misc/ipxe/default.nix @@ -33,7 +33,7 @@ in stdenv.mkDerivation rec { pname = "ipxe"; - version = "unstable-2024-02-08"; + version = "unstable-2024-03-19"; nativeBuildInputs = [ gnu-efi mtools openssl perl xorriso xz ] ++ lib.optional stdenv.hostPlatform.isx86 syslinux; depsBuildBuild = [ buildPackages.stdenv.cc ]; @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "ipxe"; repo = "ipxe"; - rev = "a846c4ccfc7db212dff792e081991df17268b4d5"; - hash = "sha256-4BvAwZ09EZJXBkdkZHLw0qjOqasNaN6RF4wmTfPVTWc="; + rev = "390bce9516ce3a4adf599762b6c965813332595e"; + hash = "sha256-GpPyNXWgG0LIfUeYURTx0DPssxQkGhbXPDlyTlWUa1s="; }; postPatch = lib.optionalString stdenv.hostPlatform.isAarch64 '' 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 ipxe nix build failed. /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: bin-x86_64-efi/blib.a(gcm.o): in function `gcm_setiv': /build/source/src/crypto/gcm.c:474:(.text.gcm_setiv+0x1b): undefined reference to `build_assert_474' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:475:(.text.gcm_setiv+0x29): undefined reference to `build_assert_475' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:476:(.text.gcm_setiv+0x37): undefined reference to `build_assert_476' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:477:(.text.gcm_setiv+0x45): undefined reference to `build_assert_477' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:479:(.text.gcm_setiv+0x53): undefined reference to `build_assert_479' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: bin-x86_64-efi/snp.efi.tmp: hidden symbol `build_assert_476' isn't defined /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: final link failed: bad value make[1]: *** [Makefile.housekeeping:1233: bin-x86_64-efi/snp.efi.tmp] Error 1 make[1]: *** Waiting for unfinished jobs.... /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: bin-x86_64-efi/blib.a(gcm.o): in function `gcm_setiv': /build/source/src/crypto/gcm.c:474:(.text.gcm_setiv+0x1b): undefined reference to `build_assert_474' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:475:(.text.gcm_setiv+0x29): undefined reference to `build_assert_475' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:476:(.text.gcm_setiv+0x37): undefined reference to `build_assert_476' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:477:(.text.gcm_setiv+0x45): undefined reference to `build_assert_477' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:479:(.text.gcm_setiv+0x53): undefined reference to `build_assert_479' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: bin-x86_64-efi/ipxe.efi.tmp: hidden symbol `build_assert_474' isn't defined /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: final link failed: bad value make[1]: *** [Makefile.housekeeping:1233: bin-x86_64-efi/ipxe.efi.tmp] Error 1 /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: bin-x86_64-efi/blib.a(gcm.o): in function `gcm_setiv': /build/source/src/crypto/gcm.c:474:(.text.gcm_setiv+0x1b): undefined reference to `build_assert_474' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:475:(.text.gcm_setiv+0x29): undefined reference to `build_assert_475' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:476:(.text.gcm_setiv+0x37): undefined reference to `build_assert_476' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:477:(.text.gcm_setiv+0x45): undefined reference to `build_assert_477' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: /build/source/src/crypto/gcm.c:479:(.text.gcm_setiv+0x53): undefined reference to `build_assert_479' /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: bin-x86_64-efi/ipxe.efidrv.tmp: hidden symbol `build_assert_474' isn't defined /nix/store/j2y057vz3i19yh4zjsan1s3q256q15rd-binutils-2.41/bin/ld: final link failed: bad value make[1]: *** [Makefile.housekeeping:1233: bin-x86_64-efi/ipxe.efidrv.tmp] Error 1 rm bin-x86_64-efi/version.snp.efi.o bin-x86_64-efi/version.ipxe.efidrv.o bin-x86_64-efi/version.ipxe.efi.o make: *** [Makefile.housekeeping:270: bin-x86_64-efi/ipxe.efi] Error 2 [result] Failed to update ipxe 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.moto, using log file: /var/log/nixpkgs-update/python311Packages.moto/2024-03-21.log python311Packages.moto 0 -> 1 attrpath: python311Packages.moto 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/azw6c4njzdvpi18v9mnl72z9acsn26m5-packages.json.drv building '/nix/store/azw6c4njzdvpi18v9mnl72z9acsn26m5-packages.json.drv'... Going to be running update for following packages: - python3.11-moto-5.0.3 Press Enter key to continue... Running update for: - python3.11-moto-5.0.3: UPDATING ... - python3.11-moto-5.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.moto 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-notificationhubs, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-notificationhubs/2024-03-21.log python311Packages.azure-mgmt-notificationhubs 0 -> 1 attrpath: python311Packages.azure-mgmt-notificationhubs 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/xmabnclshjl9wy80jrry3rnxcdbp2d7q-packages.json.drv building '/nix/store/xmabnclshjl9wy80jrry3rnxcdbp2d7q-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-mgmt-notificationhubs-8.0.0 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-notificationhubs-8.0.0: UPDATING ... - python3.11-azure-mgmt-notificationhubs-8.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-notificationhubs 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.clipboard-indicator, using log file: /var/log/nixpkgs-update/gnomeExtensions.clipboard-indicator/2024-03-21.log gnomeExtensions.clipboard-indicator 57 -> 436.44.1 https://repology.org/project/gnome:clipboard-indicator/versions attrpath: gnomeExtensions.clipboard-indicator Checking auto update branch... No auto update branch exists Old version 57" 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.clipboard-indicator 57 -> 436.44.1 https://repology.org/project/gnome:clipboard-indicator/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath php81Extensions.redis, using log file: /var/log/nixpkgs-update/php81Extensions.redis/2024-03-21.log php81Extensions.redis 0 -> 1 attrpath: php81Extensions.redis 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/5n7psh29131cnjmpkhf4qmkccpm7mvq6-packages.json.drv building '/nix/store/5n7psh29131cnjmpkhf4qmkccpm7mvq6-packages.json.drv'... Going to be running update for following packages: - php-redis-6.0.2 Press Enter key to continue... Running update for: - php-redis-6.0.2: UPDATING ... - php-redis-6.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update php81Extensions.redis 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.pycmarkgfm, using log file: /var/log/nixpkgs-update/python311Packages.pycmarkgfm/2024-03-21.log python311Packages.pycmarkgfm 0 -> 1 attrpath: python311Packages.pycmarkgfm 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/41f12fbcmwwlzazsf250n9jwqrpcxqa5-packages.json.drv building '/nix/store/41f12fbcmwwlzazsf250n9jwqrpcxqa5-packages.json.drv'... Going to be running update for following packages: - python3.11-pycmarkgfm-1.2.1 Press Enter key to continue... Running update for: - python3.11-pycmarkgfm-1.2.1: UPDATING ... - python3.11-pycmarkgfm-1.2.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pycmarkgfm 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 libyang, using log file: /var/log/nixpkgs-update/libyang/2024-03-21.log libyang 0 -> 1 attrpath: libyang 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/f1hx96fhqci7nlgz69wb09b5y2sbi2ry-packages.json.drv building '/nix/store/f1hx96fhqci7nlgz69wb09b5y2sbi2ry-packages.json.drv'... Going to be running update for following packages: - libyang-2.1.148 Press Enter key to continue... Running update for: - libyang-2.1.148: UPDATING ... - libyang-2.1.148: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update libyang 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 fxload, using log file: /var/log/nixpkgs-update/fxload/2024-03-21.log fxload 1.0.27 -> 2013_01_03 https://repology.org/project/fxload/versions attrpath: fxload Checking auto update branch... No auto update branch exists Old version 1.0.27" not present in master derivation file with contents: { lib , stdenv , libusb1 }: stdenv.mkDerivation rec { pname = "fxload"; version = libusb1.version; dontUnpack = true; dontBuild = true; dontConfigure = true; dontInstall = true; dontPatch = true; dontPatchELF = true; # fxload binary exist inside the `examples/bin` directory of `libusb1` postFixup = '' mkdir -p $out/bin ln -s ${passthru.libusb}/examples/bin/fxload $out/bin/fxload ''; passthru.libusb = libusb1.override { withExamples = true; }; meta = with lib; { homepage = "https://github.com/libusb/libusb"; description = "Tool to upload firmware to into an21, fx, fx2, fx2lp and fx3 ez-usb devices"; mainProgram = "fxload"; license = licenses.gpl2Only; platforms = platforms.linux; maintainers = with maintainers; [ realsnick ]; }; } [result] Failed to update fxload 1.0.27 -> 2013_01_03 https://repology.org/project/fxload/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-s3control, using log file: /var/log/nixpkgs-update/python311Packages.mypy-boto3-s3control/2024-03-21.log python311Packages.mypy-boto3-s3control 1.34.18 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases attrpath: python311Packages.mypy-boto3-s3control 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/8j32s029smzlnl4qqyzm1ld7ffidjv0z-packages.json.drv building '/nix/store/8j32s029smzlnl4qqyzm1ld7ffidjv0z-packages.json.drv'... Going to be running update for following packages: - python3.11-mypy-boto3-s3control-1.34.18 Press Enter key to continue... Running update for: - python3.11-mypy-boto3-s3control-1.34.18: UPDATING ... - python3.11-mypy-boto3-s3control-1.34.18: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mypy-boto3-s3control 1.34.18 -> 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 bsc, using log file: /var/log/nixpkgs-update/bsc/2024-03-21.log bsc 3.1.0 -> 3.2.4 https://repology.org/project/libbsc/versions attrpath: bsc 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/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv building '/nix/store/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv'... trying https://github.com/IlyaGrebnov/libbsc/archive/3.2.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/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/IlyaGrebnov/libbsc/archive/3.2.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/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'bsc.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv /nix/store/j3j4qkgcjgpwm7ldx482wasm4fgrlxkm-bsc-3.2.4.drv building '/nix/store/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv'... trying https://github.com/IlyaGrebnov/libbsc/archive/3.2.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/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/IlyaGrebnov/libbsc/archive/3.2.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/054b0vpra40i02nkmfc3cr8p2lr6hyw3-source.drv'. error: 1 dependencies of derivation '/nix/store/j3j4qkgcjgpwm7ldx482wasm4fgrlxkm-bsc-3.2.4.drv' failed to build [result] Failed to update bsc 3.1.0 -> 3.2.4 https://repology.org/project/libbsc/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath multipass, using log file: /var/log/nixpkgs-update/multipass/2024-03-21.log multipass 1.13.1 -> 18.06 https://repology.org/project/multipass/versions attrpath: multipass 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 multipass 1.13.1 -> 18.06 https://repology.org/project/multipass/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.generate_html, using log file: /var/log/nixpkgs-update/octavePackages.generate_html/2024-03-21.log octavePackages.generate_html 0 -> 1 attrpath: octavePackages.generate_html 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/l4p7pl04r8i3d3jy7yjfkjixmjx9a7qy-packages.json.drv building '/nix/store/l4p7pl04r8i3d3jy7yjfkjixmjx9a7qy-packages.json.drv'... Going to be running update for following packages: - octave-8.4.0-generate_html-0.3.3 Press Enter key to continue... Running update for: - octave-8.4.0-generate_html-0.3.3: UPDATING ... - octave-8.4.0-generate_html-0.3.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update octavePackages.generate_html 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.scikit-tda, using log file: /var/log/nixpkgs-update/python312Packages.scikit-tda/2024-03-21.log python312Packages.scikit-tda 1.0.0 -> 1.1.0 https://github.com/scikit-tda/scikit-tda/releases attrpath: python312Packages.scikit-tda 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/q21lp6qxxwjy2hyabvgd72k14j29ghfb-packages.json.drv building '/nix/store/q21lp6qxxwjy2hyabvgd72k14j29ghfb-packages.json.drv'... Going to be running update for following packages: - python3.12-scikit-tda-1.0.0 Press Enter key to continue... Running update for: - python3.12-scikit-tda-1.0.0: UPDATING ... - python3.12-scikit-tda-1.0.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/scikit-tda/default.nix b/pkgs/development/python-modules/scikit-tda/default.nix index c4730484f726..d9709f6c8624 100644 --- a/pkgs/development/python-modules/scikit-tda/default.nix +++ b/pkgs/development/python-modules/scikit-tda/default.nix @@ -19,15 +19,15 @@ buildPythonPackage rec { pname = "scikit-tda"; - version = "1.0.0"; + version = "1.1.0"; format = "setuptools"; disabled = isPy27; src = fetchFromGitHub { owner = "scikit-tda"; repo = "scikit-tda"; - rev = "v${version}"; - sha256 = "0yhmf5jmxywyj6l9q0rfv9r8wpdk063fvvfnb4azwwccblgz37rj"; + rev = "refs/tags/v${version}"; + sha256 = "sha256-PdjEPMX5QEd8ZxvmoEkZ3z8XsAfWBNxYOkte/808vAo="; }; propagatedBuildInputs = [ [options] github_user: r-ryantm, pull_request: YES, batch_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.stim, using log file: /var/log/nixpkgs-update/python312Packages.stim/2024-03-21.log python312Packages.stim 1.12.1 -> 1.13.0 https://repology.org/project/python:stim/versions attrpath: python312Packages.stim 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/xgz6ahjq140z4520wilcrynpnl6azzcw-packages.json.drv building '/nix/store/xgz6ahjq140z4520wilcrynpnl6azzcw-packages.json.drv'... Going to be running update for following packages: - python3.12-stim-1.12.1 Press Enter key to continue... Running update for: - python3.12-stim-1.12.1: UPDATING ... - python3.12-stim-1.12.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/stim/default.nix b/pkgs/development/python-modules/stim/default.nix index 46aba99fb178..3e95b74ef9ef 100644 --- a/pkgs/development/python-modules/stim/default.nix +++ b/pkgs/development/python-modules/stim/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "stim"; - version = "1.12.1"; + version = "1.13.0"; pyproject = true; disabled = pythonOlder "3.6"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "quantumlib"; repo = "Stim"; rev = "refs/tags/v${version}"; - hash = "sha256-vDpW8cn1JPARDIXpLyK9uenhHmva0FwnWIDV7dSHbIY="; + hash = "sha256-anJvDHLZ470iNw0U7hq9xGBacDgqYO9ZcmmdCt9pefg="; }; postPatch = '' 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.stim nix build failed. ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_cx_swap_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_stim_sampler_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_sweep_pauli_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_stim_to_cirq_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_obs_annotation_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_cz_swap_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_stim_to_cirq_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_sweep_pauli_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_shift_coords_annotation_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_sweep_pauli_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_det_annotation_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_stim_sampler_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_measure_and_or_reset_gate_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_stim_to_cirq_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_obs_annotation_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_sweep_pauli_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_shift_coords_annotation_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_stim_sampler_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_stim_to_cirq_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_sweep_pauli_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ERROR glue/cirq/stimcirq/_two_qubit_asymmetric_depolarize_test.py - AttributeError: module 'mpl_toolkits.mplot3d' has no attribute 'axes3d' ================= 371 passed, 2 skipped, 264 errors in 10.92s ================== /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1578: pop_var_context: head of shell_variables not a function context [result] Failed to update python312Packages.stim 1.12.1 -> 1.13.0 https://repology.org/project/python:stim/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath composer-require-checker, using log file: /var/log/nixpkgs-update/composer-require-checker/2024-03-21.log composer-require-checker 4.8.0 -> 4.10.0 https://github.com/maglnet/ComposerRequireChecker/releases attrpath: composer-require-checker 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 composer-require-checker 4.8.0 -> 4.10.0 https://github.com/maglnet/ComposerRequireChecker/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 snyk, using log file: /var/log/nixpkgs-update/snyk/2024-03-21.log snyk 1.1284.0 -> 1.1285.0 https://repology.org/project/snyk/versions attrpath: snyk 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] deps hashes equal; no update necessary: sha256-aode80HyGSyZoEiCdsnEPrVo8KSqTW0GxxsGdRyNdiQ= [result] Failed to update snyk 1.1284.0 -> 1.1285.0 https://repology.org/project/snyk/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.booleanoperations, using log file: /var/log/nixpkgs-update/python311Packages.booleanoperations/2024-03-21.log python311Packages.booleanoperations 0 -> 1 attrpath: python311Packages.booleanoperations 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/rcflpxw9xd83h4m6xrwdmkr9qsg6wkvg-packages.json.drv building '/nix/store/rcflpxw9xd83h4m6xrwdmkr9qsg6wkvg-packages.json.drv'... Going to be running update for following packages: - python3.11-booleanOperations-0.9.0 Press Enter key to continue... Running update for: - python3.11-booleanOperations-0.9.0: UPDATING ... - python3.11-booleanOperations-0.9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.booleanoperations 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-constraint, using log file: /var/log/nixpkgs-update/python311Packages.python-constraint/2024-03-21.log python311Packages.python-constraint 0 -> 1 attrpath: python311Packages.python-constraint 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/15mkpbj8z2kxsk2hmjxknjxzjvhnar50-packages.json.drv building '/nix/store/15mkpbj8z2kxsk2hmjxknjxzjvhnar50-packages.json.drv'... Going to be running update for following packages: - python3.11-python-constraint-1.4.0 Press Enter key to continue... Running update for: - python3.11-python-constraint-1.4.0: UPDATING ... - python3.11-python-constraint-1.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-constraint 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-depgraph, using log file: /var/log/nixpkgs-update/cargo-depgraph/2024-03-21.log cargo-depgraph 1.5.0 -> 1.6.0 https://repology.org/project/cargo-depgraph/versions attrpath: cargo-depgraph 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-OJOw0V4u/bK4vw3bU2wKVeOqP205ehfZMKJ6qIpYDLU= 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 cargo-depgraph nix build failed. got build log for 'cargo-depgraph' from 'daemon' @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/r60vhnp0ifgiy926zw6ggybaq6s24kyn-source source root is source Executing cargoSetupPostUnpackHook unpacking source archive /nix/store/kp9s0sqz7nlj6yaw15asf1mh2ww5yri2-cargo-depgraph-1.6.0-vendor.tar.gz Finished cargoSetupPostUnpackHook @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase Executing cargoSetupPostPatchHook Validating consistency between /build/source/Cargo.lock and /build/cargo-depgraph-1.6.0-vendor.tar.gz/Cargo.lock Finished cargoSetupPostPatchHook @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } Running phase: updateAutotoolsGnuConfigScriptsPhase @nix { "action": "setPhase", "phase": "configurePhase" } Running phase: configurePhase @nix { "action": "setPhase", "phase": "buildPhase" } Running phase: buildPhase Executing cargoBuildHook ++ env CC_X86_64_UNKNOWN_LINUX_GNU=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/cc CXX_X86_64_UNKNOWN_LINUX_GNU=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/c++ CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/cc CC_X86_64_UNKNOWN_LINUX_GNU=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/cc CXX_X86_64_UNKNOWN_LINUX_GNU=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/c++ CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/cc CARGO_BUILD_TARGET=x86_64-unknown-linux-gnu HOST_CC=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/cc HOST_CXX=/nix/store/kvlhk0gpm2iz1asbw1xjac2ch0r8kyw9-gcc-wrapper-13.2.0/bin/c++ cargo build -j 24 --target x86_64-unknown-linux-gnu --frozen --profile release error: the lock file /build/source/Cargo.lock needs to be updated but --frozen was passed to prevent this If you want to try to generate the lock file without accessing the network, remove the --frozen flag and use --offline instead. [result] Failed to update cargo-depgraph 1.5.0 -> 1.6.0 https://repology.org/project/cargo-depgraph/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sweet-nova, using log file: /var/log/nixpkgs-update/sweet-nova/2024-03-21.log sweet-nova 0 -> 1 attrpath: sweet-nova 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/x095yvm01xxa61p9dbwzxnx0y7ibyma6-packages.json.drv building '/nix/store/x095yvm01xxa61p9dbwzxnx0y7ibyma6-packages.json.drv'... Going to be running update for following packages: - sweet-nova-unstable-2023-09-30 Press Enter key to continue... Running update for: - sweet-nova-unstable-2023-09-30: UPDATING ... - sweet-nova-unstable-2023-09-30: ERROR --- SHOWING ERROR LOG FOR sweet-nova-unstable-2023-09-30 ---------------------- + 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=sweet-nova-unstable-2023-09-30 + [[ -n '' ]] + pname=sweet-nova + [[ -n '' ]] + version=unstable-2023-09-30 + [[ -n '' ]] + attr_path=sweet-nova + echo '# sweet-nova-unstable-2023-09-30' ++ sh -c '/nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/list-git-tags --pname=sweet-nova --attr-path=sweet-nova --file="update-git-commits.txt"' + tags='2.0 v1.10.5 v3.0 v4.0' + for tag in $tags + echo '# found sweet-nova version: 2.0' + for tag in $tags + echo '# found sweet-nova version: v1.10.5' + for tag in $tags + echo '# found sweet-nova version: v3.0' + for tag in $tags + echo '# found sweet-nova version: v4.0' + '[' -n '' ']' ++ echo '2.0 v1.10.5 v3.0 v4.0' ++ /nix/store/nk45h8dy9zlx4d0b9ghf5xnj9pypyqgh-gnugrep-3.11/bin/grep '^[0-9]' + tags=2.0 ++ echo 2.0 ++ /nix/store/43dnc4h7x0p8ybaq38aaxkhy722kzrx2-coreutils-9.4/bin/sort --reverse --version-sort + tags=2.0 + for latest_tag in $tags + version_is_ignored 2.0 + local tag=2.0 + '[' -n '' ']' + version_is_unstable 2.0 + local tag=2.0 + local enforce= + '[' -n '' -o -n '' ']' + '[' -n '' -o -n '' ']' + return 1 + version_is_unstable 2.0 enforce + local tag=2.0 + local enforce=enforce + '[' -n '' -o -n enforce ']' ++ echo 2.0 ++ /nix/store/kqb7yncgd6a17nlgbixhcvcwync0nqg0-gnused-4.9/bin/sed -rne 's,^[0-9]+\.([0-9]+).*,\1,p' + local minor=0 + '[' 0 -eq 1 ']' + '[' -n '' -o -n enforce ']' ++ echo 2.0 ++ /nix/store/kqb7yncgd6a17nlgbixhcvcwync0nqg0-gnused-4.9/bin/sed -rne 's,^[0-9]+\.[0-9]+\.([0-9]+).*$,\1,p' + local patchlevel= + (( patchlevel >= 90 )) + return 1 + break + '[' -n 2.0 ']' + '[' unstable-2023-09-30 '!=' 2.0 ']' ++ EDITOR=echo ++ /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix edit --extra-experimental-features nix-command -f. sweet-nova + pfile=/var/cache/nixpkgs-update/worker/worktree/sweet-nova/pkgs/data/themes/sweet-nova/default.nix + echo ' git add /var/cache/nixpkgs-update/worker/worktree/sweet-nova/pkgs/data/themes/sweet-nova/default.nix ' + echo ' git commit -m '\''sweet-nova: unstable-2023-09-30 -> 2.0'\''' + /nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/update-source-version --print-changes sweet-nova 2.0 update-source-version: error: Both the old and new source hashes of 'sweet-nova.src' were equivalent. Please fix the package's source URL to be dependent on '${version}'! --- SHOWING ERROR LOG FOR sweet-nova-unstable-2023-09-30 ---------------------- The update script for sweet-nova-unstable-2023-09-30 failed with exit code 1 [result] Failed to update sweet-nova 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.setuptools-changelog-shortener, using log file: /var/log/nixpkgs-update/python311Packages.setuptools-changelog-shortener/2024-03-21.log python311Packages.setuptools-changelog-shortener 0 -> 1 attrpath: python311Packages.setuptools-changelog-shortener 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/7dzrs0w35rsgw3zqfb7wx5pjr8fzh6nm-packages.json.drv building '/nix/store/7dzrs0w35rsgw3zqfb7wx5pjr8fzh6nm-packages.json.drv'... Going to be running update for following packages: - python3.11-setuptools-changelog-shortener-0.2.0 Press Enter key to continue... Running update for: - python3.11-setuptools-changelog-shortener-0.2.0: UPDATING ... - python3.11-setuptools-changelog-shortener-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.setuptools-changelog-shortener 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.nuheat, using log file: /var/log/nixpkgs-update/python311Packages.nuheat/2024-03-21.log python311Packages.nuheat 0 -> 1 attrpath: python311Packages.nuheat 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/psf9hdsmfjfrar99ss5pldxp5i4h5qa3-packages.json.drv building '/nix/store/psf9hdsmfjfrar99ss5pldxp5i4h5qa3-packages.json.drv'... Going to be running update for following packages: - python3.11-nuheat-1.0.1 Press Enter key to continue... Running update for: - python3.11-nuheat-1.0.1: UPDATING ... - python3.11-nuheat-1.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nuheat 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 portfolio, using log file: /var/log/nixpkgs-update/portfolio/2024-03-21.log portfolio 0 -> 1 attrpath: portfolio 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/s59iz5jpgj86pbp48rnar66vxvg7hb3c-update.sh.drv /nix/store/lg3jqkx6vyp2k9qfik2ln0srafmrh76l-packages.json.drv building '/nix/store/s59iz5jpgj86pbp48rnar66vxvg7hb3c-update.sh.drv'... building '/nix/store/lg3jqkx6vyp2k9qfik2ln0srafmrh76l-packages.json.drv'... Going to be running update for following packages: - PortfolioPerformance-0.68.2 Press Enter key to continue... Running update for: - PortfolioPerformance-0.68.2: UPDATING ... - PortfolioPerformance-0.68.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update portfolio 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 multi-platform srcs in file. [result] Failed to update electron_12 12.2.3 -> 29.1.5 https://github.com/electron/electron/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.dissect-fat, using log file: /var/log/nixpkgs-update/python311Packages.dissect-fat/2024-03-21.log python311Packages.dissect-fat 0 -> 1 attrpath: python311Packages.dissect-fat 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/kpvf6ng0xv8nfxr7vlwl2x7h0kr2rs83-packages.json.drv building '/nix/store/kpvf6ng0xv8nfxr7vlwl2x7h0kr2rs83-packages.json.drv'... Going to be running update for following packages: - python3.11-dissect-fat-3.8 Press Enter key to continue... Running update for: - python3.11-dissect-fat-3.8: UPDATING ... - python3.11-dissect-fat-3.8: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dissect-fat 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.whirlpool-sixth-sense, using log file: /var/log/nixpkgs-update/python311Packages.whirlpool-sixth-sense/2024-03-21.log python311Packages.whirlpool-sixth-sense 0 -> 1 attrpath: python311Packages.whirlpool-sixth-sense 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/4qpd8cjpjix8k5i6gpnkp73gbv5wdspc-packages.json.drv building '/nix/store/4qpd8cjpjix8k5i6gpnkp73gbv5wdspc-packages.json.drv'... Going to be running update for following packages: - python3.11-whirlpool-sixth-sense-0.18.5 Press Enter key to continue... Running update for: - python3.11-whirlpool-sixth-sense-0.18.5: UPDATING ... - python3.11-whirlpool-sixth-sense-0.18.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.whirlpool-sixth-sense 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.fastcluster, using log file: /var/log/nixpkgs-update/rPackages.fastcluster/2024-03-21.log rPackages.fastcluster 1.2.3 -> 1.2.6 https://repology.org/project/r:fastcluster/versions attrpath: rPackages.fastcluster 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.fastcluster 1.2.3 -> 1.2.6 https://repology.org/project/r:fastcluster/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.genpy, using log file: /var/log/nixpkgs-update/python311Packages.genpy/2024-03-21.log python311Packages.genpy 0 -> 1 attrpath: python311Packages.genpy 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/mk8n5g2n35d5b5myc7afz1vm6hd6ssw2-packages.json.drv building '/nix/store/mk8n5g2n35d5b5myc7afz1vm6hd6ssw2-packages.json.drv'... Going to be running update for following packages: - python3.11-genpy-2022.1 Press Enter key to continue... Running update for: - python3.11-genpy-2022.1: UPDATING ... - python3.11-genpy-2022.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.genpy 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.mypy-boto3-iotfleetwise, using log file: /var/log/nixpkgs-update/python312Packages.mypy-boto3-iotfleetwise/2024-03-21.log python312Packages.mypy-boto3-iotfleetwise 1.34.20 -> 7.23.2 https://github.com/youtype/mypy_boto3_builder/releases attrpath: python312Packages.mypy-boto3-iotfleetwise 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/bl5s2n56aajbinadqa15j6xd8jx4q2hq-packages.json.drv building '/nix/store/bl5s2n56aajbinadqa15j6xd8jx4q2hq-packages.json.drv'... Going to be running update for following packages: - python3.12-mypy-boto3-iotfleetwise-1.34.20 Press Enter key to continue... Running update for: - python3.12-mypy-boto3-iotfleetwise-1.34.20: UPDATING ... - python3.12-mypy-boto3-iotfleetwise-1.34.20: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.mypy-boto3-iotfleetwise 1.34.20 -> 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 python311Packages.plyfile, using log file: /var/log/nixpkgs-update/python311Packages.plyfile/2024-03-21.log python311Packages.plyfile 0 -> 1 attrpath: python311Packages.plyfile 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/nhps575scx4h1a4ddfvpyyawpzyi9g1z-packages.json.drv building '/nix/store/nhps575scx4h1a4ddfvpyyawpzyi9g1z-packages.json.drv'... Going to be running update for following packages: - python3.11-plyfile-1.0.2 Press Enter key to continue... Running update for: - python3.11-plyfile-1.0.2: UPDATING ... - python3.11-plyfile-1.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.plyfile 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 r10k, using log file: /var/log/nixpkgs-update/r10k/2024-03-21.log r10k 0 -> 1 attrpath: r10k 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 r10k 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.openllm-core, using log file: /var/log/nixpkgs-update/python311Packages.openllm-core/2024-03-21.log python311Packages.openllm-core 0 -> 1 attrpath: python311Packages.openllm-core 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/kd9hxj438h21dxvk3avwm3crv27apdjr-packages.json.drv building '/nix/store/kd9hxj438h21dxvk3avwm3crv27apdjr-packages.json.drv'... Going to be running update for following packages: - python3.11-openllm-core-0.4.44 Press Enter key to continue... Running update for: - python3.11-openllm-core-0.4.44: UPDATING ... - python3.11-openllm-core-0.4.44: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.openllm-core 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.inquirerpy, using log file: /var/log/nixpkgs-update/python311Packages.inquirerpy/2024-03-21.log python311Packages.inquirerpy 0 -> 1 attrpath: python311Packages.inquirerpy 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/09wyw37nk5xcmv9accz9nyqr8zcwif79-packages.json.drv building '/nix/store/09wyw37nk5xcmv9accz9nyqr8zcwif79-packages.json.drv'... Going to be running update for following packages: - python3.11-inquirerpy-0.3.4 Press Enter key to continue... Running update for: - python3.11-inquirerpy-0.3.4: UPDATING ... - python3.11-inquirerpy-0.3.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.inquirerpy 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.vcversioner, using log file: /var/log/nixpkgs-update/python311Packages.vcversioner/2024-03-21.log python311Packages.vcversioner 0 -> 1 attrpath: python311Packages.vcversioner 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/i21dffm904xm2rz3n8nraqynqwlwab6a-packages.json.drv building '/nix/store/i21dffm904xm2rz3n8nraqynqwlwab6a-packages.json.drv'... Going to be running update for following packages: - python3.11-vcversioner-2.16.0.0 Press Enter key to continue... Running update for: - python3.11-vcversioner-2.16.0.0: UPDATING ... - python3.11-vcversioner-2.16.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.vcversioner 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 wad, using log file: /var/log/nixpkgs-update/wad/2024-03-21.log wad 0 -> 1 attrpath: wad 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/3ssdjl8kg138lc4f216s05h8kydn2crj-packages.json.drv building '/nix/store/3ssdjl8kg138lc4f216s05h8kydn2crj-packages.json.drv'... Going to be running update for following packages: - wad-0.4.6 Press Enter key to continue... Running update for: - wad-0.4.6: UPDATING ... - wad-0.4.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update wad 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, using log file: /var/log/nixpkgs-update/python311Packages.apispec/2024-03-21.log python311Packages.apispec 0 -> 1 attrpath: python311Packages.apispec 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/dc4s57843m33fbccp3zd6a0w0z6fdqvb-packages.json.drv building '/nix/store/dc4s57843m33fbccp3zd6a0w0z6fdqvb-packages.json.drv'... Going to be running update for following packages: - python3.11-apispec-6.5.0 Press Enter key to continue... Running update for: - python3.11-apispec-6.5.0: UPDATING ... - python3.11-apispec-6.5.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/apispec/default.nix b/pkgs/development/python-modules/apispec/default.nix index d39d59325d17..eccee0f3e180 100644 --- a/pkgs/development/python-modules/apispec/default.nix +++ b/pkgs/development/python-modules/apispec/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "apispec"; - version = "6.5.0"; + version = "6.6.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-wDpNhIrnDpuyJp3U5NMNjsfsBp0k756bQi48vRqf55Q="; + hash = "sha256-wIRvjqpRGcRrLs/pvCTtGduohF+GVdALUd3SlqEOpMs="; }; nativeBuildInputs = [ An auto update branch exists with message `python311Packages.apispec: 6.5.0 -> 6.6.0`. New version is 6.6.0. An auto update branch exists with an equal or greater version [result] Failed to update python311Packages.apispec 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.lmfit, using log file: /var/log/nixpkgs-update/python311Packages.lmfit/2024-03-21.log python311Packages.lmfit 0 -> 1 attrpath: python311Packages.lmfit 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/rnlpl8zxr2h5qn7x7h4bc7kgkvqdhw06-packages.json.drv building '/nix/store/rnlpl8zxr2h5qn7x7h4bc7kgkvqdhw06-packages.json.drv'... Going to be running update for following packages: - python3.11-lmfit-1.2.2 Press Enter key to continue... Running update for: - python3.11-lmfit-1.2.2: UPDATING ... - python3.11-lmfit-1.2.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.lmfit 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 properties-cpp, using log file: /var/log/nixpkgs-update/properties-cpp/2024-03-21.log properties-cpp 0 -> 1 attrpath: properties-cpp 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/w1wvwiigqn5x8cx6p4z66wqw6hjsl6ia-packages.json.drv building '/nix/store/w1wvwiigqn5x8cx6p4z66wqw6hjsl6ia-packages.json.drv'... Going to be running update for following packages: - properties-cpp-0.0.3 Press Enter key to continue... Running update for: - properties-cpp-0.0.3: UPDATING ... - properties-cpp-0.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update properties-cpp 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.pyatome, using log file: /var/log/nixpkgs-update/python311Packages.pyatome/2024-03-21.log python311Packages.pyatome 0 -> 1 attrpath: python311Packages.pyatome 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/yjga5g1y18wnzg5q4dh96vf57l0vi4jf-packages.json.drv building '/nix/store/yjga5g1y18wnzg5q4dh96vf57l0vi4jf-packages.json.drv'... Going to be running update for following packages: - python3.11-pyatome-0.1.2 Press Enter key to continue... Running update for: - python3.11-pyatome-0.1.2: UPDATING ... - python3.11-pyatome-0.1.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyatome 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 glade, using log file: /var/log/nixpkgs-update/glade/2024-03-21.log glade 0 -> 1 attrpath: glade Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update glade 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.aigpy, using log file: /var/log/nixpkgs-update/python311Packages.aigpy/2024-03-21.log python311Packages.aigpy 0 -> 1 attrpath: python311Packages.aigpy 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/5daka8ilwsyg4vc46yzi6hxsshsagpzq-packages.json.drv building '/nix/store/5daka8ilwsyg4vc46yzi6hxsshsagpzq-packages.json.drv'... Going to be running update for following packages: - python3.11-aigpy-2022.7.8.1 Press Enter key to continue... Running update for: - python3.11-aigpy-2022.7.8.1: UPDATING ... - python3.11-aigpy-2022.7.8.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aigpy 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 ophis, using log file: /var/log/nixpkgs-update/ophis/2024-03-21.log ophis 0 -> 1 attrpath: ophis 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/8llaldkd27jvw7d6fnms43if5qhvw05f-packages.json.drv building '/nix/store/8llaldkd27jvw7d6fnms43if5qhvw05f-packages.json.drv'... Going to be running update for following packages: - ophis-unstable-2019-04-13 Press Enter key to continue... Running update for: - ophis-unstable-2019-04-13: UPDATING ... - ophis-unstable-2019-04-13: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update ophis 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.tcolorpy, using log file: /var/log/nixpkgs-update/python311Packages.tcolorpy/2024-03-21.log python311Packages.tcolorpy 0 -> 1 attrpath: python311Packages.tcolorpy 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/k6f52laal9qqmdbzz47y496dzmm95r3q-packages.json.drv building '/nix/store/k6f52laal9qqmdbzz47y496dzmm95r3q-packages.json.drv'... Going to be running update for following packages: - python3.11-tcolorpy-0.1.4 Press Enter key to continue... Running update for: - python3.11-tcolorpy-0.1.4: UPDATING ... - python3.11-tcolorpy-0.1.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.tcolorpy 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 host, using log file: /var/log/nixpkgs-update/host/2024-03-21.log host 9.18.24 -> 9.18.25 https://repology.org/project/bind/versions attrpath: host Checking auto update branch... [outpaths] eval start [outpaths] eval end [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/hw2dyfp2l4a4xjk7yglnh0k9qmz6mqgm-packages.json.drv building '/nix/store/hw2dyfp2l4a4xjk7yglnh0k9qmz6mqgm-packages.json.drv'... Going to be running update for following packages: - bind-9.18.24 Press Enter key to continue... Running update for: - bind-9.18.24: UPDATING ... - bind-9.18.24: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 1046ead01ad0..c1507d4ea5cd 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { pname = "bind"; - version = "9.18.24"; + version = "9.18.25"; src = fetchurl { url = "https://downloads.isc.org/isc/bind9/${version}/${pname}-${version}.tar.xz"; - hash = "sha256-cJ1zAjyRFd2tO6tltsjHmlkBltDRFPXQyiUz29Ut32Y="; + hash = "sha256-WkpwQyoz0Anw5unbsyiq56XidQfpjii/PAxrJQzLKrM="; }; outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ]; No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing Received ExitFailure 1 when running Shell command: readlink ./result Received ExitFailure 1 when running Shell command: readlink ./result-bin Received ExitFailure 1 when running Shell command: readlink ./result-dev Could not find result link. [result] Failed to update host 9.18.24 -> 9.18.25 https://repology.org/project/bind/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.asyncstdlib, using log file: /var/log/nixpkgs-update/python312Packages.asyncstdlib/2024-03-21.log python312Packages.asyncstdlib 3.12.1 -> 3.12.2 https://repology.org/project/python:asyncstdlib/versions attrpath: python312Packages.asyncstdlib 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/pqk687g3yv4akcb8jlgnz493kzangs5x-packages.json.drv building '/nix/store/pqk687g3yv4akcb8jlgnz493kzangs5x-packages.json.drv'... Going to be running update for following packages: - python3.12-asyncstdlib-3.12.1 Press Enter key to continue... Running update for: - python3.12-asyncstdlib-3.12.1: UPDATING ... - python3.12-asyncstdlib-3.12.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/asyncstdlib/default.nix b/pkgs/development/python-modules/asyncstdlib/default.nix index 57306bd01a4d..3833c868f9c8 100644 --- a/pkgs/development/python-modules/asyncstdlib/default.nix +++ b/pkgs/development/python-modules/asyncstdlib/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "asyncstdlib"; - version = "3.12.1"; + version = "3.12.2"; pyproject = true; disabled = pythonOlder "3.9"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "maxfischer2781"; repo = "asyncstdlib"; rev = "refs/tags/v${version}"; - hash = "sha256-F7jS2EHiq+gK4a6+wJ8CA2YvwR37PP3yvbsLp3uE8R8="; + hash = "sha256-5DQM8m3aeCZAXOi+Rm+iM409juBBYdZDNqBAbhyTm/M="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/21vwmi2ainqwb44j110fjswqy0m22dr7-python3.12-asyncstdlib-3.12.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)
7 packages failed to build:
  • home-assistant-component-tests.denonavr
  • python312Packages.denonavr
  • python312Packages.denonavr.dist
  • python312Packages.icontract
  • python312Packages.icontract.dist
  • python312Packages.pylddwrap
  • python312Packages.pylddwrap.dist
10 packages built:
  • python311Packages.asyncstdlib
  • python311Packages.asyncstdlib.dist
  • python311Packages.denonavr
  • python311Packages.denonavr.dist
  • python311Packages.icontract
  • python311Packages.icontract.dist
  • python311Packages.pylddwrap
  • python311Packages.pylddwrap.dist
  • python312Packages.asyncstdlib
  • python312Packages.asyncstdlib.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.asyncstdlib is: Python library that extends the Python asyncio standard library meta.homepage for python312Packages.asyncstdlib is: https://asyncstdlib.readthedocs.io/ meta.changelog for python312Packages.asyncstdlib is: https://github.com/maxfischer2781/asyncstdlib/releases/tag/v3.12.2 ###### 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.12.2 with grep in /nix/store/21vwmi2ainqwb44j110fjswqy0m22dr7-python3.12-asyncstdlib-3.12.2 - found 3.12.2 in filename of file in /nix/store/21vwmi2ainqwb44j110fjswqy0m22dr7-python3.12-asyncstdlib-3.12.2 ---
Rebuild report (if merged into master) (click to expand) ``` 9 total rebuild path(s) 9 package rebuild(s) First fifty rebuilds by attrpath home-assistant-component-tests.denonavr python311Packages.asyncstdlib python311Packages.denonavr python311Packages.icontract python311Packages.pylddwrap python312Packages.asyncstdlib python312Packages.denonavr python312Packages.icontract python312Packages.pylddwrap ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/21vwmi2ainqwb44j110fjswqy0m22dr7-python3.12-asyncstdlib-3.12.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 python312Packages.asyncstdlib https://github.com/r-ryantm/nixpkgs/archive/47ee8ee23a38915f4ac5050d457645484eb0a4d8.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/47ee8ee23a38915f4ac5050d457645484eb0a4d8#python312Packages.asyncstdlib ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/21vwmi2ainqwb44j110fjswqy0m22dr7-python3.12-asyncstdlib-3.12.2 ls -la /nix/store/21vwmi2ainqwb44j110fjswqy0m22dr7-python3.12-asyncstdlib-3.12.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)
7 packages failed to build:
  • home-assistant-component-tests.denonavr
  • python312Packages.denonavr
  • python312Packages.denonavr.dist
  • python312Packages.icontract
  • python312Packages.icontract.dist
  • python312Packages.pylddwrap
  • python312Packages.pylddwrap.dist
10 packages built:
  • python311Packages.asyncstdlib
  • python311Packages.asyncstdlib.dist
  • python311Packages.denonavr
  • python311Packages.denonavr.dist
  • python311Packages.icontract
  • python311Packages.icontract.dist
  • python311Packages.pylddwrap
  • python311Packages.pylddwrap.dist
  • python312Packages.asyncstdlib
  • python312Packages.asyncstdlib.dist
--- ###### 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/297704 [result] Success updating python312Packages.asyncstdlib 3.12.1 -> 3.12.2 https://repology.org/project/python:asyncstdlib/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.rokuecp, using log file: /var/log/nixpkgs-update/python311Packages.rokuecp/2024-03-21.log python311Packages.rokuecp 0 -> 1 attrpath: python311Packages.rokuecp 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/15w7ml30h5lapqlpijz6v8qm1kkb9jpj-packages.json.drv building '/nix/store/15w7ml30h5lapqlpijz6v8qm1kkb9jpj-packages.json.drv'... Going to be running update for following packages: - python3.11-rokuecp-0.19.2 Press Enter key to continue... Running update for: - python3.11-rokuecp-0.19.2: UPDATING ... - python3.11-rokuecp-0.19.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.rokuecp 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-applets, using log file: /var/log/nixpkgs-update/gnome.gnome-applets/2024-03-21.log gnome.gnome-applets 0 -> 1 attrpath: gnome.gnome-applets Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome.gnome-applets 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 terraform-providers.openstack, using log file: /var/log/nixpkgs-update/terraform-providers.openstack/2024-03-21.log terraform-providers.openstack 0 -> 1 attrpath: terraform-providers.openstack Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.openstack 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.GET, using log file: /var/log/nixpkgs-update/rPackages.GET/2024-03-21.log rPackages.GET 0.5 -> 1.0 https://repology.org/project/r:get/versions attrpath: rPackages.GET 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.GET 0.5 -> 1.0 https://repology.org/project/r:get/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath renode-unstable, using log file: /var/log/nixpkgs-update/renode-unstable/2024-03-21.log renode-unstable 0 -> 1 attrpath: renode-unstable 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/5khvbij6whp5pnbzm5ynnj8gypzp5l1y-renode-unstable-updater.drv /nix/store/i2ya010dv9hxzgfh4sajmai1mvda0q9f-packages.json.drv building '/nix/store/5khvbij6whp5pnbzm5ynnj8gypzp5l1y-renode-unstable-updater.drv'... building '/nix/store/i2ya010dv9hxzgfh4sajmai1mvda0q9f-packages.json.drv'... Going to be running update for following packages: - renode-unstable-1.14.0+20240315gita7bdc1e0e Press Enter key to continue... Running update for: - renode-unstable-1.14.0+20240315gita7bdc1e0e: UPDATING ... - renode-unstable-1.14.0+20240315gita7bdc1e0e: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/by-name/re/renode-unstable/package.nix b/pkgs/by-name/re/renode-unstable/package.nix index 48ebb6f62959..15fbcdc11fdc 100644 --- a/pkgs/by-name/re/renode-unstable/package.nix +++ b/pkgs/by-name/re/renode-unstable/package.nix @@ -7,10 +7,10 @@ inherit buildUnstable; }).overrideAttrs (finalAttrs: _: { pname = "renode-unstable"; - version = "1.14.0+20240315gita7bdc1e0e"; + version = "1.15.0+20240320git97be875a3"; src = fetchurl { url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz"; - hash = "sha256-mSuu6Tg/O1kSanxKjRLzJv6iYcoytc8u53zU1g8e13A="; + hash = "sha256-+1tOZ44fg/Z4n4gjPylRQlRE7KnL0AGcODlue/HLb3I="; }; }) No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/3sp6986nv75xwjm2jfhnzpjcc4gv73yi-renode-unstable-1.15.0+20240320git97be875a3" [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:
  • renode-unstable
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 renode-unstable is: Virtual development framework for complex embedded systems meta.homepage for renode-unstable is: https://renode.io ###### 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.15.0+20240320git97be875a3 in filename of file in /nix/store/3sp6986nv75xwjm2jfhnzpjcc4gv73yi-renode-unstable-1.15.0+20240320git97be875a3 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath renode-unstable ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/3sp6986nv75xwjm2jfhnzpjcc4gv73yi-renode-unstable-1.15.0+20240320git97be875a3 \ --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 renode-unstable https://github.com/r-ryantm/nixpkgs/archive/e5a2b59efa525bd9966cf7e2d8d97518253b42b4.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/e5a2b59efa525bd9966cf7e2d8d97518253b42b4#renode-unstable ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/3sp6986nv75xwjm2jfhnzpjcc4gv73yi-renode-unstable-1.15.0+20240320git97be875a3 ls -la /nix/store/3sp6986nv75xwjm2jfhnzpjcc4gv73yi-renode-unstable-1.15.0+20240320git97be875a3/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:
  • renode-unstable
--- ###### Maintainer pings cc @otavio 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/297709 [result] Success updating renode-unstable 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 apc-temp-fetch, using log file: /var/log/nixpkgs-update/apc-temp-fetch/2024-03-21.log apc-temp-fetch 0 -> 1 attrpath: apc-temp-fetch 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/k07npd63f50p4jwfs6244p86psh8bpxj-packages.json.drv building '/nix/store/k07npd63f50p4jwfs6244p86psh8bpxj-packages.json.drv'... Going to be running update for following packages: - apc-temp-fetch-0.0.2 Press Enter key to continue... Running update for: - apc-temp-fetch-0.0.2: UPDATING ... - apc-temp-fetch-0.0.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/tools/networking/apc-temp-fetch/default.nix b/pkgs/tools/networking/apc-temp-fetch/default.nix index 7676465eb499..1e892e993ff6 100644 --- a/pkgs/tools/networking/apc-temp-fetch/default.nix +++ b/pkgs/tools/networking/apc-temp-fetch/default.nix @@ -7,7 +7,7 @@ buildPythonApplication rec { pname = "apc-temp-fetch"; - version = "0.0.2"; + version = "0.0.9"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -15,7 +15,7 @@ buildPythonApplication rec { src = fetchPypi { pname = "APC-Temp-fetch"; inherit version; - hash = "sha256-lXGj/xrOkdMMYvuyVVSCojjQlzISFUT14VTn//iOARo="; + hash = "sha256-ImbGUTcHkk+fTvbYRTTfABY/n2czAC0BXkDAumgpoBo="; }; propagatedBuildInputs = [ 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 apc-temp-fetch Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . apc-temp-fetch Standard output: error: build log of 'apc-temp-fetch' is not available [result] Failed to update apc-temp-fetch 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.spicyR, using log file: /var/log/nixpkgs-update/rPackages.spicyR/2024-03-21.log rPackages.spicyR 1.14.2 -> 1.14.3 https://repology.org/project/r:spicyr/versions attrpath: rPackages.spicyR Checking auto update branch... No auto update branch exists Old version 1.14.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.spicyR 1.14.2 -> 1.14.3 https://repology.org/project/r:spicyr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.exif, using log file: /var/log/nixpkgs-update/python311Packages.exif/2024-03-21.log python311Packages.exif 0 -> 1 attrpath: python311Packages.exif 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/wx6yiissfsw41lw7vyf3z286ax1rag2z-packages.json.drv building '/nix/store/wx6yiissfsw41lw7vyf3z286ax1rag2z-packages.json.drv'... Going to be running update for following packages: - python3.11-exif-1.6.0 Press Enter key to continue... Running update for: - python3.11-exif-1.6.0: UPDATING ... - python3.11-exif-1.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.exif 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 inotify-tools, using log file: /var/log/nixpkgs-update/inotify-tools/2024-03-21.log inotify-tools 0 -> 1 attrpath: inotify-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] Success [updateScript] this derivation will be built: /nix/store/lfz6mq7n2sjzdkzblyvk9n5nksggpx22-packages.json.drv building '/nix/store/lfz6mq7n2sjzdkzblyvk9n5nksggpx22-packages.json.drv'... Going to be running update for following packages: - inotify-tools-4.23.9.0 Press Enter key to continue... Running update for: - inotify-tools-4.23.9.0: UPDATING ... - inotify-tools-4.23.9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update inotify-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.xlwt, using log file: /var/log/nixpkgs-update/python311Packages.xlwt/2024-03-21.log python311Packages.xlwt 0 -> 1 attrpath: python311Packages.xlwt 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/8jb8pdyvrky46w8np8iv4lc6clx2jcd8-packages.json.drv building '/nix/store/8jb8pdyvrky46w8np8iv4lc6clx2jcd8-packages.json.drv'... Going to be running update for following packages: - python3.11-xlwt-1.3.0 Press Enter key to continue... Running update for: - python3.11-xlwt-1.3.0: UPDATING ... - python3.11-xlwt-1.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.xlwt 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 terraform-providers.icinga2, using log file: /var/log/nixpkgs-update/terraform-providers.icinga2/2024-03-21.log terraform-providers.icinga2 0 -> 1 attrpath: terraform-providers.icinga2 Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.icinga2 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-recoveryservicesbackup, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-recoveryservicesbackup/2024-03-21.log python311Packages.azure-mgmt-recoveryservicesbackup 0 -> 1 attrpath: python311Packages.azure-mgmt-recoveryservicesbackup 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/0yah3l2ks3zz90gqb51imsbrgq4jp546-packages.json.drv building '/nix/store/0yah3l2ks3zz90gqb51imsbrgq4jp546-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-mgmt-recoveryservicesbackup-9.0.0 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-recoveryservicesbackup-9.0.0: UPDATING ... - python3.11-azure-mgmt-recoveryservicesbackup-9.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-recoveryservicesbackup 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.gym, using log file: /var/log/nixpkgs-update/python311Packages.gym/2024-03-21.log python311Packages.gym 0 -> 1 attrpath: python311Packages.gym 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/rjyqq7l63d44847ip1ffyzvg48217afq-packages.json.drv building '/nix/store/rjyqq7l63d44847ip1ffyzvg48217afq-packages.json.drv'... Going to be running update for following packages: - python3.11-gym-0.26.2 Press Enter key to continue... Running update for: - python3.11-gym-0.26.2: UPDATING ... - python3.11-gym-0.26.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.gym 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.setuptools_dso, using log file: /var/log/nixpkgs-update/python311Packages.setuptools_dso/2024-03-21.log python311Packages.setuptools_dso 0 -> 1 attrpath: python311Packages.setuptools_dso 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/bswa3178maz9d2cqk3mjmiphb97ipp0x-packages.json.drv building '/nix/store/bswa3178maz9d2cqk3mjmiphb97ipp0x-packages.json.drv'... Going to be running update for following packages: - python3.11-setuptools_dso-2.10 Press Enter key to continue... Running update for: - python3.11-setuptools_dso-2.10: UPDATING ... - python3.11-setuptools_dso-2.10: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.setuptools_dso 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.python3-eventlib, using log file: /var/log/nixpkgs-update/python311Packages.python3-eventlib/2024-03-21.log python311Packages.python3-eventlib 0 -> 1 attrpath: python311Packages.python3-eventlib 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/4asc1j1fna3nmzrb7gwwxp5l4qaih61f-packages.json.drv building '/nix/store/4asc1j1fna3nmzrb7gwwxp5l4qaih61f-packages.json.drv'... Going to be running update for following packages: - python3.11-python3-eventlib-0.3.0 Press Enter key to continue... Running update for: - python3.11-python3-eventlib-0.3.0: UPDATING ... - python3.11-python3-eventlib-0.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python3-eventlib 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.asttokens, using log file: /var/log/nixpkgs-update/python311Packages.asttokens/2024-03-21.log python311Packages.asttokens 0 -> 1 attrpath: python311Packages.asttokens 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/z687iakyij9n62rbdxi02ky78hpq196w-packages.json.drv building '/nix/store/z687iakyij9n62rbdxi02ky78hpq196w-packages.json.drv'... Going to be running update for following packages: - python3.11-asttokens-2.4.1 Press Enter key to continue... Running update for: - python3.11-asttokens-2.4.1: UPDATING ... - python3.11-asttokens-2.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.asttokens 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 git-sync, using log file: /var/log/nixpkgs-update/git-sync/2024-03-21.log git-sync 2022-03-20 -> 20220127 https://repology.org/project/git-sync/versions attrpath: git-sync Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update git-sync 2022-03-20 -> 20220127 https://repology.org/project/git-sync/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.emv, using log file: /var/log/nixpkgs-update/python311Packages.emv/2024-03-21.log python311Packages.emv 0 -> 1 attrpath: python311Packages.emv 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/l5sdf24qd5p6v61g2my2k0izgp2mf2vx-packages.json.drv building '/nix/store/l5sdf24qd5p6v61g2my2k0izgp2mf2vx-packages.json.drv'... Going to be running update for following packages: - python3.11-emv-1.0.14 Press Enter key to continue... Running update for: - python3.11-emv-1.0.14: UPDATING ... - python3.11-emv-1.0.14: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.emv 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 terraform-providers.mailgun, using log file: /var/log/nixpkgs-update/terraform-providers.mailgun/2024-03-21.log terraform-providers.mailgun 0 -> 1 attrpath: terraform-providers.mailgun Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.mailgun 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 unp, using log file: /var/log/nixpkgs-update/unp/2024-03-21.log unp 2.0-pre9 -> 2.0 https://repology.org/project/unp/versions attrpath: unp 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/archivers/unp/default.nix b/pkgs/tools/archivers/unp/default.nix index aeb0fb91c989..808bd6eb903a 100644 --- a/pkgs/tools/archivers/unp/default.nix +++ b/pkgs/tools/archivers/unp/default.nix @@ -9,13 +9,13 @@ let in stdenv.mkDerivation { pname = "unp"; - version = "2.0-pre9"; + version = "2.0"; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ perl ]; src = fetchurl { url = "mirror://debian/pool/main/u/unp/unp_2.0~pre9.tar.xz"; - sha256 = "1lp5vi9x1qi3b21nzv0yqqacj6p74qkl5zryzwq30rjkyvahjya1"; + sha256 = "sha256-QXkJ1fZTZjAw/z7/Qicm5xrJFMYe7G+DWCPi0FPc5dI="; name = "unp_2.0_pre9.tar.xz"; }; [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ubuntu_font_family, using log file: /var/log/nixpkgs-update/ubuntu_font_family/2024-03-21.log ubuntu_font_family 0.83 -> 0.869 https://repology.org/project/fonts:ubuntu/versions attrpath: ubuntu_font_family 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/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv waiting for lock on '/nix/store/bqfq4db6nwycmkdrql9igsbrayqsw3g2-source'... building '/nix/store/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv'... trying https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.869.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 56 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/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv' failed with exit code 1; last 7 log lines: > > trying https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.869.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 56 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/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ubuntu_font_family.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv /nix/store/p0gbsrz19nvi0w7jkgpqdqgibq2fb1l6-ubuntu-font-family-0.869.drv building '/nix/store/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv'... trying https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.869.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 56 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/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv' failed with exit code 1; last 7 log lines: > > trying https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.869.zip > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 56 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/spamans5mwlr30rj0nxjxmfvi9bgq0q3-source.drv'. error: 1 dependencies of derivation '/nix/store/p0gbsrz19nvi0w7jkgpqdqgibq2fb1l6-ubuntu-font-family-0.869.drv' failed to build [result] Failed to update ubuntu_font_family 0.83 -> 0.869 https://repology.org/project/fonts:ubuntu/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath crackql, using log file: /var/log/nixpkgs-update/crackql/2024-03-21.log crackql 0 -> 1 attrpath: crackql 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/17k5hq7adncdnmb2jlc7nzz66b1mb4s5-packages.json.drv building '/nix/store/17k5hq7adncdnmb2jlc7nzz66b1mb4s5-packages.json.drv'... Going to be running update for following packages: - crackql-unstable-20230818 Press Enter key to continue... Running update for: - crackql-unstable-20230818: UPDATING ... - crackql-unstable-20230818: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update crackql 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.pdf2image, using log file: /var/log/nixpkgs-update/python311Packages.pdf2image/2024-03-21.log python311Packages.pdf2image 0 -> 1 attrpath: python311Packages.pdf2image 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/wkv11g2q1z4lspq4sag68jai4rj4467d-packages.json.drv building '/nix/store/wkv11g2q1z4lspq4sag68jai4rj4467d-packages.json.drv'... Going to be running update for following packages: - python3.11-pdf2image-1.17.0 Press Enter key to continue... Running update for: - python3.11-pdf2image-1.17.0: UPDATING ... - python3.11-pdf2image-1.17.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pdf2image 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.ghdiff, using log file: /var/log/nixpkgs-update/python311Packages.ghdiff/2024-03-21.log python311Packages.ghdiff 0 -> 1 attrpath: python311Packages.ghdiff 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/r3zi38qay72q50pd249b14hdrcdcljwa-packages.json.drv building '/nix/store/r3zi38qay72q50pd249b14hdrcdcljwa-packages.json.drv'... Going to be running update for following packages: - python3.11-ghdiff-0.4 Press Enter key to continue... Running update for: - python3.11-ghdiff-0.4: UPDATING ... - python3.11-ghdiff-0.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ghdiff 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 olive-editor, using log file: /var/log/nixpkgs-update/olive-editor/2024-03-21.log olive-editor 2023-06-12 -> 20230614 https://repology.org/project/olive-video-editor/versions attrpath: olive-editor 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 olive-editor 2023-06-12 -> 20230614 https://repology.org/project/olive-video-editor/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.x-wr-timezone, using log file: /var/log/nixpkgs-update/python311Packages.x-wr-timezone/2024-03-21.log python311Packages.x-wr-timezone 0 -> 1 attrpath: python311Packages.x-wr-timezone 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/qc8lh061chq2p8cv4cvbh1x3p5gb2yk4-packages.json.drv building '/nix/store/qc8lh061chq2p8cv4cvbh1x3p5gb2yk4-packages.json.drv'... Going to be running update for following packages: - python3.11-x-wr-timezone-0.0.7 Press Enter key to continue... Running update for: - python3.11-x-wr-timezone-0.0.7: UPDATING ... - python3.11-x-wr-timezone-0.0.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.x-wr-timezone 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.YAMLLibYAML 0.88 -> 0.89 https://repology.org/project/perl:yaml-libyaml/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.kde1d, using log file: /var/log/nixpkgs-update/rPackages.kde1d/2024-03-21.log rPackages.kde1d 1.0.5 -> 1.0.7 https://repology.org/project/r:kde1d/versions attrpath: rPackages.kde1d Checking auto update branch... No auto update branch exists Old version 1.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.kde1d 1.0.5 -> 1.0.7 https://repology.org/project/r:kde1d/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.SEI, using log file: /var/log/nixpkgs-update/rPackages.SEI/2024-03-21.log rPackages.SEI 0.1.0 -> 0.1.1 https://repology.org/project/r:sei/versions attrpath: rPackages.SEI 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.SEI 0.1.0 -> 0.1.1 https://repology.org/project/r:sei/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath onlyoffice-documentserver, using log file: /var/log/nixpkgs-update/onlyoffice-documentserver/2024-03-21.log onlyoffice-documentserver 7.5.1 -> 8.0.1.31 https://repology.org/project/onlyoffice-documentserver/versions attrpath: onlyoffice-documentserver Checking auto update branch... An auto update branch exists with message `onlyoffice-documentserver: 7.5.1 -> 8.0.1`. New version is 8.0.1.31. 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/servers/onlyoffice-documentserver/default.nix b/pkgs/servers/onlyoffice-documentserver/default.nix index c19409efcd75..5879a7581829 100644 --- a/pkgs/servers/onlyoffice-documentserver/default.nix +++ b/pkgs/servers/onlyoffice-documentserver/default.nix @@ -15,11 +15,11 @@ let # var/www/onlyoffice/documentserver/server/DocService/docservice onlyoffice-documentserver = stdenv.mkDerivation rec { pname = "onlyoffice-documentserver"; - version = "7.5.1"; + version = "8.0.1.31"; src = fetchurl { url = "https://github.com/ONLYOFFICE/DocumentServer/releases/download/v${lib.concatStringsSep "." (lib.take 3 (lib.splitVersion version))}/onlyoffice-documentserver_amd64.deb"; - sha256 = "sha256-191PYpxs/TbVXoBPHvuyTp81ZMtw1YaFznY1hUSbh+0="; + sha256 = "sha256-grLln/fTBkotNWFL52ab7IhzXwg32seGdi97pqWVz/M="; }; preferLocalBuild = true; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/b03k1assq96lv3yh7aq0g7gf4wgq3n53-onlyoffice-documentserver-8.0.1.31" [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:
  • onlyoffice-documentserver
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/onlyoffice-documentserver/versions. meta.description for onlyoffice-documentserver is: ONLYOFFICE Document Server is an online office suite comprising viewers and editors meta.homepage for onlyoffice-documentserver is: ONLYOFFICE Document Server is an online office suite comprising viewers and editors ###### Updates performed - Version update ###### To inspect upstream changes - [Release on GitHub](https://github.com/ONLYOFFICE/DocumentServer/releases/tag/v8.0.1) - [Compare changes on GitHub](https://github.com/ONLYOFFICE/DocumentServer/compare/v7.5.1...v8.0.1) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 8.0.1.31 with grep in /nix/store/b03k1assq96lv3yh7aq0g7gf4wgq3n53-onlyoffice-documentserver-8.0.1.31 - found 8.0.1.31 in filename of file in /nix/store/b03k1assq96lv3yh7aq0g7gf4wgq3n53-onlyoffice-documentserver-8.0.1.31 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath onlyoffice-documentserver ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/b03k1assq96lv3yh7aq0g7gf4wgq3n53-onlyoffice-documentserver-8.0.1.31 \ --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 onlyoffice-documentserver https://github.com/r-ryantm/nixpkgs/archive/af8872bc72acfb90917e3531367a7fbd67a1cd6e.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/af8872bc72acfb90917e3531367a7fbd67a1cd6e#onlyoffice-documentserver ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/b03k1assq96lv3yh7aq0g7gf4wgq3n53-onlyoffice-documentserver-8.0.1.31 ls -la /nix/store/b03k1assq96lv3yh7aq0g7gf4wgq3n53-onlyoffice-documentserver-8.0.1.31/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:
  • onlyoffice-documentserver
--- ###### Maintainer pings cc @SuperSandro2000 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). Updated existing PR https://api.github.com/repos/NixOS/nixpkgs/pulls/285838 [result] Success updating onlyoffice-documentserver 7.5.1 -> 8.0.1.31 https://repology.org/project/onlyoffice-documentserver/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.BCEA, using log file: /var/log/nixpkgs-update/rPackages.BCEA/2024-03-21.log rPackages.BCEA 2.4.5 -> 2.4.6 https://repology.org/project/r:bcea/versions attrpath: rPackages.BCEA Checking auto update branch... No auto update branch exists Old version 2.4.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.BCEA 2.4.5 -> 2.4.6 https://repology.org/project/r:bcea/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.pyvoro, using log file: /var/log/nixpkgs-update/python311Packages.pyvoro/2024-03-21.log python311Packages.pyvoro 0 -> 1 attrpath: python311Packages.pyvoro 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/bg7lryrl0929hi0x4bxwiv2bnw2xqbq3-packages.json.drv building '/nix/store/bg7lryrl0929hi0x4bxwiv2bnw2xqbq3-packages.json.drv'... Going to be running update for following packages: - python3.11-pyvoro-1.3.2 Press Enter key to continue... Running update for: - python3.11-pyvoro-1.3.2: UPDATING ... - python3.11-pyvoro-1.3.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyvoro 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 qtspim, using log file: /var/log/nixpkgs-update/qtspim/2024-03-21.log qtspim 9.1.23 -> 9.1.24 https://repology.org/project/qtspim/versions attrpath: qtspim 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/misc/qtspim/default.nix b/pkgs/development/tools/misc/qtspim/default.nix index 15fd8dd13b2c..f76de45d771d 100644 --- a/pkgs/development/tools/misc/qtspim/default.nix +++ b/pkgs/development/tools/misc/qtspim/default.nix @@ -1,12 +1,12 @@ { lib, stdenv, fetchsvn, wrapQtAppsHook, qtbase, qttools, qmake, bison, flex, ... }: stdenv.mkDerivation rec { pname = "qtspim"; - version = "9.1.23"; + version = "9.1.24"; src = fetchsvn { url = "https://svn.code.sf.net/p/spimsimulator/code/"; rev = "r749"; - sha256 = "0iazl7mlcilrdbw8gb98v868a8ldw2lmkn1xs8hnfvr93l6aj0rp"; + sha256 = "sha256-NwOpDB0pb2ch0j3YWangjSKFDNoorYf4aplGRuuhX0U="; }; postPatch = '' rev equal; no update necessary [result] Failed to update qtspim 9.1.23 -> 9.1.24 https://repology.org/project/qtspim/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.brightbox, using log file: /var/log/nixpkgs-update/terraform-providers.brightbox/2024-03-21.log terraform-providers.brightbox 0 -> 1 attrpath: terraform-providers.brightbox Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.brightbox 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 afsctool, using log file: /var/log/nixpkgs-update/afsctool/2024-03-21.log afsctool 1.7.0 -> 1.7.3 https://repology.org/project/afsctool/versions attrpath: afsctool 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/sh5jm1q663j10k1dykxrgg2gb664xvsw-source.drv building '/nix/store/sh5jm1q663j10k1dykxrgg2gb664xvsw-source.drv'... trying https://github.com/RJVB/afsctool/archive/1.7.3.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/sh5jm1q663j10k1dykxrgg2gb664xvsw-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/RJVB/afsctool/archive/1.7.3.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/sh5jm1q663j10k1dykxrgg2gb664xvsw-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'afsctool.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/afsctool/lib/customisation.nix:268:17: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; … while evaluating the attribute 'handled' at /var/cache/nixpkgs-update/worker/worktree/afsctool/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 ‘afsctool-1.7.3’ in /var/cache/nixpkgs-update/worker/worktree/afsctool/pkgs/tools/filesystems/afsctool/default.nix:27 is not available on the requested hostPlatform: hostPlatform.config = "x86_64-unknown-linux-gnu" package.meta.platforms = [ "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin" ] 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 afsctool 1.7.0 -> 1.7.3 https://repology.org/project/afsctool/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.pysyncthru, using log file: /var/log/nixpkgs-update/python311Packages.pysyncthru/2024-03-21.log python311Packages.pysyncthru 0 -> 1 attrpath: python311Packages.pysyncthru 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/vbrz1faq2kc70lanw0hspswfm0awkn3i-packages.json.drv building '/nix/store/vbrz1faq2kc70lanw0hspswfm0awkn3i-packages.json.drv'... Going to be running update for following packages: - python3.11-pysyncthru-0.8.0 Press Enter key to continue... Running update for: - python3.11-pysyncthru-0.8.0: UPDATING ... - python3.11-pysyncthru-0.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pysyncthru 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 webcat, using log file: /var/log/nixpkgs-update/webcat/2024-03-21.log webcat 0.2.0 -> 1.0 https://repology.org/project/webcat/versions attrpath: webcat 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/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv building '/nix/store/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv'... trying https://github.com/rumpelsepp/webcat/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/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/rumpelsepp/webcat/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/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'webcat.originalSrc' not found stderr did not split as expected full stderr was: these 5 derivations will be built: /nix/store/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv /nix/store/xwvyhv1yaksz1fr51a9wyv84midmcwpy-asciidoctor-2.0.20.drv /nix/store/dzk97x2fs1rj1gl0h4sd5mfixwgfvsdx-asciidoctor-2.0.20.drv /nix/store/8zmz2mczj4ilqndg3ds9ppprl5pba9fr-webcat-1.0-go-modules.drv /nix/store/kdplw8lafk6qcik2k7hirh0aw6y86q30-webcat-1.0.drv these 29 paths will be fetched (12.01 MiB download, 50.56 MiB unpacked): /nix/store/6hfjqjbiiv86p7xappkd8hzh9nj3ki3n-bundler-2.5.6 /nix/store/jhmfsxgkdg18329g5iv1zr86v7zb3hfm-gemfile-and-lockfile /nix/store/9xdbkpc6zxrnxc1v62x13ypnxb3bpw54-ruby-3.1.4 /nix/store/fwjgv0acpcgg3zvigyyhbb49qqwv56mn-ruby3.1-Ascii85-1.1.0 /nix/store/hbb19m2pibcydir76z08cfxm998q6d9k-ruby3.1-addressable-2.8.5 /nix/store/j4xwvqqwblwd5477pnbcnpd8pr9l0ddw-ruby3.1-afm-0.2.2 /nix/store/mzlp06ry3nxd0za4fs9n3kah4mb0fiby-ruby3.1-asciidoctor-2.0.20 /nix/store/k239nx0g256gd3k6aa9k8gabhj1vhvl4-ruby3.1-asciidoctor-pdf-2.3.9 /nix/store/l7l1bsfc0vliiwxfjvf67fk40dqya7fx-ruby3.1-coderay-1.1.3 /nix/store/vsmnl8s5l060mrqv0qs826vjnm22gnii-ruby3.1-concurrent-ruby-1.2.2 /nix/store/yv3mvw525v8k1a8605wmx97cf5z64593-ruby3.1-css_parser-1.14.0 /nix/store/gvnwdv3cklag7bwrhd26c3cnxhhgd1hb-ruby3.1-hashery-2.1.2 /nix/store/f92k8srwfbnpclch77vgi58r5f6s4nvf-ruby3.1-matrix-0.4.2 /nix/store/bz60y7a3mkrj1fgpl9w6aksizc9bdhx9-ruby3.1-pdf-core-0.9.0 /nix/store/j3x3r0wx6cx4b28bzr9zl4m90db3s0kp-ruby3.1-pdf-reader-2.11.0 /nix/store/06jnqpi1cs9ncnfqk42mqsczwavx5w15-ruby3.1-polyglot-0.3.5 /nix/store/5fsbdcydqwz9468m95jxh5zc9a21yzg0-ruby3.1-prawn-2.4.0 /nix/store/b91298d65v32wlcd0jawnl7zqn61z8mz-ruby3.1-prawn-icon-3.0.0 /nix/store/7vdvl6njw382avb0ly4l8jgp7llibl14-ruby3.1-prawn-svg-0.32.0 /nix/store/1vnp08zj3am6d14hx8x1v5igw5jsp72b-ruby3.1-prawn-table-0.2.2 /nix/store/lnj0spii1fssk08x4wcjjcpax12z570y-ruby3.1-prawn-templates-0.1.2 /nix/store/0rl9q0k2hkfa97s8zyd5v50wg2cyciak-ruby3.1-public_suffix-5.0.3 /nix/store/g14qn8mzhnlm0xdyh5b8j3v9llbmalxp-ruby3.1-pygments.rb-2.4.0 /nix/store/fw141j27iym7vqzl7rgcdhi9qg17yw8g-ruby3.1-rexml-3.2.6 /nix/store/x4r9d9q5cfgx72m73b0qw3izzjvrwkff-ruby3.1-rouge-4.1.3 /nix/store/lr2a70mab3ldbrvlsjlpnzalzyvaa5y7-ruby3.1-ruby-rc4-0.1.5 /nix/store/zcgh28i8m26r90i5dcsfv8441mdpgf62-ruby3.1-tilt-2.2.0 /nix/store/w3rqlx26j175wdkmd43cyalb4k94r4c0-ruby3.1-treetop-1.6.12 /nix/store/jpdvvjk1aklx1z77ks5psn71jxfkk7sg-ruby3.1-ttfunk-1.7.0 copying path '/nix/store/jhmfsxgkdg18329g5iv1zr86v7zb3hfm-gemfile-and-lockfile' from 'https://cache.nixos.org'... copying path '/nix/store/j4xwvqqwblwd5477pnbcnpd8pr9l0ddw-ruby3.1-afm-0.2.2' from 'https://cache.nixos.org'... copying path '/nix/store/vsmnl8s5l060mrqv0qs826vjnm22gnii-ruby3.1-concurrent-ruby-1.2.2' from 'https://cache.nixos.org'... copying path '/nix/store/gvnwdv3cklag7bwrhd26c3cnxhhgd1hb-ruby3.1-hashery-2.1.2' from 'https://cache.nixos.org'... copying path '/nix/store/f92k8srwfbnpclch77vgi58r5f6s4nvf-ruby3.1-matrix-0.4.2' from 'https://cache.nixos.org'... copying path '/nix/store/bz60y7a3mkrj1fgpl9w6aksizc9bdhx9-ruby3.1-pdf-core-0.9.0' from 'https://cache.nixos.org'... copying path '/nix/store/06jnqpi1cs9ncnfqk42mqsczwavx5w15-ruby3.1-polyglot-0.3.5' from 'https://cache.nixos.org'... copying path '/nix/store/fw141j27iym7vqzl7rgcdhi9qg17yw8g-ruby3.1-rexml-3.2.6' from 'https://cache.nixos.org'... copying path '/nix/store/jpdvvjk1aklx1z77ks5psn71jxfkk7sg-ruby3.1-ttfunk-1.7.0' from 'https://cache.nixos.org'... copying path '/nix/store/9xdbkpc6zxrnxc1v62x13ypnxb3bpw54-ruby-3.1.4' from 'https://cache.nixos.org'... building '/nix/store/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv'... copying path '/nix/store/5fsbdcydqwz9468m95jxh5zc9a21yzg0-ruby3.1-prawn-2.4.0' from 'https://cache.nixos.org'... copying path '/nix/store/b91298d65v32wlcd0jawnl7zqn61z8mz-ruby3.1-prawn-icon-3.0.0' from 'https://cache.nixos.org'... copying path '/nix/store/1vnp08zj3am6d14hx8x1v5igw5jsp72b-ruby3.1-prawn-table-0.2.2' from 'https://cache.nixos.org'... trying https://github.com/rumpelsepp/webcat/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/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/rumpelsepp/webcat/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/b2rw8f9z0jf9bpmnp45dv874rnfz6702-source.drv'. error: 1 dependencies of derivation '/nix/store/kdplw8lafk6qcik2k7hirh0aw6y86q30-webcat-1.0.drv' failed to build [result] Failed to update webcat 0.2.0 -> 1.0 https://repology.org/project/webcat/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.hyperscan, using log file: /var/log/nixpkgs-update/python311Packages.hyperscan/2024-03-21.log python311Packages.hyperscan 0 -> 1 attrpath: python311Packages.hyperscan 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/02wqrd1dq8mq06sa4xbacck65bzgqqmc-packages.json.drv building '/nix/store/02wqrd1dq8mq06sa4xbacck65bzgqqmc-packages.json.drv'... Going to be running update for following packages: - python3.11-hyperscan-0.7.0 Press Enter key to continue... Running update for: - python3.11-hyperscan-0.7.0: UPDATING ... - python3.11-hyperscan-0.7.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/hyperscan/default.nix b/pkgs/development/python-modules/hyperscan/default.nix index 51ea23baf4a2..0d568e15f25b 100644 --- a/pkgs/development/python-modules/hyperscan/default.nix +++ b/pkgs/development/python-modules/hyperscan/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "hyperscan"; - version = "0.7.0"; + version = "0.7.7"; pyproject = true; src = fetchFromGitHub { owner = "darvid"; repo = "python-hyperscan"; rev = "refs/tags/v${version}"; - hash = "sha256-XIsYBu2YPbSIZGIhJjPap1ymg7cr0+ozwZtpOj8GFm8="; + hash = "sha256-TNiGh89SnGi0WAqfYudsj7GaVhOifi8ZcmTrMtVbk+c="; }; buildInputs = [ An auto update branch exists with message `python311Packages.hyperscan: 0.7.0 -> 0.7.7`. New version is 0.7.7. An auto update branch exists with an equal or greater version [result] Failed to update python311Packages.hyperscan 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 inkscape-extensions.silhouette, using log file: /var/log/nixpkgs-update/inkscape-extensions.silhouette/2024-03-21.log inkscape-extensions.silhouette 0 -> 1 attrpath: inkscape-extensions.silhouette 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/4i8xgzhcrhbsv47gs6ql0rchqbgbx1d7-packages.json.drv building '/nix/store/4i8xgzhcrhbsv47gs6ql0rchqbgbx1d7-packages.json.drv'... Going to be running update for following packages: - inkscape-silhouette-1.28 Press Enter key to continue... Running update for: - inkscape-silhouette-1.28: UPDATING ... - inkscape-silhouette-1.28: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update inkscape-extensions.silhouette 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.requests, using log file: /var/log/nixpkgs-update/python311Packages.requests/2024-03-21.log python311Packages.requests 0 -> 1 attrpath: python311Packages.requests 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/9y35xzcfvvcm6r1bgc3cn8znpa72wc7j-packages.json.drv building '/nix/store/9y35xzcfvvcm6r1bgc3cn8znpa72wc7j-packages.json.drv'... Going to be running update for following packages: - python3.11-requests-2.31.0 Press Enter key to continue... Running update for: - python3.11-requests-2.31.0: UPDATING ... - python3.11-requests-2.31.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.requests 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.chalice, using log file: /var/log/nixpkgs-update/python311Packages.chalice/2024-03-21.log python311Packages.chalice 0 -> 1 attrpath: python311Packages.chalice 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/fwsfcdkg12859frycqx6idh0jb1kv2b4-packages.json.drv building '/nix/store/fwsfcdkg12859frycqx6idh0jb1kv2b4-packages.json.drv'... Going to be running update for following packages: - python3.11-chalice-1.28.0 Press Enter key to continue... Running update for: - python3.11-chalice-1.28.0: UPDATING ... - python3.11-chalice-1.28.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.chalice 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.ntc-templates, using log file: /var/log/nixpkgs-update/python311Packages.ntc-templates/2024-03-21.log python311Packages.ntc-templates 0 -> 1 attrpath: python311Packages.ntc-templates 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/yk1mh2r74ddfdkwgfqfrqrhla2r5lvpq-packages.json.drv building '/nix/store/yk1mh2r74ddfdkwgfqfrqrhla2r5lvpq-packages.json.drv'... Going to be running update for following packages: - python3.11-ntc-templates-4.3.0 Press Enter key to continue... Running update for: - python3.11-ntc-templates-4.3.0: UPDATING ... - python3.11-ntc-templates-4.3.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ntc-templates/default.nix b/pkgs/development/python-modules/ntc-templates/default.nix index dc4ba155bedb..04b2c8c17f1a 100644 --- a/pkgs/development/python-modules/ntc-templates/default.nix +++ b/pkgs/development/python-modules/ntc-templates/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "ntc-templates"; - version = "4.3.0"; + version = "4.4.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "networktocode"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-zTJNatg5s5Y9uJ/42uhBltvP69qDsdTRIOCt5OuLwQc="; + hash = "sha256-8Lzh6ku2TUQFatqbOb5JIc/WkRPegx/gNnT53DErMuk="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Python package with too many package rebuilds 39 > 25 [result] Failed to update python311Packages.ntc-templates 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 zulip-term, using log file: /var/log/nixpkgs-update/zulip-term/2024-03-21.log zulip-term 0 -> 1 attrpath: zulip-term 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/zdnlhhjg53nrhrqyhqkjab8ynp1vldf3-packages.json.drv building '/nix/store/zdnlhhjg53nrhrqyhqkjab8ynp1vldf3-packages.json.drv'... Going to be running update for following packages: - zulip-term-0.7.0 Press Enter key to continue... Running update for: - zulip-term-0.7.0: UPDATING ... - zulip-term-0.7.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update zulip-term 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.textual-universal-directorytree, using log file: /var/log/nixpkgs-update/python312Packages.textual-universal-directorytree/2024-03-21.log python312Packages.textual-universal-directorytree 1.1.0 -> 1.5.0 https://github.com/juftin/textual-universal-directorytree/releases attrpath: python312Packages.textual-universal-directorytree 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/jq2icaynjccbswrpgiyvg19gvppi64c2-packages.json.drv building '/nix/store/jq2icaynjccbswrpgiyvg19gvppi64c2-packages.json.drv'... Going to be running update for following packages: - python3.12-textual-universal-directorytree-1.1.0 Press Enter key to continue... Running update for: - python3.12-textual-universal-directorytree-1.1.0: UPDATING ... - python3.12-textual-universal-directorytree-1.1.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/textual-universal-directorytree/default.nix b/pkgs/development/python-modules/textual-universal-directorytree/default.nix index 0e9e3e6d002c..1c911d0795d1 100644 --- a/pkgs/development/python-modules/textual-universal-directorytree/default.nix +++ b/pkgs/development/python-modules/textual-universal-directorytree/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "textual-universal-directorytree"; - version = "1.1.0"; + version = "1.5.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "juftin"; repo = "textual-universal-directorytree"; rev = "refs/tags/v${version}"; - hash = "sha256-ncQ3IRaZaCv1rMUWT9dkUKo6OAEC5pziMCM7adIBGWo="; + hash = "sha256-hUig0aJWSS0FsgRIrs74/uVaQgH6tczJWO5rj6TVOvQ="; }; nativeBuildInputs = [ An auto update branch exists with message `python312Packages.textual-universal-directorytree: 1.1.0 -> 1.3.1`. New version is 1.5.0. The auto update branch does not match or exceed the new version. [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/d1x3w5cifbzkis1r9qb37kww2x5lzlyx-python3.12-textual-universal-directorytree-1.5.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)
2 packages failed to build:
  • browsr
  • browsr.dist
4 packages built:
  • python311Packages.textual-universal-directorytree
  • python311Packages.textual-universal-directorytree.dist
  • python312Packages.textual-universal-directorytree
  • python312Packages.textual-universal-directorytree.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.textual-universal-directorytree is: Textual plugin for a DirectoryTree compatible with remote filesystems meta.homepage for python312Packages.textual-universal-directorytree is: https://github.com/juftin/textual-universal-directorytree meta.changelog for python312Packages.textual-universal-directorytree is: https://github.com/juftin/textual-universal-directorytree/releases/tag/refs/tags/v1.5.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.5.0 with grep in /nix/store/d1x3w5cifbzkis1r9qb37kww2x5lzlyx-python3.12-textual-universal-directorytree-1.5.0 - found 1.5.0 in filename of file in /nix/store/d1x3w5cifbzkis1r9qb37kww2x5lzlyx-python3.12-textual-universal-directorytree-1.5.0 ---
Rebuild report (if merged into master) (click to expand) ``` 3 total rebuild path(s) 3 package rebuild(s) First fifty rebuilds by attrpath browsr python311Packages.textual-universal-directorytree python312Packages.textual-universal-directorytree ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/d1x3w5cifbzkis1r9qb37kww2x5lzlyx-python3.12-textual-universal-directorytree-1.5.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.textual-universal-directorytree https://github.com/r-ryantm/nixpkgs/archive/930addba50d1f5447499c4eb9af9a1b938fa7dff.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/930addba50d1f5447499c4eb9af9a1b938fa7dff#python312Packages.textual-universal-directorytree ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/d1x3w5cifbzkis1r9qb37kww2x5lzlyx-python3.12-textual-universal-directorytree-1.5.0 ls -la /nix/store/d1x3w5cifbzkis1r9qb37kww2x5lzlyx-python3.12-textual-universal-directorytree-1.5.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 failed to build:
  • browsr
  • browsr.dist
4 packages built:
  • python311Packages.textual-universal-directorytree
  • python311Packages.textual-universal-directorytree.dist
  • python312Packages.textual-universal-directorytree
  • python312Packages.textual-universal-directorytree.dist
--- ###### Maintainer pings cc @figsoda 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). Updated existing PR https://api.github.com/repos/NixOS/nixpkgs/pulls/295957 [result] Success updating python312Packages.textual-universal-directorytree 1.1.0 -> 1.5.0 https://github.com/juftin/textual-universal-directorytree/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 gnome.gnome-software, using log file: /var/log/nixpkgs-update/gnome.gnome-software/2024-03-21.log gnome.gnome-software 0 -> 1 attrpath: gnome.gnome-software Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome.gnome-software 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-two-factor-auth, using log file: /var/log/nixpkgs-update/python311Packages.django-two-factor-auth/2024-03-21.log python311Packages.django-two-factor-auth 0 -> 1 attrpath: python311Packages.django-two-factor-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/6j2jhrh3dp9rk4ii156ghpk3zlfs595f-packages.json.drv building '/nix/store/6j2jhrh3dp9rk4ii156ghpk3zlfs595f-packages.json.drv'... Going to be running update for following packages: - python3.11-django-two-factor-auth-1.15.5 Press Enter key to continue... Running update for: - python3.11-django-two-factor-auth-1.15.5: UPDATING ... - python3.11-django-two-factor-auth-1.15.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.django-two-factor-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 octavePackages.optiminterp, using log file: /var/log/nixpkgs-update/octavePackages.optiminterp/2024-03-21.log octavePackages.optiminterp 0 -> 1 attrpath: octavePackages.optiminterp 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/22cwhfgr62nxjprvwb8k36167arn3mmh-packages.json.drv building '/nix/store/22cwhfgr62nxjprvwb8k36167arn3mmh-packages.json.drv'... Going to be running update for following packages: - octave-8.4.0-optiminterp-0.3.7 Press Enter key to continue... Running update for: - octave-8.4.0-optiminterp-0.3.7: UPDATING ... - octave-8.4.0-optiminterp-0.3.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update octavePackages.optiminterp 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 textual-paint, using log file: /var/log/nixpkgs-update/textual-paint/2024-03-21.log textual-paint 0 -> 1 attrpath: textual-paint 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/7vd0cs7jnzh4gfj0237677jnd442pwvj-packages.json.drv building '/nix/store/7vd0cs7jnzh4gfj0237677jnd442pwvj-packages.json.drv'... Going to be running update for following packages: - textual-paint-0.1.0 Press Enter key to continue... Running update for: - textual-paint-0.1.0: UPDATING ... - textual-paint-0.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update textual-paint 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 log4j-detect, using log file: /var/log/nixpkgs-update/log4j-detect/2024-03-21.log log4j-detect 0 -> 1 attrpath: log4j-detect 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/0w0jj32sn8fqsdnrsyrnxgqp3gwijnnl-packages.json.drv building '/nix/store/0w0jj32sn8fqsdnrsyrnxgqp3gwijnnl-packages.json.drv'... Going to be running update for following packages: - log4j-detect-unstable-2021-12-14 Press Enter key to continue... Running update for: - log4j-detect-unstable-2021-12-14: UPDATING ... - log4j-detect-unstable-2021-12-14: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update log4j-detect 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 pstoedit, using log file: /var/log/nixpkgs-update/pstoedit/2024-03-21.log pstoedit 3.78 -> 4.00 https://repology.org/project/pstoedit/versions attrpath: pstoedit Checking auto update branch... An auto update branch exists with message `pstoedit: 3.78 -> 4.00`. New version is 4.00. An auto update branch exists with an equal or greater version [result] Failed to update pstoedit 3.78 -> 4.00 https://repology.org/project/pstoedit/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.types-pyopenssl, using log file: /var/log/nixpkgs-update/python311Packages.types-pyopenssl/2024-03-21.log python311Packages.types-pyopenssl 0 -> 1 attrpath: python311Packages.types-pyopenssl 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/gph2f3r2j36rba8y74akbapg4r5k3f31-packages.json.drv building '/nix/store/gph2f3r2j36rba8y74akbapg4r5k3f31-packages.json.drv'... Going to be running update for following packages: - python3.11-types-pyopenssl-24.0.0.20240311 Press Enter key to continue... Running update for: - python3.11-types-pyopenssl-24.0.0.20240311: UPDATING ... - python3.11-types-pyopenssl-24.0.0.20240311: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.types-pyopenssl 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 streamdeck-ui, using log file: /var/log/nixpkgs-update/streamdeck-ui/2024-03-21.log streamdeck-ui 0 -> 1 attrpath: streamdeck-ui 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/lymb53ayhlv7jcc2bbx9bqsjlkw0lgnb-packages.json.drv building '/nix/store/lymb53ayhlv7jcc2bbx9bqsjlkw0lgnb-packages.json.drv'... Going to be running update for following packages: - streamdeck-ui-3.1.0 Press Enter key to continue... Running update for: - streamdeck-ui-3.1.0: UPDATING ... - streamdeck-ui-3.1.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/applications/misc/streamdeck-ui/default.nix b/pkgs/applications/misc/streamdeck-ui/default.nix index f46be1a24324..4aa2b4b0964a 100644 --- a/pkgs/applications/misc/streamdeck-ui/default.nix +++ b/pkgs/applications/misc/streamdeck-ui/default.nix @@ -11,13 +11,13 @@ python3Packages.buildPythonApplication rec { pname = "streamdeck-ui"; - version = "3.1.0"; + version = "4.1.1"; src = fetchFromGitHub { repo = "streamdeck-linux-gui"; owner = "streamdeck-linux-gui"; - rev = "v${version}"; - sha256 = "sha256-AIE9j022L4WSlHBAu3TT5uE4Ilgk/jYSmU03K8Hs8xY="; + rev = "refs/tags/v${version}"; + sha256 = "sha256-hz6YMV4ntBwFPFYx6wsHdAOs1bi9NagkxD4UKV6N46c="; }; patches = [ 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 streamdeck-ui nix build failed. got build log for 'streamdeck-ui' from 'daemon' Sourcing python-remove-tests-dir-hook Sourcing python-catch-conflicts-hook.sh Sourcing python-remove-bin-bytecode-hook.sh Sourcing pypa-build-hook Using pypaBuildPhase Sourcing python-runtime-deps-check-hook Using pythonRuntimeDepsCheckHook Sourcing pypa-install-hook Using pypaInstallPhase Sourcing python-imports-check-hook.sh Using pythonImportsCheckPhase Sourcing python-namespaces-hook Sourcing python-catch-conflicts-hook.sh @nix { "action": "setPhase", "phase": "qtPreHook" } Running phase: qtPreHook @nix { "action": "setPhase", "phase": "unpackPhase" } Running phase: unpackPhase unpacking source archive /nix/store/9xblwmwid40fpz21xvmxarfdnkgcdjan-source source root is source setting SOURCE_DATE_EPOCH to timestamp 315619200 of file source/udev/60-streamdeck.rules @nix { "action": "setPhase", "phase": "patchPhase" } Running phase: patchPhase applying patch /nix/store/svlxvifkwni08pblaiaphiirxrw272zn-update-pillow.patch patching file pyproject.toml Hunk #1 FAILED at 14. 1 out of 1 hunk FAILED -- saving rejects to file pyproject.toml.rej [result] Failed to update streamdeck-ui 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.junitparser, using log file: /var/log/nixpkgs-update/python311Packages.junitparser/2024-03-21.log python311Packages.junitparser 0 -> 1 attrpath: python311Packages.junitparser 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/xw2h1cjvxafy4h8dbhqvmd1qvizbcifw-packages.json.drv building '/nix/store/xw2h1cjvxafy4h8dbhqvmd1qvizbcifw-packages.json.drv'... Going to be running update for following packages: - python3.11-junitparser-2.8.0 Press Enter key to continue... Running update for: - python3.11-junitparser-2.8.0: UPDATING ... - python3.11-junitparser-2.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.junitparser 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 kikit, using log file: /var/log/nixpkgs-update/kikit/2024-03-21.log kikit 0 -> 1 attrpath: kikit 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/2d2670pg1cb7ra9dzfin2p2rh3ygj6ia-packages.json.drv building '/nix/store/2d2670pg1cb7ra9dzfin2p2rh3ygj6ia-packages.json.drv'... Going to be running update for following packages: - kikit-1.5.0 Press Enter key to continue... Running update for: - kikit-1.5.0: UPDATING ... - kikit-1.5.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/by-name/ki/kikit/default.nix b/pkgs/by-name/ki/kikit/default.nix index e8356fd0a0ff..b6e72202d8f7 100644 --- a/pkgs/by-name/ki/kikit/default.nix +++ b/pkgs/by-name/ki/kikit/default.nix @@ -24,7 +24,7 @@ let in buildPythonApplication rec { pname = "kikit"; - version = "1.5.0"; + version = "1.5.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -33,7 +33,7 @@ buildPythonApplication rec { owner = "yaqwsx"; repo = "KiKit"; rev = "refs/tags/v${version}"; - hash = "sha256-f8FB6EEy9Ch4LcMKd9PADXV9QrSb7e22Ui86G6AnQKE="; + hash = "sha256-iehA6FthNTJq+lDTL4eSUIIlYDJj86LMOyv/L2/ybyc="; }; propagatedBuildInputs = [ 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 kikit nix build failed. # File "/nix/store/0jy2h2nfxi585nv3rb4kggn91j2cq74q-kikit-1.5.1/lib/python3.11/site-packages/kikit/panelize_ui_impl.py", line 475, in buildFraming # panel.makeTightFrame(framingPreset["width"], framingPreset["slotwidth"], # File "/nix/store/0jy2h2nfxi585nv3rb4kggn91j2cq74q-kikit-1.5.1/lib/python3.11/site-packages/kikit/panelize.py", line 1374, in makeTightFrame # boardSlot = boardSlot.buffer(slotwidth, join_style="mitre") # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ # File "/nix/store/7zywlb3fjq6mrgr3ngv2w37ia5hi1fr1-python3.11-Shapely-1.8.5/lib/python3.11/site-packages/shapely/geometry/base.py", line 632, in buffer # self._lgeos.GEOSBufferParams_setJoinStyle(params, join_style) # ctypes.ArgumentError: argument 3: TypeError: wrong type ok 23 Simple grid, framing features ok 24 Simple grid, framing features with variable ok 25 Grid with alternation ok 26 Grid with backbone ok 27 Tabs from annotation ok 28 Copperfill ok 29 Set aux origin ok 30 Set page ok 31 Render dimensions ok 32 Use layout plugin ok 33 Use framing plugin ok 34 Use tabs plugin ok 35 Use cuts plugin ok 36 Use fiducials and tooling plugin ok 37 Dumping preset ok 38 Dumping preset with plugin ok 39 Present a single board # skip PcbDraw is not available, skipping ok 40 Steel stencils ok 41 Steel stencils with cutout ok 42 Printed stencils make: *** [Makefile:40: test-system] Error 1 /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 131: pop_var_context: head of shell_variables not a function context [result] Failed to update kikit 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.swift, using log file: /var/log/nixpkgs-update/python311Packages.swift/2024-03-21.log python311Packages.swift 0 -> 1 attrpath: python311Packages.swift 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/1h66c70ksbshn023ymgwc3ligj6yn6qn-packages.json.drv building '/nix/store/1h66c70ksbshn023ymgwc3ligj6yn6qn-packages.json.drv'... Going to be running update for following packages: - python3.11-swift-2.32.0 Press Enter key to continue... Running update for: - python3.11-swift-2.32.0: UPDATING ... - python3.11-swift-2.32.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/swift/default.nix b/pkgs/development/python-modules/swift/default.nix index 464b044ad15a..ec4f1b7a3963 100644 --- a/pkgs/development/python-modules/swift/default.nix +++ b/pkgs/development/python-modules/swift/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { pname = "swift"; - version = "2.32.0"; + version = "2.33.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-JeDmZx667rG1ARfRBUDTcOWe7u3ZiytZzGQSRp8bpes="; + hash = "sha256-4TlJcquK8MC9zQfLKmb88B5xHje1kbPD2jSLiR+N8hs="; }; postPatch = '' No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/1q5ckxsm63w1znwf93p74jqhilj5ny6v-python3.11-swift-2.33.0" 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 6 [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.keysmith, using log file: /var/log/nixpkgs-update/kdePackages.keysmith/2024-03-21.log kdePackages.keysmith 24.02.0 -> 24.02.1 https://repology.org/project/keysmith/versions attrpath: kdePackages.keysmith Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtsvg, pkg-config, libsodium, }: mkKdeDerivation { pname = "keysmith"; extraNativeBuildInputs = [pkg-config]; extraBuildInputs = [qtsvg libsodium]; meta.mainProgram = "keysmith"; } [result] Failed to update kdePackages.keysmith 24.02.0 -> 24.02.1 https://repology.org/project/keysmith/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.calendarsupport, using log file: /var/log/nixpkgs-update/kdePackages.calendarsupport/2024-03-21.log kdePackages.calendarsupport 24.02.0 -> 24.02.1 https://repology.org/project/calendarsupport/versions attrpath: kdePackages.calendarsupport Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "calendarsupport"; } [result] Failed to update kdePackages.calendarsupport 24.02.0 -> 24.02.1 https://repology.org/project/calendarsupport/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.spectacle, using log file: /var/log/nixpkgs-update/kdePackages.spectacle/2024-03-21.log kdePackages.spectacle 24.02.0 -> 24.02.1 https://repology.org/project/spectacle-kde/versions attrpath: kdePackages.spectacle Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtwayland, qtmultimedia, }: mkKdeDerivation { pname = "spectacle"; extraBuildInputs = [qtwayland qtmultimedia]; meta.mainProgram = "spectacle"; } [result] Failed to update kdePackages.spectacle 24.02.0 -> 24.02.1 https://repology.org/project/spectacle-kde/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath st, using log file: /var/log/nixpkgs-update/st/2024-03-21.log st 0.9 -> 0.9.1 https://repology.org/project/st-term/versions attrpath: st Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - st: 0.9 -> 0.9.1 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/297472" [result] Failed to update st 0.9 -> 0.9.1 https://repology.org/project/st-term/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kimap, using log file: /var/log/nixpkgs-update/kdePackages.kimap/2024-03-21.log kdePackages.kimap 24.02.0 -> 24.02.1 https://repology.org/project/kimap/versions attrpath: kdePackages.kimap Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, cyrus_sasl, }: mkKdeDerivation { pname = "kimap"; extraBuildInputs = [cyrus_sasl]; } [result] Failed to update kdePackages.kimap 24.02.0 -> 24.02.1 https://repology.org/project/kimap/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kgeography, using log file: /var/log/nixpkgs-update/kdePackages.kgeography/2024-03-21.log kdePackages.kgeography 24.02.0 -> 24.02.1 https://repology.org/project/kgeography/versions attrpath: kdePackages.kgeography Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "kgeography"; meta.mainProgram = "kgeography"; } [result] Failed to update kdePackages.kgeography 24.02.0 -> 24.02.1 https://repology.org/project/kgeography/versions [options] github_user: r-ryantm, pull_request: 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 kdePackages.kitinerary, using log file: /var/log/nixpkgs-update/kdePackages.kitinerary/2024-03-21.log kdePackages.kitinerary 24.02.0 -> 24.02.1 https://repology.org/project/kitinerary/versions attrpath: kdePackages.kitinerary Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtsvg, qtdeclarative, shared-mime-info, poppler, libphonenumber, protobuf, }: mkKdeDerivation { pname = "kitinerary"; extraNativeBuildInputs = [shared-mime-info]; extraBuildInputs = [ qtsvg qtdeclarative poppler libphonenumber protobuf ]; } [result] Failed to update kdePackages.kitinerary 24.02.0 -> 24.02.1 https://repology.org/project/kitinerary/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kfind, using log file: /var/log/nixpkgs-update/kdePackages.kfind/2024-03-21.log kdePackages.kfind 24.02.0 -> 24.02.1 https://repology.org/project/kfind/versions attrpath: kdePackages.kfind Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qt5compat, }: mkKdeDerivation { pname = "kfind"; extraBuildInputs = [qt5compat]; meta.mainProgram = "kfind"; } [result] Failed to update kdePackages.kfind 24.02.0 -> 24.02.1 https://repology.org/project/kfind/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kio-admin, using log file: /var/log/nixpkgs-update/kdePackages.kio-admin/2024-03-21.log kdePackages.kio-admin 24.02.0 -> 24.02.1 https://repology.org/project/kio-admin/versions attrpath: kdePackages.kio-admin Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "kio-admin"; } [result] Failed to update kdePackages.kio-admin 24.02.0 -> 24.02.1 https://repology.org/project/kio-admin/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kcachegrind, using log file: /var/log/nixpkgs-update/kdePackages.kcachegrind/2024-03-21.log kdePackages.kcachegrind 24.02.0 -> 24.02.1 https://repology.org/project/kcachegrind/versions attrpath: kdePackages.kcachegrind Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qttools, }: mkKdeDerivation { pname = "kcachegrind"; extraNativeBuildInputs = [qttools]; } [result] Failed to update kdePackages.kcachegrind 24.02.0 -> 24.02.1 https://repology.org/project/kcachegrind/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kamera, using log file: /var/log/nixpkgs-update/kdePackages.kamera/2024-03-21.log kdePackages.kamera 24.02.0 -> 24.02.1 https://repology.org/project/kamera/versions attrpath: kdePackages.kamera Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, pkg-config, libgphoto2, }: mkKdeDerivation { pname = "kamera"; extraNativeBuildInputs = [pkg-config]; extraBuildInputs = [libgphoto2]; } [result] Failed to update kdePackages.kamera 24.02.0 -> 24.02.1 https://repology.org/project/kamera/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kdialog, using log file: /var/log/nixpkgs-update/kdePackages.kdialog/2024-03-21.log kdePackages.kdialog 24.02.0 -> 24.02.1 https://repology.org/project/kdialog/versions attrpath: kdePackages.kdialog Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "kdialog"; } [result] Failed to update kdePackages.kdialog 24.02.0 -> 24.02.1 https://repology.org/project/kdialog/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kmime, using log file: /var/log/nixpkgs-update/kdePackages.kmime/2024-03-21.log kdePackages.kmime 24.02.0 -> 24.02.1 https://repology.org/project/kmime/versions attrpath: kdePackages.kmime Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "kmime"; } [result] Failed to update kdePackages.kmime 24.02.0 -> 24.02.1 https://repology.org/project/kmime/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.granatier, using log file: /var/log/nixpkgs-update/kdePackages.granatier/2024-03-21.log kdePackages.granatier 24.02.0 -> 24.02.1 https://repology.org/project/granatier/versions attrpath: kdePackages.granatier Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, _7zz, qtsvg, }: mkKdeDerivation { pname = "granatier"; extraNativeBuildInputs = [_7zz]; extraBuildInputs = [qtsvg]; meta.mainProgram = "granatier"; } [result] Failed to update kdePackages.granatier 24.02.0 -> 24.02.1 https://repology.org/project/granatier/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.ksmtp, using log file: /var/log/nixpkgs-update/kdePackages.ksmtp/2024-03-21.log kdePackages.ksmtp 24.02.0 -> 24.02.1 https://repology.org/project/ksmtp/versions attrpath: kdePackages.ksmtp Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qt5compat, cyrus_sasl, }: mkKdeDerivation { pname = "ksmtp"; extraBuildInputs = [qt5compat cyrus_sasl]; } [result] Failed to update kdePackages.ksmtp 24.02.0 -> 24.02.1 https://repology.org/project/ksmtp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.sweeper, using log file: /var/log/nixpkgs-update/kdePackages.sweeper/2024-03-21.log kdePackages.sweeper 24.02.0 -> 24.02.1 https://repology.org/project/sweeper/versions attrpath: kdePackages.sweeper Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, plasma-activities-stats, }: mkKdeDerivation { pname = "sweeper"; extraBuildInputs = [plasma-activities-stats]; meta.mainProgram = "sweeper"; } [result] Failed to update kdePackages.sweeper 24.02.0 -> 24.02.1 https://repology.org/project/sweeper/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kdevelop, using log file: /var/log/nixpkgs-update/kdePackages.kdevelop/2024-03-21.log kdePackages.kdevelop 24.02.0 -> 24.02.1 https://repology.org/project/kdevelop/versions attrpath: kdePackages.kdevelop Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, extra-cmake-modules, }: mkKdeDerivation { pname = "kdevelop"; extraBuildInputs = [extra-cmake-modules]; # FIXME(qt5) meta.broken = true; } [result] Failed to update kdePackages.kdevelop 24.02.0 -> 24.02.1 https://repology.org/project/kdevelop/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kmail, using log file: /var/log/nixpkgs-update/kdePackages.kmail/2024-03-21.log kdePackages.kmail 24.02.0 -> 24.02.1 https://repology.org/project/kmail/versions attrpath: kdePackages.kmail Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "kmail"; } [result] Failed to update kdePackages.kmail 24.02.0 -> 24.02.1 https://repology.org/project/kmail/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kfourinline, using log file: /var/log/nixpkgs-update/kdePackages.kfourinline/2024-03-21.log kdePackages.kfourinline 24.02.0 -> 24.02.1 https://repology.org/project/kfourinline/versions attrpath: kdePackages.kfourinline Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtsvg, }: mkKdeDerivation { pname = "kfourinline"; extraBuildInputs = [qtsvg]; } [result] Failed to update kdePackages.kfourinline 24.02.0 -> 24.02.1 https://repology.org/project/kfourinline/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.cervisia, using log file: /var/log/nixpkgs-update/kdePackages.cervisia/2024-03-21.log kdePackages.cervisia 24.02.0 -> 24.02.1 https://repology.org/project/cervisia/versions attrpath: kdePackages.cervisia Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "cervisia"; # FIXME(qt5) meta.broken = true; } [result] Failed to update kdePackages.cervisia 24.02.0 -> 24.02.1 https://repology.org/project/cervisia/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.neochat, using log file: /var/log/nixpkgs-update/kdePackages.neochat/2024-03-21.log kdePackages.neochat 24.02.0 -> 24.02.1 https://repology.org/project/neochat/versions attrpath: kdePackages.neochat Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtlocation, qtwebview, kunifiedpush, }: mkKdeDerivation { pname = "neochat"; extraBuildInputs = [qtlocation qtwebview kunifiedpush]; meta.mainProgram = "neochat"; } [result] Failed to update kdePackages.neochat 24.02.0 -> 24.02.1 https://repology.org/project/neochat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.merkuro, using log file: /var/log/nixpkgs-update/kdePackages.merkuro/2024-03-21.log kdePackages.merkuro 24.02.0 -> 24.02.1 https://repology.org/project/merkuro/versions attrpath: kdePackages.merkuro Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtsvg, libplasma, }: mkKdeDerivation { pname = "merkuro"; extraBuildInputs = [qtsvg libplasma]; } [result] Failed to update kdePackages.merkuro 24.02.0 -> 24.02.1 https://repology.org/project/merkuro/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kmplot, using log file: /var/log/nixpkgs-update/kdePackages.kmplot/2024-03-21.log kdePackages.kmplot 24.02.0 -> 24.02.1 https://repology.org/project/kmplot/versions attrpath: kdePackages.kmplot Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtsvg, }: mkKdeDerivation { pname = "kmplot"; extraBuildInputs = [qtsvg]; meta.mainProgram = "kmplot"; } [result] Failed to update kdePackages.kmplot 24.02.0 -> 24.02.1 https://repology.org/project/kmplot/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kdf, using log file: /var/log/nixpkgs-update/kdePackages.kdf/2024-03-21.log kdePackages.kdf 24.02.0 -> 24.02.1 https://repology.org/project/kdf/versions attrpath: kdePackages.kdf Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "kdf"; } [result] Failed to update kdePackages.kdf 24.02.0 -> 24.02.1 https://repology.org/project/kdf/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kanagram, using log file: /var/log/nixpkgs-update/kdePackages.kanagram/2024-03-21.log kdePackages.kanagram 24.02.0 -> 24.02.1 https://repology.org/project/kanagram/versions attrpath: kdePackages.kanagram Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtspeech, }: mkKdeDerivation { pname = "kanagram"; extraBuildInputs = [qtspeech]; meta.mainProgram = "kanagram"; } [result] Failed to update kdePackages.kanagram 24.02.0 -> 24.02.1 https://repology.org/project/kanagram/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.filelight, using log file: /var/log/nixpkgs-update/kdePackages.filelight/2024-03-21.log kdePackages.filelight 24.02.0 -> 24.02.1 https://repology.org/project/filelight/versions attrpath: kdePackages.filelight Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, kirigami, kquickcharts, qqc2-desktop-style, }: mkKdeDerivation { pname = "filelight"; extraBuildInputs = [ kirigami kquickcharts qqc2-desktop-style ]; meta.mainProgram = "filelight"; } [result] Failed to update kdePackages.filelight 24.02.0 -> 24.02.1 https://repology.org/project/filelight/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.krfb, using log file: /var/log/nixpkgs-update/kdePackages.krfb/2024-03-21.log kdePackages.krfb 24.02.0 -> 24.02.1 https://repology.org/project/krfb/versions attrpath: kdePackages.krfb Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qtwayland, libvncserver, xorg, }: mkKdeDerivation { pname = "krfb"; extraCmakeFlags = [ "-DQtWaylandScanner_EXECUTABLE=${qtwayland}/libexec/qtwaylandscanner" ]; extraBuildInputs = [qtwayland libvncserver xorg.libXdamage]; } [result] Failed to update kdePackages.krfb 24.02.0 -> 24.02.1 https://repology.org/project/krfb/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.dolphin, using log file: /var/log/nixpkgs-update/kdePackages.dolphin/2024-03-21.log kdePackages.dolphin 24.02.0 -> 24.02.1 https://repology.org/project/dolphin-fm/versions attrpath: kdePackages.dolphin Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "dolphin"; } [result] Failed to update kdePackages.dolphin 24.02.0 -> 24.02.1 https://repology.org/project/dolphin-fm/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kdesdk-thumbnailers, using log file: /var/log/nixpkgs-update/kdePackages.kdesdk-thumbnailers/2024-03-21.log kdePackages.kdesdk-thumbnailers 24.02.0 -> 24.02.1 https://repology.org/project/kdesdk-thumbnailers/versions attrpath: kdePackages.kdesdk-thumbnailers Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: {mkKdeDerivation}: mkKdeDerivation { pname = "kdesdk-thumbnailers"; } [result] Failed to update kdePackages.kdesdk-thumbnailers 24.02.0 -> 24.02.1 https://repology.org/project/kdesdk-thumbnailers/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kgpg, using log file: /var/log/nixpkgs-update/kdePackages.kgpg/2024-03-21.log kdePackages.kgpg 24.02.0 -> 24.02.1 https://repology.org/project/kgpg/versions attrpath: kdePackages.kgpg Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, pkg-config, gpgme, }: mkKdeDerivation { pname = "kgpg"; extraNativeBuildInputs = [pkg-config]; extraBuildInputs = [gpgme]; meta.mainProgram = "kgpg"; } [result] Failed to update kdePackages.kgpg 24.02.0 -> 24.02.1 https://repology.org/project/kgpg/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ggprism, using log file: /var/log/nixpkgs-update/rPackages.ggprism/2024-03-21.log rPackages.ggprism 1.0.4 -> 1.0.5 https://repology.org/project/r:ggprism/versions attrpath: rPackages.ggprism 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.ggprism 1.0.4 -> 1.0.5 https://repology.org/project/r:ggprism/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ThresholdROCsurvival, using log file: /var/log/nixpkgs-update/rPackages.ThresholdROCsurvival/2024-03-21.log rPackages.ThresholdROCsurvival 1.2.0 -> 1.2.1 https://repology.org/project/r:thresholdrocsurvival/versions attrpath: rPackages.ThresholdROCsurvival 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.ThresholdROCsurvival 1.2.0 -> 1.2.1 https://repology.org/project/r:thresholdrocsurvival/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.skanpage, using log file: /var/log/nixpkgs-update/kdePackages.skanpage/2024-03-21.log kdePackages.skanpage 24.02.0 -> 24.02.1 https://repology.org/project/skanpage/versions attrpath: kdePackages.skanpage Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, tesseractLanguages ? [], tesseract5, leptonica, }: mkKdeDerivation { pname = "skanpage"; extraBuildInputs = [ (tesseract5.override {enableLanguages = tesseractLanguages;}) leptonica ]; meta.mainProgram = "skanpage"; } [result] Failed to update kdePackages.skanpage 24.02.0 -> 24.02.1 https://repology.org/project/skanpage/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.skanlite, using log file: /var/log/nixpkgs-update/kdePackages.skanlite/2024-03-21.log kdePackages.skanlite 24.02.0 -> 24.02.1 https://repology.org/project/skanlite/versions attrpath: kdePackages.skanlite Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, qt5compat, }: mkKdeDerivation { pname = "skanlite"; extraBuildInputs = [qt5compat]; meta.mainProgram = "skanlite"; } [result] Failed to update kdePackages.skanlite 24.02.0 -> 24.02.1 https://repology.org/project/skanlite/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath kdePackages.kaccounts-integration, using log file: /var/log/nixpkgs-update/kdePackages.kaccounts-integration/2024-03-21.log kdePackages.kaccounts-integration 24.02.0 -> 24.02.1 https://repology.org/project/kaccounts-integration/versions attrpath: kdePackages.kaccounts-integration Checking auto update branch... No auto update branch exists Old version 24.02.0" not present in master derivation file with contents: { mkKdeDerivation, intltool, }: mkKdeDerivation { pname = "kaccounts-integration"; propagatedNativeBuildInputs = [intltool]; } [result] Failed to update kdePackages.kaccounts-integration 24.02.0 -> 24.02.1 https://repology.org/project/kaccounts-integration/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath protonmail-bridge, using log file: /var/log/nixpkgs-update/protonmail-bridge/2024-03-21.log protonmail-bridge 3.9.1 -> 3.10.0 https://repology.org/project/protonmail-bridge/versions attrpath: protonmail-bridge 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-5XU/qyYdk8nufyQbyjkjUEWzt+RTVYzsdyKU77qrgHc=" [golangModuleVersion] Replaced vendorHash with sha256-cgQcI6yrnc5BUuyOkaYu24GzCaGe+BgXOC2zdt1Z1Lg= [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/protonmail-bridge/default.nix b/pkgs/applications/networking/protonmail-bridge/default.nix index add40cac8f18..8b04fc7e3f49 100644 --- a/pkgs/applications/networking/protonmail-bridge/default.nix +++ b/pkgs/applications/networking/protonmail-bridge/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "protonmail-bridge"; - version = "3.9.1"; + version = "3.10.0"; src = fetchFromGitHub { owner = "ProtonMail"; repo = "proton-bridge"; rev = "v${version}"; - hash = "sha256-osQIx67KWEraVlB+J6HmC44uDTF1HKUytBS6eilp4jI="; + hash = "sha256-xjpySIbt7f86PRR/9F1DXMc0G+pBq3/75STW6Zw6IhE="; }; - vendorHash = "sha256-5XU/qyYdk8nufyQbyjkjUEWzt+RTVYzsdyKU77qrgHc="; + vendorHash = "sha256-cgQcI6yrnc5BUuyOkaYu24GzCaGe+BgXOC2zdt1Z1Lg="; nativeBuildInputs = [ pkg-config ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/3nys92m6jclr2fbdd96lws06kn8an9mn-protonmail-bridge-3.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)
2 packages built:
  • protonmail-bridge
  • protonmail-bridge-gui
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/protonmail-bridge/versions. meta.description for protonmail-bridge is: Use your ProtonMail account with your local e-mail client meta.homepage for protonmail-bridge is: https://github.com/ProtonMail/proton-bridge meta.changelog for protonmail-bridge is: https://github.com/ProtonMail/proton-bridge/blob/v3.10.0/Changelog.md ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/ProtonMail/proton-bridge/releases/tag/v3.10.0) - [Compare changes on GitHub](https://github.com/ProtonMail/proton-bridge/compare/v3.9.1...v3.10.0) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 3.10.0 with grep in /nix/store/3nys92m6jclr2fbdd96lws06kn8an9mn-protonmail-bridge-3.10.0 - found 3.10.0 in filename of file in /nix/store/3nys92m6jclr2fbdd96lws06kn8an9mn-protonmail-bridge-3.10.0 ---
Rebuild report (if merged into master) (click to expand) ``` 2 total rebuild path(s) 2 package rebuild(s) First fifty rebuilds by attrpath protonmail-bridge protonmail-bridge-gui ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/3nys92m6jclr2fbdd96lws06kn8an9mn-protonmail-bridge-3.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 protonmail-bridge https://github.com/r-ryantm/nixpkgs/archive/044fc2f604c54a0c3021b2c40416b1c598fa087e.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/044fc2f604c54a0c3021b2c40416b1c598fa087e#protonmail-bridge ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/3nys92m6jclr2fbdd96lws06kn8an9mn-protonmail-bridge-3.10.0 ls -la /nix/store/3nys92m6jclr2fbdd96lws06kn8an9mn-protonmail-bridge-3.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)
2 packages built:
  • protonmail-bridge
  • protonmail-bridge-gui
--- ###### Maintainer pings cc @MrFreezeex @daniel-fahey 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/297764 [result] Success updating protonmail-bridge 3.9.1 -> 3.10.0 https://repology.org/project/protonmail-bridge/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath lightburn, using log file: /var/log/nixpkgs-update/lightburn/2024-03-21.log lightburn 1.5.04 -> 1.5.05 https://repology.org/project/lightburn/versions attrpath: lightburn 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/lightburn/default.nix b/pkgs/applications/graphics/lightburn/default.nix index cd2a1f4b5184..fed6cb8732b9 100644 --- a/pkgs/applications/graphics/lightburn/default.nix +++ b/pkgs/applications/graphics/lightburn/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { pname = "lightburn"; - version = "1.5.04"; + version = "1.5.05"; nativeBuildInputs = [ p7zip @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://github.com/LightBurnSoftware/deployment/releases/download/${version}/LightBurn-Linux64-v${version}.7z"; - sha256 = "sha256-cyQUv/KqdtDwCFo8CatJYdepgdWNwTSMyDLzOjvvO5c="; + sha256 = "sha256-rvskm0Br+3HqPo2DW/ZUIl8n3+UJKPlmkEtQofw05x4="; }; buildInputs = [ [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/a7836nm69s2nq80jwqsj2wfa0pydvvby-lightburn-1.5.05" [check][nixpkgs-review] [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libxpdf, using log file: /var/log/nixpkgs-update/libxpdf/2024-03-21.log libxpdf 3.02pl5 -> 4.02 https://repology.org/project/libxpdf/versions attrpath: libxpdf 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 libxpdf 3.02pl5 -> 4.02 https://repology.org/project/libxpdf/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath krane, using log file: /var/log/nixpkgs-update/krane/2024-03-21.log krane 0 -> 1 attrpath: krane 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 krane 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.tictoc, using log file: /var/log/nixpkgs-update/rPackages.tictoc/2024-03-21.log rPackages.tictoc 1.2 -> 1.2.1 https://repology.org/project/r:tictoc/versions attrpath: rPackages.tictoc 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.tictoc 1.2 -> 1.2.1 https://repology.org/project/r:tictoc/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.oci, using log file: /var/log/nixpkgs-update/python312Packages.oci/2024-03-21.log python312Packages.oci 2.124.1 -> 2.124.2 https://github.com/oracle/oci-python-sdk/releases attrpath: python312Packages.oci 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/jcysgfsxqrs2vvmlbaazx0fwjwls49gv-packages.json.drv building '/nix/store/jcysgfsxqrs2vvmlbaazx0fwjwls49gv-packages.json.drv'... Going to be running update for following packages: - python3.12-oci-2.124.1 Press Enter key to continue... Running update for: - python3.12-oci-2.124.1: UPDATING ... - python3.12-oci-2.124.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/oci/default.nix b/pkgs/development/python-modules/oci/default.nix index f385d5a7c8a5..c57a77771098 100644 --- a/pkgs/development/python-modules/oci/default.nix +++ b/pkgs/development/python-modules/oci/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "oci"; - version = "2.124.1"; + version = "2.124.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "oracle"; repo = "oci-python-sdk"; rev = "refs/tags/v${version}"; - hash = "sha256-tiTtBJIohUW80PLMGkdgsC8m4QF0lzmfqErNNb0Ede4="; + hash = "sha256-IYINga1qCCmdu1j6ix2GcZtx6twPwfHCxU8fPOqF4eE="; }; pythonRelaxDeps = [ No auto update branch exists Old version 2.124.1" not present in master derivation file with contents: { lib , buildPythonPackage , certifi , circuitbreaker , cryptography , fetchFromGitHub , pyopenssl , python-dateutil , pythonOlder , pythonRelaxDepsHook , pytz , setuptools }: buildPythonPackage rec { pname = "oci"; version = "2.124.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "oracle"; repo = "oci-python-sdk"; rev = "refs/tags/v${version}"; hash = "sha256-IYINga1qCCmdu1j6ix2GcZtx6twPwfHCxU8fPOqF4eE="; }; pythonRelaxDeps = [ "cryptography" "pyOpenSSL" ]; nativeBuildInputs = [ pythonRelaxDepsHook setuptools ]; propagatedBuildInputs = [ certifi circuitbreaker cryptography pyopenssl python-dateutil pytz ]; # Tests fail: https://github.com/oracle/oci-python-sdk/issues/164 doCheck = false; pythonImportsCheck = [ "oci" ]; meta = with lib; { description = "Oracle Cloud Infrastructure Python SDK"; homepage = "https://github.com/oracle/oci-python-sdk"; changelog = "https://github.com/oracle/oci-python-sdk/blob/v${version}/CHANGELOG.rst"; license = with licenses; [ asl20 /* or */ upl ]; maintainers = with maintainers; [ ilian ]; }; } [result] Failed to update python312Packages.oci 2.124.1 -> 2.124.2 https://github.com/oracle/oci-python-sdk/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.lessSEM, using log file: /var/log/nixpkgs-update/rPackages.lessSEM/2024-03-21.log rPackages.lessSEM 1.5.2 -> 1.5.5 https://repology.org/project/r:lesssem/versions attrpath: rPackages.lessSEM 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.lessSEM 1.5.2 -> 1.5.5 https://repology.org/project/r:lesssem/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ormolu, using log file: /var/log/nixpkgs-update/ormolu/2024-03-21.log ormolu 0.7.2.0 -> 0.7.4.0 https://repology.org/project/ormolu/versions attrpath: ormolu Checking auto update branch... No auto update branch exists Derivation file says not to edit it [result] Failed to update ormolu 0.7.2.0 -> 0.7.4.0 https://repology.org/project/ormolu/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ms, using log file: /var/log/nixpkgs-update/aspellDicts.ms/2024-03-21.log aspellDicts.ms 0 -> 1 attrpath: aspellDicts.ms 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/jryzcr239r3fww6m011f3i9p8zdqk6vk-update-aspellDict-ms.drv /nix/store/zvsq54xbi1vrd1hyyl0wzclpvgj6yr0n-packages.json.drv building '/nix/store/jryzcr239r3fww6m011f3i9p8zdqk6vk-update-aspellDict-ms.drv'... building '/nix/store/zvsq54xbi1vrd1hyyl0wzclpvgj6yr0n-packages.json.drv'... Going to be running update for following packages: - aspell-dict-ms-0.50-0 Press Enter key to continue... Running update for: - aspell-dict-ms-0.50-0: UPDATING ... - aspell-dict-ms-0.50-0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update aspellDicts.ms 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 sweet, using log file: /var/log/nixpkgs-update/sweet/2024-03-21.log sweet 4.0 -> 4.0^20240121 https://repology.org/project/sweet-theme/versions attrpath: sweet 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 sweet 4.0 -> 4.0^20240121 https://repology.org/project/sweet-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 rPackages.DelayedArray, using log file: /var/log/nixpkgs-update/rPackages.DelayedArray/2024-03-21.log rPackages.DelayedArray 0.28.0 -> 0.29.0 https://repology.org/project/r:delayedarray/versions attrpath: rPackages.DelayedArray Checking auto update branch... No auto update branch exists Old version 0.28.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.DelayedArray 0.28.0 -> 0.29.0 https://repology.org/project/r:delayedarray/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.fits, using log file: /var/log/nixpkgs-update/octavePackages.fits/2024-03-21.log octavePackages.fits 0 -> 1 attrpath: octavePackages.fits 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/qjrvl4z5j0bh8sxmhflicacmic740jhd-packages.json.drv building '/nix/store/qjrvl4z5j0bh8sxmhflicacmic740jhd-packages.json.drv'... Going to be running update for following packages: - octave-8.4.0-fits-1.0.7 Press Enter key to continue... Running update for: - octave-8.4.0-fits-1.0.7: UPDATING ... - octave-8.4.0-fits-1.0.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update octavePackages.fits 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.anyio, using log file: /var/log/nixpkgs-update/python311Packages.anyio/2024-03-21.log python311Packages.anyio 0 -> 1 attrpath: python311Packages.anyio 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/nkadpnx1hiwa7bap5jvhab7r64m6wn96-packages.json.drv building '/nix/store/nkadpnx1hiwa7bap5jvhab7r64m6wn96-packages.json.drv'... Going to be running update for following packages: - python3.11-anyio-4.3.0 Press Enter key to continue... Running update for: - python3.11-anyio-4.3.0: UPDATING ... - python3.11-anyio-4.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.anyio 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.stumpy, using log file: /var/log/nixpkgs-update/python311Packages.stumpy/2024-03-21.log python311Packages.stumpy 0 -> 1 attrpath: python311Packages.stumpy 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/z2kynf1ckg1s3i27n3k3wv1ald0jav2w-packages.json.drv building '/nix/store/z2kynf1ckg1s3i27n3k3wv1ald0jav2w-packages.json.drv'... Going to be running update for following packages: - python3.11-stumpy-1.12.0 Press Enter key to continue... Running update for: - python3.11-stumpy-1.12.0: UPDATING ... - python3.11-stumpy-1.12.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.stumpy 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 tonelib-gfx, using log file: /var/log/nixpkgs-update/tonelib-gfx/2024-03-21.log tonelib-gfx 4.7.8 -> 4.8.0 https://repology.org/project/tonelib-gfx/versions attrpath: tonelib-gfx Checking auto update branch... No auto update branch exists [version] Hashes equal; no update necessary [result] Failed to update tonelib-gfx 4.7.8 -> 4.8.0 https://repology.org/project/tonelib-gfx/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.hatch-vcs, using log file: /var/log/nixpkgs-update/python311Packages.hatch-vcs/2024-03-21.log python311Packages.hatch-vcs 0 -> 1 attrpath: python311Packages.hatch-vcs 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/xd6vjyr094rdwd41cnvak3pc8lc61yi2-packages.json.drv building '/nix/store/xd6vjyr094rdwd41cnvak3pc8lc61yi2-packages.json.drv'... Going to be running update for following packages: - python3.11-hatch-vcs-0.4.0 Press Enter key to continue... Running update for: - python3.11-hatch-vcs-0.4.0: UPDATING ... - python3.11-hatch-vcs-0.4.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.hatch-vcs 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.pysigma-pipeline-crowdstrike, using log file: /var/log/nixpkgs-update/python311Packages.pysigma-pipeline-crowdstrike/2024-03-21.log python311Packages.pysigma-pipeline-crowdstrike 0 -> 1 attrpath: python311Packages.pysigma-pipeline-crowdstrike 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/1f5zyq01bxyq1iiyi07rhxxzlgbz0ylj-packages.json.drv building '/nix/store/1f5zyq01bxyq1iiyi07rhxxzlgbz0ylj-packages.json.drv'... Going to be running update for following packages: - python3.11-pysigma-pipeline-crowdstrike-1.0.3 Press Enter key to continue... Running update for: - python3.11-pysigma-pipeline-crowdstrike-1.0.3: UPDATING ... - python3.11-pysigma-pipeline-crowdstrike-1.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pysigma-pipeline-crowdstrike 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.pyxattr, using log file: /var/log/nixpkgs-update/python311Packages.pyxattr/2024-03-21.log python311Packages.pyxattr 0 -> 1 attrpath: python311Packages.pyxattr 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/jfsisrn2ird53h9w8yf3f1cmhim12z32-packages.json.drv building '/nix/store/jfsisrn2ird53h9w8yf3f1cmhim12z32-packages.json.drv'... Going to be running update for following packages: - python3.11-pyxattr-0.8.1 Press Enter key to continue... Running update for: - python3.11-pyxattr-0.8.1: UPDATING ... - python3.11-pyxattr-0.8.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyxattr 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.plac, using log file: /var/log/nixpkgs-update/python311Packages.plac/2024-03-21.log python311Packages.plac 0 -> 1 attrpath: python311Packages.plac 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/bk4h1cyci7j1y3m4lw1y03f60bidj97p-packages.json.drv building '/nix/store/bk4h1cyci7j1y3m4lw1y03f60bidj97p-packages.json.drv'... Going to be running update for following packages: - python3.11-plac-1.4.3 Press Enter key to continue... Running update for: - python3.11-plac-1.4.3: UPDATING ... - python3.11-plac-1.4.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.plac 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-keycloak, using log file: /var/log/nixpkgs-update/python311Packages.python-keycloak/2024-03-21.log python311Packages.python-keycloak 0 -> 1 attrpath: python311Packages.python-keycloak 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/i5xd7c07n0r1a06s85bq7rn0hdbpd3p9-packages.json.drv building '/nix/store/i5xd7c07n0r1a06s85bq7rn0hdbpd3p9-packages.json.drv'... Going to be running update for following packages: - python3.11-python-keycloak-2.6.0 Press Enter key to continue... Running update for: - python3.11-python-keycloak-2.6.0: UPDATING ... - python3.11-python-keycloak-2.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-keycloak 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.unidata-blocks, using log file: /var/log/nixpkgs-update/python311Packages.unidata-blocks/2024-03-21.log python311Packages.unidata-blocks 0 -> 1 attrpath: python311Packages.unidata-blocks 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/mh5a29l0nwp8yc0m1j9qndinakxxsrs9-packages.json.drv building '/nix/store/mh5a29l0nwp8yc0m1j9qndinakxxsrs9-packages.json.drv'... Going to be running update for following packages: - python3.11-unidata-blocks-0.0.9 Press Enter key to continue... Running update for: - python3.11-unidata-blocks-0.0.9: UPDATING ... - python3.11-unidata-blocks-0.0.9: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.unidata-blocks 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.retry, using log file: /var/log/nixpkgs-update/python311Packages.retry/2024-03-21.log python311Packages.retry 0 -> 1 attrpath: python311Packages.retry 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/13il07cvcbly91lbmghscpwa2v07izmy-packages.json.drv building '/nix/store/13il07cvcbly91lbmghscpwa2v07izmy-packages.json.drv'... Going to be running update for following packages: - python3.11-retry-0.9.2 Press Enter key to continue... Running update for: - python3.11-retry-0.9.2: UPDATING ... - python3.11-retry-0.9.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.retry 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.googletraffic, using log file: /var/log/nixpkgs-update/rPackages.googletraffic/2024-03-21.log rPackages.googletraffic 0.1.4 -> 0.1.5 https://repology.org/project/r:googletraffic/versions attrpath: rPackages.googletraffic 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.googletraffic 0.1.4 -> 0.1.5 https://repology.org/project/r:googletraffic/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath texlab, using log file: /var/log/nixpkgs-update/texlab/2024-03-21.log texlab 0 -> 1 attrpath: texlab 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/xmm3gzjqcmz8kp1q50zral43as7lr3ll-packages.json.drv building '/nix/store/xmm3gzjqcmz8kp1q50zral43as7lr3ll-packages.json.drv'... Going to be running update for following packages: - texlab-5.13.1 Press Enter key to continue... Running update for: - texlab-5.13.1: UPDATING ... - texlab-5.13.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update texlab 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 completely, using log file: /var/log/nixpkgs-update/completely/2024-03-21.log completely 0 -> 1 attrpath: completely 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 completely 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.gentools, using log file: /var/log/nixpkgs-update/python311Packages.gentools/2024-03-21.log python311Packages.gentools 0 -> 1 attrpath: python311Packages.gentools 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/gawmc8i04v72mn5qlmijxz1fq89afbb5-packages.json.drv building '/nix/store/gawmc8i04v72mn5qlmijxz1fq89afbb5-packages.json.drv'... Going to be running update for following packages: - python3.11-gentools-1.2.2 Press Enter key to continue... Running update for: - python3.11-gentools-1.2.2: UPDATING ... - python3.11-gentools-1.2.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.gentools 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 openbabel2, using log file: /var/log/nixpkgs-update/openbabel2/2024-03-21.log openbabel2 2.4.1 -> 3.1.1 https://repology.org/project/openbabel/versions attrpath: openbabel2 Checking auto update branch... No auto update branch exists Version in attr path openbabel2 not compatible with 3.1.1 [result] Failed to update openbabel2 2.4.1 -> 3.1.1 https://repology.org/project/openbabel/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.cx-oracle, using log file: /var/log/nixpkgs-update/python311Packages.cx-oracle/2024-03-21.log python311Packages.cx-oracle 0 -> 1 attrpath: python311Packages.cx-oracle 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/f3vbcz46y79d4hfy98c90nipysb6slcs-packages.json.drv building '/nix/store/f3vbcz46y79d4hfy98c90nipysb6slcs-packages.json.drv'... Going to be running update for following packages: - python3.11-cx-oracle-8.3.0 Press Enter key to continue... Running update for: - python3.11-cx-oracle-8.3.0: UPDATING ... - python3.11-cx-oracle-8.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.cx-oracle 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.pytikz-allefeld, using log file: /var/log/nixpkgs-update/python311Packages.pytikz-allefeld/2024-03-21.log python311Packages.pytikz-allefeld 0 -> 1 attrpath: python311Packages.pytikz-allefeld 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/02n5jhwzhr8ay14z5pyzgx2lpwk8z9fp-packages.json.drv building '/nix/store/02n5jhwzhr8ay14z5pyzgx2lpwk8z9fp-packages.json.drv'... Going to be running update for following packages: - python3.11-pytikz-allefeld-unstable-2022-11-01 Press Enter key to continue... Running update for: - python3.11-pytikz-allefeld-unstable-2022-11-01: UPDATING ... - python3.11-pytikz-allefeld-unstable-2022-11-01: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytikz-allefeld 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.ledger-bitcoin, using log file: /var/log/nixpkgs-update/python311Packages.ledger-bitcoin/2024-03-21.log python311Packages.ledger-bitcoin 0 -> 1 attrpath: python311Packages.ledger-bitcoin 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/jmnqn72nccm400li0wl7z4196jlh0fxq-packages.json.drv building '/nix/store/jmnqn72nccm400li0wl7z4196jlh0fxq-packages.json.drv'... Going to be running update for following packages: - python3.11-ledger-bitcoin-0.3.0 Press Enter key to continue... Running update for: - python3.11-ledger-bitcoin-0.3.0: UPDATING ... - python3.11-ledger-bitcoin-0.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ledger-bitcoin 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.protobuf, using log file: /var/log/nixpkgs-update/python311Packages.protobuf/2024-03-21.log python311Packages.protobuf 0 -> 1 attrpath: python311Packages.protobuf 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/jy06pq38afn5cwlq1jkhv8a26g2hcn85-packages.json.drv building '/nix/store/jy06pq38afn5cwlq1jkhv8a26g2hcn85-packages.json.drv'... Going to be running update for following packages: - python3.11-protobuf-4.24.4 Press Enter key to continue... Running update for: - python3.11-protobuf-4.24.4: UPDATING ... - python3.11-protobuf-4.24.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.protobuf 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.jq, using log file: /var/log/nixpkgs-update/python311Packages.jq/2024-03-21.log python311Packages.jq 0 -> 1 attrpath: python311Packages.jq 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/q23amxn7gika3sz12hz35kbr4i1cp5cg-packages.json.drv building '/nix/store/q23amxn7gika3sz12hz35kbr4i1cp5cg-packages.json.drv'... Going to be running update for following packages: - python3.11-jq-1.6.0 Press Enter key to continue... Running update for: - python3.11-jq-1.6.0: UPDATING ... - python3.11-jq-1.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.jq 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.linode-api, using log file: /var/log/nixpkgs-update/python311Packages.linode-api/2024-03-21.log python311Packages.linode-api 0 -> 1 attrpath: python311Packages.linode-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/xk7my2z3by0cwlqr4vrl54885371k516-packages.json.drv building '/nix/store/xk7my2z3by0cwlqr4vrl54885371k516-packages.json.drv'... Going to be running update for following packages: - python3.11-linode-api-5.13.1 Press Enter key to continue... Running update for: - python3.11-linode-api-5.13.1: UPDATING ... - python3.11-linode-api-5.13.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.linode-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 bundler-audit, using log file: /var/log/nixpkgs-update/bundler-audit/2024-03-21.log bundler-audit 0 -> 1 attrpath: bundler-audit 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 bundler-audit 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 cloudhunter, using log file: /var/log/nixpkgs-update/cloudhunter/2024-03-21.log cloudhunter 0 -> 1 attrpath: cloudhunter 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/iw2dh2w6ks738k1bmxk4646xx085vq4k-packages.json.drv building '/nix/store/iw2dh2w6ks738k1bmxk4646xx085vq4k-packages.json.drv'... Going to be running update for following packages: - cloudhunter-0.7.1 Press Enter key to continue... Running update for: - cloudhunter-0.7.1: UPDATING ... - cloudhunter-0.7.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update cloudhunter 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 libmicrohttpd, using log file: /var/log/nixpkgs-update/libmicrohttpd/2024-03-21.log libmicrohttpd 0.9.77 -> 1.0.1 https://repology.org/project/libmicrohttpd/versions attrpath: libmicrohttpd Checking auto update branch... No auto update branch exists Old version 0.9.77" not present in master derivation file with contents: { lib, stdenv, libgcrypt, curl, gnutls, pkg-config, libiconv, libintl, version, src, meta ? {}, fetchpatch }: let meta_ = meta; in stdenv.mkDerivation rec { pname = "libmicrohttpd"; inherit version src; patches = lib.optionals (lib.versionOlder version "0.9.76") [ (fetchpatch { name = "CVE-2023-27371.patch"; url = "https://git.gnunet.org/libmicrohttpd.git/patch/?id=e0754d1638c602382384f1eface30854b1defeec"; hash = "sha256-vzrq9HPysGpc13rFEk6zLPgpUqp/ST4q/Wp30Dam97k="; excludes = [ "ChangeLog" ]; }) ]; outputs = [ "out" "dev" "devdoc" "info" ]; nativeBuildInputs = [ pkg-config ]; buildInputs = [ libgcrypt curl gnutls libiconv libintl ]; preCheck = '' # Since `localhost' can't be resolved in a chroot, work around it. sed -ie 's/localhost/127.0.0.1/g' src/test*/*.[ch] ''; # Disabled because the tests can time-out. doCheck = false; meta = with lib; { description = "Embeddable HTTP server library"; longDescription = '' GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. ''; license = licenses.lgpl2Plus; homepage = "https://www.gnu.org/software/libmicrohttpd/"; maintainers = with maintainers; [ eelco vrthra fpletz ]; platforms = platforms.unix; } // meta_; } [result] Failed to update libmicrohttpd 0.9.77 -> 1.0.1 https://repology.org/project/libmicrohttpd/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.django-mptt, using log file: /var/log/nixpkgs-update/python312Packages.django-mptt/2024-03-21.log python312Packages.django-mptt 0.13.4 -> 0.16 https://repology.org/project/python:django-mptt/versions attrpath: python312Packages.django-mptt 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/323mqjs4zq65267v77g7qfh7b5z1qx5p-packages.json.drv building '/nix/store/323mqjs4zq65267v77g7qfh7b5z1qx5p-packages.json.drv'... Going to be running update for following packages: - python3.12-django-mptt-0.13.4 Press Enter key to continue... Running update for: - python3.12-django-mptt-0.13.4: UPDATING ... - python3.12-django-mptt-0.13.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.django-mptt 0.13.4 -> 0.16 https://repology.org/project/python:django-mptt/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.regioncode, using log file: /var/log/nixpkgs-update/rPackages.regioncode/2024-03-21.log rPackages.regioncode 0.1.1 -> 0.1.2 https://repology.org/project/r:regioncode/versions attrpath: rPackages.regioncode 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.regioncode 0.1.1 -> 0.1.2 https://repology.org/project/r:regioncode/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ufs, using log file: /var/log/nixpkgs-update/rPackages.ufs/2024-03-21.log rPackages.ufs 0.5.10 -> 0.5.12 https://repology.org/project/r:ufs/versions attrpath: rPackages.ufs Checking auto update branch... No auto update branch exists Old version 0.5.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.ufs 0.5.10 -> 0.5.12 https://repology.org/project/r:ufs/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.packaging, using log file: /var/log/nixpkgs-update/python312Packages.packaging/2024-03-21.log python312Packages.packaging 23.2 -> 24.0 https://repology.org/project/python:packaging/versions attrpath: python312Packages.packaging 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/yg3655n89clalkpq0cfz801n923ycdl7-packages.json.drv building '/nix/store/yg3655n89clalkpq0cfz801n923ycdl7-packages.json.drv'... Going to be running update for following packages: - python3.12-packaging-23.2 Press Enter key to continue... Running update for: - python3.12-packaging-23.2: UPDATING ... - python3.12-packaging-23.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/packaging/default.nix b/pkgs/development/python-modules/packaging/default.nix index 123c1230fc87..32ce7fd8accb 100644 --- a/pkgs/development/python-modules/packaging/default.nix +++ b/pkgs/development/python-modules/packaging/default.nix @@ -14,14 +14,14 @@ let packaging = buildPythonPackage rec { pname = "packaging"; - version = "23.2"; + version = "24.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-BI+w6UBQNlGOqvSKVZU8dQwR4aG2jg3RqdYu0MCSz8U="; + hash = "sha256-64LF4+ViCQdHZuaIW7BLjDigwBXQowA26+fs40yZiek="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Python package with too many package rebuilds 59258 > 25 [result] Failed to update python312Packages.packaging 23.2 -> 24.0 https://repology.org/project/python:packaging/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.xsdata, using log file: /var/log/nixpkgs-update/python312Packages.xsdata/2024-03-21.log python312Packages.xsdata 24.2.1 -> 24.3.1 https://repology.org/project/python:xsdata/versions attrpath: python312Packages.xsdata 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/c8gn8h51nm3p9wf9blfi6khryl76wnhm-packages.json.drv building '/nix/store/c8gn8h51nm3p9wf9blfi6khryl76wnhm-packages.json.drv'... Going to be running update for following packages: - python3.12-xsdata-24.2.1 Press Enter key to continue... Running update for: - python3.12-xsdata-24.2.1: UPDATING ... - python3.12-xsdata-24.2.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/xsdata/default.nix b/pkgs/development/python-modules/xsdata/default.nix index b57fff4a94f0..1b708d1995e3 100644 --- a/pkgs/development/python-modules/xsdata/default.nix +++ b/pkgs/development/python-modules/xsdata/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "xsdata"; - version = "24.2.1"; + version = "24.3.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "tefra"; repo = "xsdata"; rev = "refs/tags/v${version}"; - hash = "sha256-o3G0isXShwNHaOiA4TNml0IhStB3X4jB9CgrVKViBlY="; + hash = "sha256-Y9xFj5smGixHX1zuPm860p83NFGGXPG+EW0SeW7PCXg="; }; patches = [ 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.xsdata Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . python312Packages.xsdata Standard output: error: build log of 'python312Packages.xsdata' is not available [result] Failed to update python312Packages.xsdata 24.2.1 -> 24.3.1 https://repology.org/project/python:xsdata/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.httpserver, using log file: /var/log/nixpkgs-update/python311Packages.httpserver/2024-03-21.log python311Packages.httpserver 0 -> 1 attrpath: python311Packages.httpserver 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/hlxqfxb870nj22ryphplmy0ad2q20hzk-packages.json.drv building '/nix/store/hlxqfxb870nj22ryphplmy0ad2q20hzk-packages.json.drv'... Going to be running update for following packages: - python3.11-httpserver-1.1.0 Press Enter key to continue... Running update for: - python3.11-httpserver-1.1.0: UPDATING ... - python3.11-httpserver-1.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.httpserver 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.pastescript, using log file: /var/log/nixpkgs-update/python311Packages.pastescript/2024-03-21.log python311Packages.pastescript 0 -> 1 attrpath: python311Packages.pastescript 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/gi1w02a44bckpwvlrraz8hcgya31xc18-packages.json.drv building '/nix/store/gi1w02a44bckpwvlrraz8hcgya31xc18-packages.json.drv'... Going to be running update for following packages: - python3.11-pastescript-3.4.0 Press Enter key to continue... Running update for: - python3.11-pastescript-3.4.0: UPDATING ... - python3.11-pastescript-3.4.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pastescript/default.nix b/pkgs/development/python-modules/pastescript/default.nix index 65da03e73d97..3d42c40c1230 100644 --- a/pkgs/development/python-modules/pastescript/default.nix +++ b/pkgs/development/python-modules/pastescript/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "pastescript"; - version = "3.4.0"; + version = "3.5.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "PasteScript"; inherit version; - hash = "sha256-k0jvBlr/Is8ViMEt+wIMx1HGSC4hb4o8dRL6QKQ/kNw="; + hash = "sha256-zRtgbNReloT/20SL1tmq70IN0u/n5rYsbTc6Rv9DyDU="; }; propagatedBuildInputs = [ An auto update branch exists with message `python311Packages.pastescript: 3.4.0 -> 3.5.1`. New version is 3.5.1. An auto update branch exists with an equal or greater version [result] Failed to update python311Packages.pastescript 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.axis, using log file: /var/log/nixpkgs-update/python311Packages.axis/2024-03-21.log python311Packages.axis 0 -> 1 attrpath: python311Packages.axis 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/q536vqqpyrz6j6y4hc3dld36wb0w87gj-packages.json.drv building '/nix/store/q536vqqpyrz6j6y4hc3dld36wb0w87gj-packages.json.drv'... Going to be running update for following packages: - python3.11-axis-56 Press Enter key to continue... Running update for: - python3.11-axis-56: UPDATING ... - python3.11-axis-56: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.axis 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-passwordsafe, using log file: /var/log/nixpkgs-update/gnome-passwordsafe/2024-03-21.log gnome-passwordsafe 0 -> 1 attrpath: gnome-passwordsafe 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/pnminx2bc0s8chxzyic0sqp49xdkadjw-packages.json.drv building '/nix/store/pnminx2bc0s8chxzyic0sqp49xdkadjw-packages.json.drv'... Going to be running update for following packages: - gnome-secrets-8.0 Press Enter key to continue... Running update for: - gnome-secrets-8.0: UPDATING ... - gnome-secrets-8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update gnome-passwordsafe 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.yara-python, using log file: /var/log/nixpkgs-update/python311Packages.yara-python/2024-03-21.log python311Packages.yara-python 0 -> 1 attrpath: python311Packages.yara-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/zh5yqhgjdcz19vhpzwprj7pjmgqs6jj3-packages.json.drv building '/nix/store/zh5yqhgjdcz19vhpzwprj7pjmgqs6jj3-packages.json.drv'... Going to be running update for following packages: - python3.11-yara-python-4.5.0 Press Enter key to continue... Running update for: - python3.11-yara-python-4.5.0: UPDATING ... - python3.11-yara-python-4.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.yara-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.statsd, using log file: /var/log/nixpkgs-update/python311Packages.statsd/2024-03-21.log python311Packages.statsd 0 -> 1 attrpath: python311Packages.statsd 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/m3fsaciivk3sfg2axaihnkz41f0ziizx-packages.json.drv building '/nix/store/m3fsaciivk3sfg2axaihnkz41f0ziizx-packages.json.drv'... Going to be running update for following packages: - python3.11-statsd-4.0.1 Press Enter key to continue... Running update for: - python3.11-statsd-4.0.1: UPDATING ... - python3.11-statsd-4.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.statsd 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.faster-fifo, using log file: /var/log/nixpkgs-update/python311Packages.faster-fifo/2024-03-21.log python311Packages.faster-fifo 0 -> 1 attrpath: python311Packages.faster-fifo 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/9wbsr14jgcjnsw0xc19wfmm15vq0wfv2-packages.json.drv building '/nix/store/9wbsr14jgcjnsw0xc19wfmm15vq0wfv2-packages.json.drv'... Going to be running update for following packages: - python3.11-faster-fifo-1.4.5 Press Enter key to continue... Running update for: - python3.11-faster-fifo-1.4.5: UPDATING ... - python3.11-faster-fifo-1.4.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.faster-fifo 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.aniso8601, using log file: /var/log/nixpkgs-update/python311Packages.aniso8601/2024-03-21.log python311Packages.aniso8601 0 -> 1 attrpath: python311Packages.aniso8601 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/w34bal9f9jyd9bdrs6ancpqj2l4vjzgl-packages.json.drv building '/nix/store/w34bal9f9jyd9bdrs6ancpqj2l4vjzgl-packages.json.drv'... Going to be running update for following packages: - python3.11-aniso8601-9.0.1 Press Enter key to continue... Running update for: - python3.11-aniso8601-9.0.1: UPDATING ... - python3.11-aniso8601-9.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aniso8601 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.pyheck, using log file: /var/log/nixpkgs-update/python311Packages.pyheck/2024-03-21.log python311Packages.pyheck 0 -> 1 attrpath: python311Packages.pyheck 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/5d3aw0rrl5023396bghhmpr4c9waj2nw-packages.json.drv building '/nix/store/5d3aw0rrl5023396bghhmpr4c9waj2nw-packages.json.drv'... Going to be running update for following packages: - python3.11-pyheck-0.1.5 Press Enter key to continue... Running update for: - python3.11-pyheck-0.1.5: UPDATING ... - python3.11-pyheck-0.1.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyheck 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.fastcpd, using log file: /var/log/nixpkgs-update/rPackages.fastcpd/2024-03-21.log rPackages.fastcpd 0.10.0 -> 0.12.2 https://repology.org/project/r:fastcpd/versions attrpath: rPackages.fastcpd 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.fastcpd 0.10.0 -> 0.12.2 https://repology.org/project/r:fastcpd/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath bobcat, using log file: /var/log/nixpkgs-update/bobcat/2024-03-21.log bobcat 5.11.01 -> 6.04.00 https://repology.org/project/bobcat/versions attrpath: bobcat 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/bo/bobcat/package.nix b/pkgs/by-name/bo/bobcat/package.nix index b873862fe7ed..76aac803ce51 100644 --- a/pkgs/by-name/bo/bobcat/package.nix +++ b/pkgs/by-name/bo/bobcat/package.nix @@ -12,14 +12,14 @@ stdenv.mkDerivation rec { pname = "bobcat"; - version = "5.11.01"; + version = "6.04.00"; src = fetchFromGitLab { domain = "gitlab.com"; owner = "fbb-git"; repo = "bobcat"; rev = version; - hash = "sha256-JLJKaJmztputIon9JkKzpm3Ch60iwm4Imh9p42crYzA="; + hash = "sha256-8Lef+/9myln2zY4c1ttFdPzRzOK52IsYcJtYI2Qg7OY="; }; sourceRoot = "${src.name}/bobcat"; [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 bobcat nix build failed. ./arg/driver/c: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./arg/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./arg/driver/getoptlong/build: interpreter directive changed from "#!/usr/bin/icmake -qt/tmp/getoptlong" to "/nix/store/gxgnw4rnzls4rp0m3cyv6dxnryxlh85h-icmake-9.03.01/bin/icmake -qt/tmp/getoptlong" ./arg/driver/l: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./user/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./proc/driver/b: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./hmacbuf/driver/build: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" ./ifdbufs/driver/build: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" ./log/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./bigint/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./inetaddress/driver/build: interpreter directive changed from "#!/bin/sh" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/sh" ./ldc/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./ldc/driver/buildex: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./serversocket/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./sharedmutex/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./exception/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./stat/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" ./clientsocket/driver/build: interpreter directive changed from "#!/bin/bash" to "/nix/store/5lr5n3qa4day8l1ivbwlcby2nknczqkq-bash-5.2p26/bin/bash" @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 [icmake/man, line 28] Error: at '<<': '(' expected [icmake/man, line 39] Error: at '<<': '(' expected [icmake/man, line 45] Error: at '<<': '(' expected 3 error(s) detected [result] Failed to update bobcat 5.11.01 -> 6.04.00 https://repology.org/project/bobcat/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath system-syzygy, using log file: /var/log/nixpkgs-update/system-syzygy/2024-03-21.log system-syzygy 1.0.1 -> 1.0.2 https://repology.org/project/system-syzygy/versions attrpath: system-syzygy 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/system-syzygy/default.nix b/pkgs/games/system-syzygy/default.nix index dee96f392c54..a743873edf2a 100644 --- a/pkgs/games/system-syzygy/default.nix +++ b/pkgs/games/system-syzygy/default.nix @@ -11,13 +11,13 @@ let in rustPlatform.buildRustPackage rec { pname = "system-syzygy"; - version = "1.0.1"; + version = "1.0.2"; src = fetchFromGitHub { owner = "mdsteele"; repo = "syzygy"; rev = "5ba148fed7aae14bf35108d7303e4194e8ffe5e8"; - sha256 = "07mzwx8ql33q865snnw4gm3dgf0mnm60lnq1f5fgas2yjy9g9vwa"; + sha256 = "sha256-iu/0kpdeaPVccQFbCky1FbjXRn2EW6uLQXgMilHnvx4="; }; nativeBuildInputs = [ makeWrapper ]; Source url did not change. [result] Failed to update system-syzygy 1.0.1 -> 1.0.2 https://repology.org/project/system-syzygy/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath turbogit, using log file: /var/log/nixpkgs-update/turbogit/2024-03-21.log turbogit 3.1.1 -> 4.0.0 https://repology.org/project/turbogit/versions attrpath: turbogit 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-280OcGXZQJD4G6z0b2WnWAS+v7XVptyf2WnlPjG99/0=" build succeeded unexpectedlystderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'turbogit.originalSrc' not found stderr did not split as expected full stderr was: error: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:9:12: (source not available) … while evaluating derivation 'turbogit-4.0.0' whose name attribute is located at /var/cache/nixpkgs-update/worker/worktree/turbogit/pkgs/stdenv/generic/make-derivation.nix:331:7 … while evaluating attribute 'buildInputs' of derivation 'turbogit-4.0.0' at /var/cache/nixpkgs-update/worker/worktree/turbogit/pkgs/stdenv/generic/make-derivation.nix:378:7: 377| depsHostHost = elemAt (elemAt dependencies 1) 0; 378| buildInputs = elemAt (elemAt dependencies 1) 1; | ^ 379| depsTargetTarget = elemAt (elemAt dependencies 2) 0; error: Package ‘libgit2-1.3.0’ in /var/cache/nixpkgs-update/worker/worktree/turbogit/pkgs/development/libraries/libgit2/default.nix:76 is marked as insecure, refusing to evaluate. Known issues: - CVE-2024-24575 - CVE-2024-24577 - CVE-2022-29187 - CVE 2022-24765 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 ‘libgit2-1.3.0’ to `nixpkgs.config.permittedInsecurePackages` in the configuration.nix, like so: { nixpkgs.config.permittedInsecurePackages = [ "libgit2-1.3.0" ]; } c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add ‘libgit2-1.3.0’ to `permittedInsecurePackages` in ~/.config/nixpkgs/config.nix, like so: { permittedInsecurePackages = [ "libgit2-1.3.0" ]; } [result] Failed to update turbogit 3.1.1 -> 4.0.0 https://repology.org/project/turbogit/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.rintrojs, using log file: /var/log/nixpkgs-update/rPackages.rintrojs/2024-03-21.log rPackages.rintrojs 0.3.3 -> 0.3.4 https://repology.org/project/r:rintrojs/versions attrpath: rPackages.rintrojs Checking auto update branch... No auto update branch exists Old version 0.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.rintrojs 0.3.3 -> 0.3.4 https://repology.org/project/r:rintrojs/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.aiokef, using log file: /var/log/nixpkgs-update/python311Packages.aiokef/2024-03-21.log python311Packages.aiokef 0 -> 1 attrpath: python311Packages.aiokef 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/cmpnm4r29fjkfqgbp18rr5294ama2vfw-packages.json.drv building '/nix/store/cmpnm4r29fjkfqgbp18rr5294ama2vfw-packages.json.drv'... Going to be running update for following packages: - python3.11-aiokef-0.2.17 Press Enter key to continue... Running update for: - python3.11-aiokef-0.2.17: UPDATING ... - python3.11-aiokef-0.2.17: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aiokef 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 gitfs, using log file: /var/log/nixpkgs-update/gitfs/2024-03-21.log gitfs 0 -> 1 attrpath: gitfs 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/rji5clv39qvqzdkv7pj5wdknqxm19vgq-packages.json.drv building '/nix/store/rji5clv39qvqzdkv7pj5wdknqxm19vgq-packages.json.drv'... Going to be running update for following packages: - gitfs-0.5.2 Press Enter key to continue... Running update for: - gitfs-0.5.2: UPDATING ... - gitfs-0.5.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update gitfs 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 wch-isp, using log file: /var/log/nixpkgs-update/wch-isp/2024-03-21.log wch-isp 0.4.0 -> 0.4.1 https://repology.org/project/wch-isp/versions attrpath: wch-isp Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - wch-isp: 0.4.0 -> 0.4.1, move source to sr.ht URL "https://api.github.com/repos/NixOS/nixpkgs/issues/281645" [result] Failed to update wch-isp 0.4.0 -> 0.4.1 https://repology.org/project/wch-isp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath imdshift, using log file: /var/log/nixpkgs-update/imdshift/2024-03-21.log imdshift 0 -> 1 attrpath: imdshift 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/86mag5br71qf67qpgj274nvdqiaiaknh-packages.json.drv building '/nix/store/86mag5br71qf67qpgj274nvdqiaiaknh-packages.json.drv'... Going to be running update for following packages: - imdshift-1.0.0 Press Enter key to continue... Running update for: - imdshift-1.0.0: UPDATING ... - imdshift-1.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update imdshift 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.chainmap, using log file: /var/log/nixpkgs-update/python311Packages.chainmap/2024-03-21.log python311Packages.chainmap 0 -> 1 attrpath: python311Packages.chainmap 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/flajl9chg6s5c3ljf6cym62v5kpr5iha-packages.json.drv building '/nix/store/flajl9chg6s5c3ljf6cym62v5kpr5iha-packages.json.drv'... Going to be running update for following packages: - python3.11-chainmap-1.0.3 Press Enter key to continue... Running update for: - python3.11-chainmap-1.0.3: UPDATING ... - python3.11-chainmap-1.0.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.chainmap 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.guppy3, using log file: /var/log/nixpkgs-update/python311Packages.guppy3/2024-03-21.log python311Packages.guppy3 0 -> 1 attrpath: python311Packages.guppy3 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/00z12lkhk5cisya169qima18313m41nk-packages.json.drv building '/nix/store/00z12lkhk5cisya169qima18313m41nk-packages.json.drv'... Going to be running update for following packages: - python3.11-guppy3-3.1.4.post1 Press Enter key to continue... Running update for: - python3.11-guppy3-3.1.4.post1: UPDATING ... - python3.11-guppy3-3.1.4.post1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.guppy3 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 srelay, using log file: /var/log/nixpkgs-update/srelay/2024-03-21.log srelay 0.4.8 -> 0.4.8p3 https://repology.org/project/srelay/versions attrpath: srelay 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/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv building '/nix/store/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv'... trying https://downloads.sourceforge.net/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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:02 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://netcologne.dl.sourceforge.net/sourceforge/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 859 0 --:--:-- --:--:-- --:--:-- 857 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/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 244 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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 350 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/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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 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 srelay-0.4.8p3.tar.gz from any mirror error: builder for '/nix/store/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 244 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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 350 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/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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 > 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 srelay-0.4.8p3.tar.gz from any mirror For full logs, run 'nix log /nix/store/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'srelay.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv /nix/store/xy091hwg68k1bkzkxx0f0fmcw78cb09r-srelay-0.4.8p3.drv building '/nix/store/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv'... trying https://downloads.sourceforge.net/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1281 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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 350 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/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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 srelay-0.4.8p3.tar.gz from any mirror error: builder for '/nix/store/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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/project/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 350 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/socks-relay/socks-relay/srelay-0.4.8p3/srelay-0.4.8p3.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 srelay-0.4.8p3.tar.gz from any mirror For full logs, run 'nix log /nix/store/kydp71yprl6z574sbimgfbyznyp69fim-srelay-0.4.8p3.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/xy091hwg68k1bkzkxx0f0fmcw78cb09r-srelay-0.4.8p3.drv' failed to build [result] Failed to update srelay 0.4.8 -> 0.4.8p3 https://repology.org/project/srelay/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.traitlets, using log file: /var/log/nixpkgs-update/python311Packages.traitlets/2024-03-21.log python311Packages.traitlets 0 -> 1 attrpath: python311Packages.traitlets 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/kin3ziwjkm5341dmlij0w6c7rmm7i7z4-packages.json.drv building '/nix/store/kin3ziwjkm5341dmlij0w6c7rmm7i7z4-packages.json.drv'... Going to be running update for following packages: - python3.11-traitlets-5.14.1 Press Enter key to continue... Running update for: - python3.11-traitlets-5.14.1: UPDATING ... - python3.11-traitlets-5.14.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/traitlets/default.nix b/pkgs/development/python-modules/traitlets/default.nix index 012347e2f76b..edb0d9b50ec7 100644 --- a/pkgs/development/python-modules/traitlets/default.nix +++ b/pkgs/development/python-modules/traitlets/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "traitlets"; - version = "5.14.1"; + version = "5.14.2"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-hYUQWzcaBLgxakPVzinAmFdcLkd4ULYrhIuWTxREUn4="; + hash = "sha256-jN2DwEDat9He6CJnjl9dEAtRT3tysBYVsm/FcYkW/fk="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Python package with too many package rebuilds 4376 > 25 [result] Failed to update python311Packages.traitlets 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.GetoptLong 2.54 -> 2.57 https://repology.org/project/perl:getopt-long/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.baselines, using log file: /var/log/nixpkgs-update/python311Packages.baselines/2024-03-21.log python311Packages.baselines 0 -> 1 attrpath: python311Packages.baselines 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/v8ay5cc87qr5505ijgapnq2algp9zci0-packages.json.drv building '/nix/store/v8ay5cc87qr5505ijgapnq2algp9zci0-packages.json.drv'... Going to be running update for following packages: - python3.11-baselines-0.1.6 Press Enter key to continue... Running update for: - python3.11-baselines-0.1.6: UPDATING ... - python3.11-baselines-0.1.6: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.baselines 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 virtualgl, using log file: /var/log/nixpkgs-update/virtualgl/2024-03-21.log virtualgl 3.0.2 -> 3.1.1 https://repology.org/project/virtualgl/versions attrpath: virtualgl Checking auto update branch... No auto update branch exists Old version 3.0.2" not present in master derivation file with contents: { stdenv, lib , virtualglLib , virtualglLib_i686 ? null }: stdenv.mkDerivation { pname = "virtualgl"; version = lib.getVersion virtualglLib; paths = [ virtualglLib ]; buildCommand = '' mkdir -p $out/bin for i in ${virtualglLib}/bin/* ${virtualglLib}/bin/.vglrun*; do ln -s "$i" $out/bin done '' + lib.optionalString (virtualglLib_i686 != null) '' ln -sf ${virtualglLib_i686}/bin/.vglrun.vars32 $out/bin ''; meta = { platforms = lib.platforms.linux; inherit (virtualglLib.meta) license; }; } [result] Failed to update virtualgl 3.0.2 -> 3.1.1 https://repology.org/project/virtualgl/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath xborders, using log file: /var/log/nixpkgs-update/xborders/2024-03-21.log xborders 0 -> 1 attrpath: xborders 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/1dncnppyp4yqhkljclvwa4nf4hx5g6h8-packages.json.drv building '/nix/store/1dncnppyp4yqhkljclvwa4nf4hx5g6h8-packages.json.drv'... Going to be running update for following packages: - python3.11-xborders-3.4 Press Enter key to continue... Running update for: - python3.11-xborders-3.4: UPDATING ... - python3.11-xborders-3.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update xborders 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.pyqtgraph, using log file: /var/log/nixpkgs-update/python311Packages.pyqtgraph/2024-03-21.log python311Packages.pyqtgraph 0 -> 1 attrpath: python311Packages.pyqtgraph 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/x80mylkk8caackfljbl2fmhraw9wi59s-packages.json.drv building '/nix/store/x80mylkk8caackfljbl2fmhraw9wi59s-packages.json.drv'... Going to be running update for following packages: - python3.11-pyqtgraph-0.13.4 Press Enter key to continue... Running update for: - python3.11-pyqtgraph-0.13.4: UPDATING ... - python3.11-pyqtgraph-0.13.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyqtgraph 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.colour, using log file: /var/log/nixpkgs-update/python311Packages.colour/2024-03-21.log python311Packages.colour 0 -> 1 attrpath: python311Packages.colour 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/k29zhnd8jcv757vczpp2mrwr14mgi0rx-packages.json.drv building '/nix/store/k29zhnd8jcv757vczpp2mrwr14mgi0rx-packages.json.drv'... Going to be running update for following packages: - python3.11-colour-0.1.5 Press Enter key to continue... Running update for: - python3.11-colour-0.1.5: UPDATING ... - python3.11-colour-0.1.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.colour 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 fdroidserver, using log file: /var/log/nixpkgs-update/fdroidserver/2024-03-21.log fdroidserver 0 -> 1 attrpath: fdroidserver 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/hg6dlzx3bmc0v29c3hsxbalfxazvql8s-packages.json.drv building '/nix/store/hg6dlzx3bmc0v29c3hsxbalfxazvql8s-packages.json.drv'... Going to be running update for following packages: - fdroidserver-unstable-2023-10-23 Press Enter key to continue... Running update for: - fdroidserver-unstable-2023-10-23: UPDATING ... - fdroidserver-unstable-2023-10-23: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update fdroidserver 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.pyfantom, using log file: /var/log/nixpkgs-update/python311Packages.pyfantom/2024-03-21.log python311Packages.pyfantom 0 -> 1 attrpath: python311Packages.pyfantom 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/j5qxmvfzss51045phc4yvh5gsnhf1asy-packages.json.drv building '/nix/store/j5qxmvfzss51045phc4yvh5gsnhf1asy-packages.json.drv'... Going to be running update for following packages: - python3.11-pyfantom-unstable-2013-12-18 Press Enter key to continue... Running update for: - python3.11-pyfantom-unstable-2013-12-18: UPDATING ... - python3.11-pyfantom-unstable-2013-12-18: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyfantom 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.overrides, using log file: /var/log/nixpkgs-update/python311Packages.overrides/2024-03-21.log python311Packages.overrides 0 -> 1 attrpath: python311Packages.overrides Checking auto update branch... [outpaths] eval start [outpaths] eval end [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/ybmlc256vj8flfzyjra5w10gx18wa75p-packages.json.drv building '/nix/store/ybmlc256vj8flfzyjra5w10gx18wa75p-packages.json.drv'... Going to be running update for following packages: - python3.11-overrides-7.7.0 Press Enter key to continue... Running update for: - python3.11-overrides-7.7.0: UPDATING ... - python3.11-overrides-7.7.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.overrides 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.edalize, using log file: /var/log/nixpkgs-update/python311Packages.edalize/2024-03-21.log python311Packages.edalize 0 -> 1 attrpath: python311Packages.edalize 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/5y4668wl82v8rmr79r7fw3h0n148m4zk-packages.json.drv building '/nix/store/5y4668wl82v8rmr79r7fw3h0n148m4zk-packages.json.drv'... Going to be running update for following packages: - python3.11-edalize-0.5.4 Press Enter key to continue... Running update for: - python3.11-edalize-0.5.4: UPDATING ... - python3.11-edalize-0.5.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.edalize 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 python311Packages.hyperlink 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.fixtures, using log file: /var/log/nixpkgs-update/python311Packages.fixtures/2024-03-21.log python311Packages.fixtures 0 -> 1 attrpath: python311Packages.fixtures 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/psswy2hrb57g0iiw65viwjpbfbm4rx27-packages.json.drv building '/nix/store/psswy2hrb57g0iiw65viwjpbfbm4rx27-packages.json.drv'... Going to be running update for following packages: - python3.11-fixtures-4.1.0 Press Enter key to continue... Running update for: - python3.11-fixtures-4.1.0: UPDATING ... - python3.11-fixtures-4.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.fixtures 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 tockloader, using log file: /var/log/nixpkgs-update/tockloader/2024-03-21.log tockloader 0 -> 1 attrpath: tockloader 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/plkaxd7lq75l7rm70llp59wrh0j0zsj7-packages.json.drv building '/nix/store/plkaxd7lq75l7rm70llp59wrh0j0zsj7-packages.json.drv'... Going to be running update for following packages: - tockloader-1.9.0 Press Enter key to continue... Running update for: - tockloader-1.9.0: UPDATING ... - tockloader-1.9.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/tools/misc/tockloader/default.nix b/pkgs/development/tools/misc/tockloader/default.nix index d81760daa5fc..7d5c7348e017 100644 --- a/pkgs/development/tools/misc/tockloader/default.nix +++ b/pkgs/development/tools/misc/tockloader/default.nix @@ -5,11 +5,11 @@ python3.pkgs.buildPythonApplication rec { pname = "tockloader"; - version = "1.9.0"; + version = "1.11.0"; src = fetchPypi { inherit pname version; - hash = "sha256-7W55jugVtamFUL8N3dD1LFLJP2UDQb74V6o96rd/tEg="; + hash = "sha256-NsTUb+N7hKOedONOGEKJPFIBhW4iuVvrZj2EMR/lK1E="; }; propagatedBuildInputs = with python3.pkgs; [ 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 tockloader nix build failed. Executing pypaInstallPhase Successfully installed tockloader-1.11.0-py3-none-any.whl Finished executing pypaInstallPhase @nix { "action": "setPhase", "phase": "pythonOutputDistPhase" } Running phase: pythonOutputDistPhase Executing pythonOutputDistPhase Finished executing pythonOutputDistPhase @nix { "action": "setPhase", "phase": "fixupPhase" } Running phase: fixupPhase shrinking RPATHs of ELF executables and libraries in /nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0 checking for references to /build/ in /nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0... patching script interpreter paths in /nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0 stripping (with command strip and flags -S -p) in /nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0/lib /nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0/bin shrinking RPATHs of ELF executables and libraries in /nix/store/7ssmdwg422kxzygf6pzlfz9lz02kri45-tockloader-1.11.0-dist checking for references to /build/ in /nix/store/7ssmdwg422kxzygf6pzlfz9lz02kri45-tockloader-1.11.0-dist... patching script interpreter paths in /nix/store/7ssmdwg422kxzygf6pzlfz9lz02kri45-tockloader-1.11.0-dist Rewriting #!/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/bin/python3.11 to #!/nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8 wrapping `/nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0/bin/tockloader'... Executing pythonRemoveTestsDir Finished executing pythonRemoveTestsDir @nix { "action": "setPhase", "phase": "installCheckPhase" } Running phase: installCheckPhase Traceback (most recent call last): File "/nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0/bin/.tockloader-wrapped", line 6, in from tockloader.main import main File "/nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0/lib/python3.11/site-packages/tockloader/main.py", line 30, in from .tickv import TicKV, TockTicKV File "/nix/store/1fqga5f0rpa20hnhp0z36rghrzyhnh0n-tockloader-1.11.0/lib/python3.11/site-packages/tockloader/tickv.py", line 13, in import siphash ModuleNotFoundError: No module named 'siphash' [result] Failed to update tockloader 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 cp210x-program, using log file: /var/log/nixpkgs-update/cp210x-program/2024-03-21.log cp210x-program 0 -> 1 attrpath: cp210x-program 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/m1g7abhxjvh3id0nfnmk0yvicxp3q66i-packages.json.drv building '/nix/store/m1g7abhxjvh3id0nfnmk0yvicxp3q66i-packages.json.drv'... Going to be running update for following packages: - cp210x-program-0.4.1 Press Enter key to continue... Running update for: - cp210x-program-0.4.1: UPDATING ... - cp210x-program-0.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update cp210x-program 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.sccore, using log file: /var/log/nixpkgs-update/rPackages.sccore/2024-03-21.log rPackages.sccore 1.0.4 -> 1.0.5 https://repology.org/project/r:sccore/versions attrpath: rPackages.sccore 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.sccore 1.0.4 -> 1.0.5 https://repology.org/project/r:sccore/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath s3proxy, using log file: /var/log/nixpkgs-update/s3proxy/2024-03-21.log s3proxy 2.1.0 -> 2.2.0 https://github.com/gaul/s3proxy/releases attrpath: s3proxy 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/s3/s3proxy/package.nix b/pkgs/by-name/s3/s3proxy/package.nix index b2fd1b03a5ab..3bb1f81727d2 100644 --- a/pkgs/by-name/s3/s3proxy/package.nix +++ b/pkgs/by-name/s3/s3proxy/package.nix @@ -8,7 +8,7 @@ let pname = "s3proxy"; - version = "2.1.0"; + version = "2.2.0"; in maven.buildMavenPackage { inherit pname version; @@ -18,7 +18,7 @@ maven.buildMavenPackage { owner = "gaul"; repo = pname; rev = "s3proxy-${version}"; - hash = "sha256-GhZPvo8wlXInHwg8rSmpwMMkZVw5SMpnZyKqFUYLbrE="; + hash = "sha256-gS+pUOVVzhKj76UPCM5utyDKP1wQgBcejgU4S7ax7s4="; }; mvnParameters = lib.optionalString stdenv.isDarwin "-DskipTests"; [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 s3proxy Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . s3proxy Standard output: error: build log of 's3proxy' is not available [result] Failed to update s3proxy 2.1.0 -> 2.2.0 https://github.com/gaul/s3proxy/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 ocamlPackages.easy-format, using log file: /var/log/nixpkgs-update/ocamlPackages.easy-format/2024-03-21.log ocamlPackages.easy-format 1.3.3 -> 1.3.4 https://repology.org/project/ocaml:easy-format/versions attrpath: ocamlPackages.easy-format 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.easy-format 1.3.3 -> 1.3.4 https://repology.org/project/ocaml:easy-format/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.VBTree, using log file: /var/log/nixpkgs-update/rPackages.VBTree/2024-03-21.log rPackages.VBTree 0.1.0 -> 0.1.1 https://repology.org/project/r:vbtree/versions attrpath: rPackages.VBTree 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.VBTree 0.1.0 -> 0.1.1 https://repology.org/project/r:vbtree/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.ffmpeg-python, using log file: /var/log/nixpkgs-update/python311Packages.ffmpeg-python/2024-03-21.log python311Packages.ffmpeg-python 0 -> 1 attrpath: python311Packages.ffmpeg-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/dzkpxc4qkfwqsbsyr7zfd0ky4qkxh8gd-packages.json.drv building '/nix/store/dzkpxc4qkfwqsbsyr7zfd0ky4qkxh8gd-packages.json.drv'... Going to be running update for following packages: - python3.11-ffmpeg-python-0.2.0 Press Enter key to continue... Running update for: - python3.11-ffmpeg-python-0.2.0: UPDATING ... - python3.11-ffmpeg-python-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ffmpeg-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 onthespot, using log file: /var/log/nixpkgs-update/onthespot/2024-03-21.log onthespot 0 -> 1 attrpath: onthespot 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/s4sna8qk3hk640cdfphw8wfgvy0wszhh-packages.json.drv building '/nix/store/s4sna8qk3hk640cdfphw8wfgvy0wszhh-packages.json.drv'... Going to be running update for following packages: - onthespot-0.5 Press Enter key to continue... Running update for: - onthespot-0.5: UPDATING ... - onthespot-0.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update onthespot 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.progressbar, using log file: /var/log/nixpkgs-update/python311Packages.progressbar/2024-03-21.log python311Packages.progressbar 0 -> 1 attrpath: python311Packages.progressbar 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/24pfjvcg2kq83p08hw93y83yjy9bf2yc-packages.json.drv building '/nix/store/24pfjvcg2kq83p08hw93y83yjy9bf2yc-packages.json.drv'... Going to be running update for following packages: - python3.11-progressbar-2.5 Press Enter key to continue... Running update for: - python3.11-progressbar-2.5: UPDATING ... - python3.11-progressbar-2.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.progressbar 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.dicom-numpy, using log file: /var/log/nixpkgs-update/python311Packages.dicom-numpy/2024-03-21.log python311Packages.dicom-numpy 0 -> 1 attrpath: python311Packages.dicom-numpy 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/w4czhpd6sv7q96znhvfkrr8jg6smr86z-packages.json.drv building '/nix/store/w4czhpd6sv7q96znhvfkrr8jg6smr86z-packages.json.drv'... Going to be running update for following packages: - python3.11-dicom-numpy-0.6.5 Press Enter key to continue... Running update for: - python3.11-dicom-numpy-0.6.5: UPDATING ... - python3.11-dicom-numpy-0.6.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.dicom-numpy 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 livekit-cli, using log file: /var/log/nixpkgs-update/livekit-cli/2024-03-21.log livekit-cli 1.4.0 -> 1.4.1 https://github.com/livekit/livekit-cli/releases attrpath: livekit-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] Found old vendorHash = "sha256-PCZNFt08Ad+pjKrl7KZy7jUhu/fWO3raoQM0abCpaGs=" [golangModuleVersion] Replaced vendorHash with sha256-yO2Qr6H5sZGLMHiue5IVHkF1IDsZZh48s6KNpXR+nzA= [golangModuleVersion] Finished updating vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] skipping because derivation has no updateScript Diff after rewrites: diff --git a/pkgs/by-name/li/livekit-cli/package.nix b/pkgs/by-name/li/livekit-cli/package.nix index a4ecebcde30c..75682ea71b4b 100644 --- a/pkgs/by-name/li/livekit-cli/package.nix +++ b/pkgs/by-name/li/livekit-cli/package.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "livekit-cli"; - version = "1.4.0"; + version = "1.4.1"; src = fetchFromGitHub { owner = "livekit"; repo = "livekit-cli"; rev = "v${version}"; - hash = "sha256-u6tqrh2Au4XL590EqD3WInQbN6H6GzRoaA3Uke94Y60="; + hash = "sha256-/H7Xn/nUumKf62qV6kt2PBbvIt67IwA1dt+hj8mbE30="; }; - vendorHash = "sha256-PCZNFt08Ad+pjKrl7KZy7jUhu/fWO3raoQM0abCpaGs="; + vendorHash = "sha256-yO2Qr6H5sZGLMHiue5IVHkF1IDsZZh48s6KNpXR+nzA="; subPackages = [ "cmd/livekit-cli" ]; [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/2b6fm10rkwp1990z5l5y1n18rx2z47c1-livekit-cli-1.4.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:
  • livekit-cli
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/livekit/livekit-cli/releases. meta.description for livekit-cli is: Command line interface to LiveKit meta.homepage for livekit-cli is: https://livekit.io/ ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/livekit/livekit-cli/releases/tag/v1.4.1) - [Compare changes on GitHub](https://github.com/livekit/livekit-cli/compare/v1.4.0...v1.4.1) ###### Impact Checks done --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 1.4.1 with grep in /nix/store/2b6fm10rkwp1990z5l5y1n18rx2z47c1-livekit-cli-1.4.1 - found 1.4.1 in filename of file in /nix/store/2b6fm10rkwp1990z5l5y1n18rx2z47c1-livekit-cli-1.4.1 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath livekit-cli ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/2b6fm10rkwp1990z5l5y1n18rx2z47c1-livekit-cli-1.4.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 livekit-cli https://github.com/r-ryantm/nixpkgs/archive/c1014b1df546426a713bc9d9328bb6c23dfc39e3.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/c1014b1df546426a713bc9d9328bb6c23dfc39e3#livekit-cli ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/2b6fm10rkwp1990z5l5y1n18rx2z47c1-livekit-cli-1.4.1 ls -la /nix/store/2b6fm10rkwp1990z5l5y1n18rx2z47c1-livekit-cli-1.4.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:
  • livekit-cli
--- ###### Maintainer pings cc @mgdelacroix 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/297797 [result] Success updating livekit-cli 1.4.0 -> 1.4.1 https://github.com/livekit/livekit-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 _7kaa, using log file: /var/log/nixpkgs-update/_7kaa/2024-03-21.log _7kaa 2.15.5 -> 2.15.6 https://repology.org/project/7kaa/versions attrpath: _7kaa Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - _7kaa: 2.15.5 -> 2.15.6 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/257034" [result] Failed to update _7kaa 2.15.5 -> 2.15.6 https://repology.org/project/7kaa/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.msprime, using log file: /var/log/nixpkgs-update/python311Packages.msprime/2024-03-21.log python311Packages.msprime 0 -> 1 attrpath: python311Packages.msprime 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/f5agf4fbc2yp17vyvzy40j7rk454c0fi-packages.json.drv building '/nix/store/f5agf4fbc2yp17vyvzy40j7rk454c0fi-packages.json.drv'... Going to be running update for following packages: - python3.11-msprime-1.3.1 Press Enter key to continue... Running update for: - python3.11-msprime-1.3.1: UPDATING ... - python3.11-msprime-1.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.msprime 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 imapsync, using log file: /var/log/nixpkgs-update/imapsync/2024-03-21.log imapsync 2.229 -> 2.264 https://repology.org/project/imapsync/versions attrpath: imapsync 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/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv building '/nix/store/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv'... trying https://github.com/imapsync/imapsync/archive/imapsync-2.264.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/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/imapsync/imapsync/archive/imapsync-2.264.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/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'imapsync.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv /nix/store/yc3nw6z7ywkvj27gj1ys7ab0k91zkcwm-imapsync-2.264.drv these 40 paths will be fetched (0.77 MiB download, 4.49 MiB unpacked): /nix/store/k9xmqh665m47rmg7q2gxpsxa0f613j9i-perl5.38.2-App-cpanminus-1.7047 /nix/store/w0lf427r014lliv1zkma94q515mwjrh2-perl5.38.2-CPAN-Meta-Check-0.018 /nix/store/7hgdp2vyywxna46swsclknmg9jdzjvll-perl5.38.2-Class-Load-0.25 /nix/store/i3ki3igwhc4q43237djwb4z76y2c8ymz-perl5.38.2-Crypt-OpenSSL-RSA-0.33 /nix/store/bk97iwwrl2m8awy2mjl31j82ccdrg4vf-perl5.38.2-Crypt-OpenSSL-Random-0.15 /nix/store/xh9savixc5xmif9lwg6xvsrnh5vi2907-perl5.38.2-Data-OptList-0.114 /nix/store/3jy00fnlw6fqdd52vf6il3ss2vxbssi6-perl5.38.2-Data-Uniqid-0.12 /nix/store/d0paqlj3c04ywn0kq4q4w9y1gnvfplxd-perl5.38.2-Dist-CheckConflicts-0.11 /nix/store/xhw81p2ihm67nswv3423m2sravs68hai-perl5.38.2-Encode-IMAPUTF7-1.05 /nix/store/5873fhlxacn1pi4br372dhyx6bmh950a-perl5.38.2-File-Copy-Recursive-0.45 /nix/store/r619bmz2jkldxiygbawp3rzpj81xf9y6-perl5.38.2-File-Tail-1.3 /nix/store/innj2gswvw47rf7ii37253076dfnii0g-perl5.38.2-IO-Socket-INET6-2.73 /nix/store/0wx1wk8adxc352v7b9852f2dnkmns87q-perl5.38.2-IO-Tee-0.66 /nix/store/yv68q4vldlyjbpghgwazjrag7qkkwmlv-perl5.38.2-IPC-Run3-0.048 /nix/store/7b1s3cdj5pycywfphbpbcykm54nq4xn3-perl5.38.2-JSON-4.10 /nix/store/rjnqpwymh05bdcmpg9hn0ysnfxr01rw2-perl5.38.2-JSON-WebToken-0.10 /nix/store/vqhz92r14vfrfvim882hcnszby446p2p-perl5.38.2-Mail-IMAPClient-3.43 /nix/store/xlh79rqfm4nr9wz15hr9wc0sx5m4h31v-perl5.38.2-Module-Implementation-0.09 /nix/store/ns1qh601xsfhjxzq1g08csnpc3bj96bq-perl5.38.2-Module-Runtime-0.016 /nix/store/r8hlxyvz8frqn44hjjncr8qn9az2s3pk-perl5.38.2-Module-ScanDeps-1.34 /nix/store/5kyr74nk6aw58bg4irw5gy8l89a62mkw-perl5.38.2-NTLM-1.09 /nix/store/mvc0aadqqmlrpbcqs8mhwq5s3m6a83mh-perl5.38.2-Package-Stash-0.40 /nix/store/7l05q68pggv0xf99ynr6hgsm0ks6vgx9-perl5.38.2-Package-Stash-XS-0.30 /nix/store/da8lha71dsmaqi39a8g7fwb6hx8rvhl7-perl5.38.2-Params-Util-1.102 /nix/store/ckpjf5a9hn9wiwk9mp45g62n3a5mnqmr-perl5.38.2-Parse-RecDescent-1.967015 /nix/store/l4mv9kmfzbc5lwzfijzrnj2zkjymgar6-perl5.38.2-Proc-ProcessTable-0.636 /nix/store/n4n4wc61z101a11m7yfjy04rq603sdbj-perl5.38.2-Readonly-2.05 /nix/store/7n7ks1qi13vcri95qbdwgsc83k1n2apz-perl5.38.2-Regexp-Common-2017060201 /nix/store/4g9ld5ci23m4sg9gw0lfr0vywkmrb56n-perl5.38.2-Socket6-0.29 /nix/store/mz7wq9sgdjp15hlisj7y6p4mzfggv35z-perl5.38.2-Sub-Install-0.929 /nix/store/93hhyki34dx391vk4avgxzkzcv59lz77-perl5.38.2-Sys-MemInfo-0.99 /nix/store/i3jsdd37vz69dhg2f60nppjk2f5xfdmk-perl5.38.2-Test-Deep-1.204 /nix/store/fmfq9wnzcimc233ccnc0d3r49vzns34k-perl5.38.2-Test-Mock-Guard-0.10 /nix/store/jspggvffr2d4p0j8h62wq8nlpqx0qdk3-perl5.38.2-Test-MockObject-1.20200122 /nix/store/h30rwaw69kxr4qm4l69wfankwcra46bp-perl5.38.2-Test-Pod-1.52 /nix/store/qg2zp7rrsscvbzwhsimbz3r0wsa83s9q-perl5.38.2-Test-Requires-0.11 /nix/store/1zxp06bgxjanxyc95vbq56ba7fh4q3rg-perl5.38.2-Text-ParseWords-3.31 /nix/store/q2qraj9c3ji85gdqhfbivzfj1037h4y5-perl5.38.2-UNIVERSAL-can-1.20140328 /nix/store/4pbfn9crlwgsgkd12la7xi29a0ilaach-perl5.38.2-UNIVERSAL-isa-1.20171012 /nix/store/v24p87sy6a3pggd3f6jplyfkc1baaym9-perl5.38.2-Unicode-String-2.10 copying path '/nix/store/3jy00fnlw6fqdd52vf6il3ss2vxbssi6-perl5.38.2-Data-Uniqid-0.12' from 'https://cache.nixos.org'... copying path '/nix/store/xhw81p2ihm67nswv3423m2sravs68hai-perl5.38.2-Encode-IMAPUTF7-1.05' from 'https://cache.nixos.org'... copying path '/nix/store/5873fhlxacn1pi4br372dhyx6bmh950a-perl5.38.2-File-Copy-Recursive-0.45' from 'https://cache.nixos.org'... copying path '/nix/store/r619bmz2jkldxiygbawp3rzpj81xf9y6-perl5.38.2-File-Tail-1.3' from 'https://cache.nixos.org'... copying path '/nix/store/0wx1wk8adxc352v7b9852f2dnkmns87q-perl5.38.2-IO-Tee-0.66' from 'https://cache.nixos.org'... copying path '/nix/store/n4n4wc61z101a11m7yfjy04rq603sdbj-perl5.38.2-Readonly-2.05' from 'https://cache.nixos.org'... copying path '/nix/store/7n7ks1qi13vcri95qbdwgsc83k1n2apz-perl5.38.2-Regexp-Common-2017060201' from 'https://cache.nixos.org'... copying path '/nix/store/i3jsdd37vz69dhg2f60nppjk2f5xfdmk-perl5.38.2-Test-Deep-1.204' from 'https://cache.nixos.org'... copying path '/nix/store/h30rwaw69kxr4qm4l69wfankwcra46bp-perl5.38.2-Test-Pod-1.52' from 'https://cache.nixos.org'... copying path '/nix/store/qg2zp7rrsscvbzwhsimbz3r0wsa83s9q-perl5.38.2-Test-Requires-0.11' from 'https://cache.nixos.org'... copying path '/nix/store/w0lf427r014lliv1zkma94q515mwjrh2-perl5.38.2-CPAN-Meta-Check-0.018' from 'https://cache.nixos.org'... copying path '/nix/store/yv68q4vldlyjbpghgwazjrag7qkkwmlv-perl5.38.2-IPC-Run3-0.048' from 'https://cache.nixos.org'... copying path '/nix/store/7b1s3cdj5pycywfphbpbcykm54nq4xn3-perl5.38.2-JSON-4.10' from 'https://cache.nixos.org'... copying path '/nix/store/ns1qh601xsfhjxzq1g08csnpc3bj96bq-perl5.38.2-Module-Runtime-0.016' from 'https://cache.nixos.org'... copying path '/nix/store/ckpjf5a9hn9wiwk9mp45g62n3a5mnqmr-perl5.38.2-Parse-RecDescent-1.967015' from 'https://cache.nixos.org'... copying path '/nix/store/1zxp06bgxjanxyc95vbq56ba7fh4q3rg-perl5.38.2-Text-ParseWords-3.31' from 'https://cache.nixos.org'... building '/nix/store/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv'... copying path '/nix/store/k9xmqh665m47rmg7q2gxpsxa0f613j9i-perl5.38.2-App-cpanminus-1.7047' from 'https://cache.nixos.org'... copying path '/nix/store/bk97iwwrl2m8awy2mjl31j82ccdrg4vf-perl5.38.2-Crypt-OpenSSL-Random-0.15' from 'https://cache.nixos.org'... copying path '/nix/store/5kyr74nk6aw58bg4irw5gy8l89a62mkw-perl5.38.2-NTLM-1.09' from 'https://cache.nixos.org'... copying path '/nix/store/7l05q68pggv0xf99ynr6hgsm0ks6vgx9-perl5.38.2-Package-Stash-XS-0.30' from 'https://cache.nixos.org'... copying path '/nix/store/da8lha71dsmaqi39a8g7fwb6hx8rvhl7-perl5.38.2-Params-Util-1.102' from 'https://cache.nixos.org'... copying path '/nix/store/l4mv9kmfzbc5lwzfijzrnj2zkjymgar6-perl5.38.2-Proc-ProcessTable-0.636' from 'https://cache.nixos.org'... copying path '/nix/store/4g9ld5ci23m4sg9gw0lfr0vywkmrb56n-perl5.38.2-Socket6-0.29' from 'https://cache.nixos.org'... copying path '/nix/store/d0paqlj3c04ywn0kq4q4w9y1gnvfplxd-perl5.38.2-Dist-CheckConflicts-0.11' from 'https://cache.nixos.org'... copying path '/nix/store/rjnqpwymh05bdcmpg9hn0ysnfxr01rw2-perl5.38.2-JSON-WebToken-0.10' from 'https://cache.nixos.org'... copying path '/nix/store/xlh79rqfm4nr9wz15hr9wc0sx5m4h31v-perl5.38.2-Module-Implementation-0.09' from 'https://cache.nixos.org'... copying path '/nix/store/mz7wq9sgdjp15hlisj7y6p4mzfggv35z-perl5.38.2-Sub-Install-0.929' from 'https://cache.nixos.org'... copying path '/nix/store/93hhyki34dx391vk4avgxzkzcv59lz77-perl5.38.2-Sys-MemInfo-0.99' from 'https://cache.nixos.org'... copying path '/nix/store/mvc0aadqqmlrpbcqs8mhwq5s3m6a83mh-perl5.38.2-Package-Stash-0.40' from 'https://cache.nixos.org'... copying path '/nix/store/q2qraj9c3ji85gdqhfbivzfj1037h4y5-perl5.38.2-UNIVERSAL-can-1.20140328' from 'https://cache.nixos.org'... copying path '/nix/store/4pbfn9crlwgsgkd12la7xi29a0ilaach-perl5.38.2-UNIVERSAL-isa-1.20171012' from 'https://cache.nixos.org'... copying path '/nix/store/v24p87sy6a3pggd3f6jplyfkc1baaym9-perl5.38.2-Unicode-String-2.10' from 'https://cache.nixos.org'... copying path '/nix/store/vqhz92r14vfrfvim882hcnszby446p2p-perl5.38.2-Mail-IMAPClient-3.43' from 'https://cache.nixos.org'... copying path '/nix/store/r8hlxyvz8frqn44hjjncr8qn9az2s3pk-perl5.38.2-Module-ScanDeps-1.34' from 'https://cache.nixos.org'... copying path '/nix/store/i3ki3igwhc4q43237djwb4z76y2c8ymz-perl5.38.2-Crypt-OpenSSL-RSA-0.33' from 'https://cache.nixos.org'... copying path '/nix/store/innj2gswvw47rf7ii37253076dfnii0g-perl5.38.2-IO-Socket-INET6-2.73' from 'https://cache.nixos.org'... copying path '/nix/store/xh9savixc5xmif9lwg6xvsrnh5vi2907-perl5.38.2-Data-OptList-0.114' from 'https://cache.nixos.org'... copying path '/nix/store/jspggvffr2d4p0j8h62wq8nlpqx0qdk3-perl5.38.2-Test-MockObject-1.20200122' from 'https://cache.nixos.org'... copying path '/nix/store/7hgdp2vyywxna46swsclknmg9jdzjvll-perl5.38.2-Class-Load-0.25' from 'https://cache.nixos.org'... copying path '/nix/store/fmfq9wnzcimc233ccnc0d3r49vzns34k-perl5.38.2-Test-Mock-Guard-0.10' from 'https://cache.nixos.org'... trying https://github.com/imapsync/imapsync/archive/imapsync-2.264.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/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/imapsync/imapsync/archive/imapsync-2.264.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/2a1nqps8qd075yzf0b7n2m30z6fg696g-source.drv'. error: 1 dependencies of derivation '/nix/store/yc3nw6z7ywkvj27gj1ys7ab0k91zkcwm-imapsync-2.264.drv' failed to build [result] Failed to update imapsync 2.229 -> 2.264 https://repology.org/project/imapsync/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.llvm.pstl, using log file: /var/log/nixpkgs-update/rocmPackages.llvm.pstl/2024-03-21.log rocmPackages.llvm.pstl 0 -> 1 attrpath: rocmPackages.llvm.pstl 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 these 2 derivations will be built: /nix/store/lml1n434cyxd16ixmva166y54zm36vkg-update.sh.drv /nix/store/wcvl1d8wrpljg3lq9s75p82r9inyqmbz-packages.json.drv building '/nix/store/lml1n434cyxd16ixmva166y54zm36vkg-update.sh.drv'... building '/nix/store/wcvl1d8wrpljg3lq9s75p82r9inyqmbz-packages.json.drv'... Going to be running update for following packages: - rocm-llvm-pstl-5.7.1 Press Enter key to continue... Running update for: - rocm-llvm-pstl-5.7.1: UPDATING ... - rocm-llvm-pstl-5.7.1: ERROR --- SHOWING ERROR LOG FOR rocm-llvm-pstl-5.7.1 ---------------------- 'rocmPackages_5.llvm.pstl' is already at it's maximum allowed version. Any further upgrades should go into 'rocmPackages_X.llvm.pstl'. --- SHOWING ERROR LOG FOR rocm-llvm-pstl-5.7.1 ---------------------- The update script for rocm-llvm-pstl-5.7.1 failed with exit code 1 [result] Failed to update rocmPackages.llvm.pstl 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.pyctr, using log file: /var/log/nixpkgs-update/python311Packages.pyctr/2024-03-21.log python311Packages.pyctr 0 -> 1 attrpath: python311Packages.pyctr 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/rmh88r3i7ak4777cppzzp4gr62jx8jsq-packages.json.drv building '/nix/store/rmh88r3i7ak4777cppzzp4gr62jx8jsq-packages.json.drv'... Going to be running update for following packages: - python3.11-pyctr-0.7.5 Press Enter key to continue... Running update for: - python3.11-pyctr-0.7.5: UPDATING ... - python3.11-pyctr-0.7.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyctr 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.bnstruct, using log file: /var/log/nixpkgs-update/rPackages.bnstruct/2024-03-21.log rPackages.bnstruct 1.0.14 -> 1.0.15 https://repology.org/project/r:bnstruct/versions attrpath: rPackages.bnstruct Checking auto update branch... No auto update branch exists Old version 1.0.14" 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.bnstruct 1.0.14 -> 1.0.15 https://repology.org/project/r:bnstruct/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath quantum-espresso, using log file: /var/log/nixpkgs-update/quantum-espresso/2024-03-21.log quantum-espresso 7.2 -> 7.3.1 https://repology.org/project/quantum-espresso/versions attrpath: quantum-espresso 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 quantum-espresso 7.2 -> 7.3.1 https://repology.org/project/quantum-espresso/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.hug, using log file: /var/log/nixpkgs-update/python311Packages.hug/2024-03-21.log python311Packages.hug 0 -> 1 attrpath: python311Packages.hug 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/18ig2hhqzzzjbx28ln6czqpvagkv4s6z-packages.json.drv building '/nix/store/18ig2hhqzzzjbx28ln6czqpvagkv4s6z-packages.json.drv'... Going to be running update for following packages: - python3.11-hug-2.6.0 Press Enter key to continue... Running update for: - python3.11-hug-2.6.0: UPDATING ... - python3.11-hug-2.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.hug 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.srvlookup, using log file: /var/log/nixpkgs-update/python311Packages.srvlookup/2024-03-21.log python311Packages.srvlookup 0 -> 1 attrpath: python311Packages.srvlookup 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/lcadm3i84h35lqv38iv07gfs6frfyqff-packages.json.drv building '/nix/store/lcadm3i84h35lqv38iv07gfs6frfyqff-packages.json.drv'... Going to be running update for following packages: - python3.11-srvlookup-3.0.0 Press Enter key to continue... Running update for: - python3.11-srvlookup-3.0.0: UPDATING ... - python3.11-srvlookup-3.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.srvlookup 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.pyrender, using log file: /var/log/nixpkgs-update/python311Packages.pyrender/2024-03-21.log python311Packages.pyrender 0 -> 1 attrpath: python311Packages.pyrender 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/zp5zsbvws04lj0ld3gdw741rc74cn283-packages.json.drv building '/nix/store/zp5zsbvws04lj0ld3gdw741rc74cn283-packages.json.drv'... Going to be running update for following packages: - python3.11-pyrender-0.1.45 Press Enter key to continue... Running update for: - python3.11-pyrender-0.1.45: UPDATING ... - python3.11-pyrender-0.1.45: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyrender 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 greg, using log file: /var/log/nixpkgs-update/greg/2024-03-21.log greg 0 -> 1 attrpath: greg 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/2gnvvisqs6a2xpkadz9qpfpgzgvs6wpm-packages.json.drv building '/nix/store/2gnvvisqs6a2xpkadz9qpfpgzgvs6wpm-packages.json.drv'... Going to be running update for following packages: - greg-0.4.8 Press Enter key to continue... Running update for: - greg-0.4.8: UPDATING ... - greg-0.4.8: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update greg 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 itktcl, using log file: /var/log/nixpkgs-update/itktcl/2024-03-21.log itktcl 4.1.0 -> 4.2.3 https://repology.org/project/tcl-itk/versions attrpath: itktcl 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/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv building '/nix/store/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv'... trying https://downloads.sourceforge.net/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 924 0 --:--:-- --:--:-- --:--:-- 926 0 154 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 curl: (22) The requested URL returned error: 404 trying https://versaweb.dl.sourceforge.net/sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 154 100 154 0 0 244 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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 336 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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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 itk4.2.3.tar.gz from any mirror error: builder for '/nix/store/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 100 154 100 154 0 0 244 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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 336 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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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 itk4.2.3.tar.gz from any mirror For full logs, run 'nix log /nix/store/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'itktcl.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv /nix/store/y9d78z1d7ly74r8in42gkcpxcgwqfqvq-itk-tcl-4.2.3.drv these 4 paths will be fetched (0.22 MiB download, 1.03 MiB unpacked): /nix/store/k5lbs675bjmwax5y881wjkhlhhdvy112-incrtcl-4.2.3 /nix/store/1kac5fd7vk9rgbdh3x8zlknglibxl3fv-incrtcl-4.2.3-dev /nix/store/iwkdyc8jz4pn67hxz67dmfw62ri75ny8-tcl-package-hook /nix/store/y26zrab6hbiig0rzhrx64nkmjrrygrns-tk-8.6.13-dev copying path '/nix/store/k5lbs675bjmwax5y881wjkhlhhdvy112-incrtcl-4.2.3' from 'https://cache.nixos.org'... copying path '/nix/store/iwkdyc8jz4pn67hxz67dmfw62ri75ny8-tcl-package-hook' from 'https://cache.nixos.org'... copying path '/nix/store/y26zrab6hbiig0rzhrx64nkmjrrygrns-tk-8.6.13-dev' from 'https://cache.nixos.org'... building '/nix/store/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv'... copying path '/nix/store/1kac5fd7vk9rgbdh3x8zlknglibxl3fv-incrtcl-4.2.3-dev' from 'https://cache.nixos.org'... trying https://downloads.sourceforge.net/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 138 100 138 0 0 1101 0 --:--:-- --:--:-- --:--:-- 1104 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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 336 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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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 itk4.2.3.tar.gz from any mirror error: builder for '/nix/store/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv' failed with exit code 1; last 25 log lines: > trying https://versaweb.dl.sourceforge.net/sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.tar.gz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 336 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/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itk4.2.3.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 itk4.2.3.tar.gz from any mirror For full logs, run 'nix log /nix/store/wscvqvvrwmfb9icnl4n4951qbmg69xcl-itk4.2.3.tar.gz.drv'. error: 1 dependencies of derivation '/nix/store/y9d78z1d7ly74r8in42gkcpxcgwqfqvq-itk-tcl-4.2.3.drv' failed to build [result] Failed to update itktcl 4.1.0 -> 4.2.3 https://repology.org/project/tcl-itk/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-relay, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-relay/2024-03-21.log python311Packages.azure-mgmt-relay 0 -> 1 attrpath: python311Packages.azure-mgmt-relay 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/zbv05gdwd55a50fbx93y5a462xdljfsi-packages.json.drv building '/nix/store/zbv05gdwd55a50fbx93y5a462xdljfsi-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-mgmt-relay-1.1.0 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-relay-1.1.0: UPDATING ... - python3.11-azure-mgmt-relay-1.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-relay 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.meteoalertapi, using log file: /var/log/nixpkgs-update/python311Packages.meteoalertapi/2024-03-21.log python311Packages.meteoalertapi 0 -> 1 attrpath: python311Packages.meteoalertapi 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/bj717wa3m9jqc1m0h713nn6lv3k112s6-packages.json.drv building '/nix/store/bj717wa3m9jqc1m0h713nn6lv3k112s6-packages.json.drv'... Going to be running update for following packages: - python3.11-meteoalertapi-0.3.1 Press Enter key to continue... Running update for: - python3.11-meteoalertapi-0.3.1: UPDATING ... - python3.11-meteoalertapi-0.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.meteoalertapi 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-ipware, using log file: /var/log/nixpkgs-update/python311Packages.python-ipware/2024-03-21.log python311Packages.python-ipware 0 -> 1 attrpath: python311Packages.python-ipware 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/fzjqk5h43b4whgyb5vzj065p1jddsvmi-packages.json.drv building '/nix/store/fzjqk5h43b4whgyb5vzj065p1jddsvmi-packages.json.drv'... Going to be running update for following packages: - python3.11-python-ipware-2.0.0 Press Enter key to continue... Running update for: - python3.11-python-ipware-2.0.0: UPDATING ... - python3.11-python-ipware-2.0.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-ipware 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 anonymousPro, using log file: /var/log/nixpkgs-update/anonymousPro/2024-03-21.log anonymousPro 1.002 -> 1.003 https://repology.org/project/fonts:anonymouspro/versions attrpath: anonymousPro 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/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv building '/nix/store/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv'... trying https://www.marksimonson.com/assets/content/fonts/AnonymousPro-1_003.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: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv' failed with exit code 1; last 7 log lines: > > trying https://www.marksimonson.com/assets/content/fonts/AnonymousPro-1_003.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: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'anonymousPro.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv /nix/store/4q9ml8a0kd6xlq7kk5j1ch67x4y99m2i-anonymouspro-1.003.drv building '/nix/store/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv'... trying https://www.marksimonson.com/assets/content/fonts/AnonymousPro-1_003.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: (22) The requested URL returned error: 404 error: cannot download source from any mirror error: builder for '/nix/store/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv' failed with exit code 1; last 7 log lines: > > trying https://www.marksimonson.com/assets/content/fonts/AnonymousPro-1_003.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: (22) The requested URL returned error: 404 > error: cannot download source from any mirror For full logs, run 'nix log /nix/store/sbdphyd4jv6p4hghx27090a3wnld3zm8-source.drv'. error: 1 dependencies of derivation '/nix/store/4q9ml8a0kd6xlq7kk5j1ch67x4y99m2i-anonymouspro-1.003.drv' failed to build [result] Failed to update anonymousPro 1.002 -> 1.003 https://repology.org/project/fonts:anonymouspro/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath ledger-web, using log file: /var/log/nixpkgs-update/ledger-web/2024-03-21.log ledger-web 0 -> 1 attrpath: ledger-web 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 ledger-web 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 touchosc, using log file: /var/log/nixpkgs-update/touchosc/2024-03-21.log touchosc 0 -> 1 attrpath: touchosc 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/d0k8ljz6zi7a1mnz2w36lqkd1cc9bhgy-packages.json.drv building '/nix/store/d0k8ljz6zi7a1mnz2w36lqkd1cc9bhgy-packages.json.drv'... Going to be running update for following packages: - touchosc-1.2.9.200 Press Enter key to continue... Running update for: - touchosc-1.2.9.200: UPDATING ... - touchosc-1.2.9.200: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update touchosc 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 vscodium, using log file: /var/log/nixpkgs-update/vscodium/2024-03-21.log vscodium 0 -> 1 attrpath: vscodium 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/f28zasayqw6hs14sbf150q34m6ck8l4g-packages.json.drv building '/nix/store/f28zasayqw6hs14sbf150q34m6ck8l4g-packages.json.drv'... Going to be running update for following packages: - vscodium-1.87.2.24072 Press Enter key to continue... Running update for: - vscodium-1.87.2.24072: UPDATING ... - vscodium-1.87.2.24072: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update vscodium 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 cloudflare-warp, using log file: /var/log/nixpkgs-update/cloudflare-warp/2024-03-21.log cloudflare-warp 2023.3.470 -> 2024.2.68.0 https://repology.org/project/cloudflare-warp/versions attrpath: cloudflare-warp 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/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv building '/nix/store/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv'... trying https://pkg.cloudflareclient.com/pool/jammy/main/c/cloudflare-warp/cloudflare-warp_2024.2.68.0-1_amd64.deb % 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 cloudflare-warp_2024.2.68.0-1_amd64.deb from any mirror error: builder for '/nix/store/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv' failed with exit code 1; last 7 log lines: > > trying https://pkg.cloudflareclient.com/pool/jammy/main/c/cloudflare-warp/cloudflare-warp_2024.2.68.0-1_amd64.deb > % 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 cloudflare-warp_2024.2.68.0-1_amd64.deb from any mirror For full logs, run 'nix log /nix/store/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'cloudflare-warp.originalSrc' not found stderr did not split as expected full stderr was: these 3 derivations will be built: /nix/store/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv /nix/store/ini8p5kl9bc47l1x0n936hnvwhm76w2m-com.cloudflare.WarpCli.desktop.drv /nix/store/6b6rfgphyw2imx10x0yxb5s30fhrw4qy-cloudflare-warp-2024.2.68.0.drv this path will be fetched (1.39 MiB download, 8.18 MiB unpacked): /nix/store/145cm2x4hb7cvw1ca4v88d1415lcbilj-dpkg-1.22.5 copying path '/nix/store/145cm2x4hb7cvw1ca4v88d1415lcbilj-dpkg-1.22.5' from 'https://cache.nixos.org'... building '/nix/store/ini8p5kl9bc47l1x0n936hnvwhm76w2m-com.cloudflare.WarpCli.desktop.drv'... building '/nix/store/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv'... /nix/store/l3z6rwhmkmrrqk3cai0bj1snybxij81v-com.cloudflare.WarpCli.desktop/share/applications/com.cloudflare.WarpCli.desktop: hint: value item "Security" in key "Categories" in group "Desktop Entry" can be extended with another category among the following categories: Settings, or System trying https://pkg.cloudflareclient.com/pool/jammy/main/c/cloudflare-warp/cloudflare-warp_2024.2.68.0-1_amd64.deb % 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 cloudflare-warp_2024.2.68.0-1_amd64.deb from any mirror error: builder for '/nix/store/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv' failed with exit code 1; last 7 log lines: > > trying https://pkg.cloudflareclient.com/pool/jammy/main/c/cloudflare-warp/cloudflare-warp_2024.2.68.0-1_amd64.deb > % 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 cloudflare-warp_2024.2.68.0-1_amd64.deb from any mirror For full logs, run 'nix log /nix/store/2xpnbgpbzcfhvb9c4v9v204d0i2wznp6-cloudflare-warp_2024.2.68.0-1_amd64.deb.drv'. error: 1 dependencies of derivation '/nix/store/6b6rfgphyw2imx10x0yxb5s30fhrw4qy-cloudflare-warp-2024.2.68.0.drv' failed to build [result] Failed to update cloudflare-warp 2023.3.470 -> 2024.2.68.0 https://repology.org/project/cloudflare-warp/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath enlightenment.evisum, using log file: /var/log/nixpkgs-update/enlightenment.evisum/2024-03-21.log enlightenment.evisum 0 -> 1 attrpath: enlightenment.evisum 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/qk3y2wr289gjld83wzlasx8cc68wacjd-packages.json.drv building '/nix/store/qk3y2wr289gjld83wzlasx8cc68wacjd-packages.json.drv'... Going to be running update for following packages: - evisum-0.6.0 Press Enter key to continue... Running update for: - evisum-0.6.0: UPDATING ... - evisum-0.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update enlightenment.evisum 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.xboxapi, using log file: /var/log/nixpkgs-update/python311Packages.xboxapi/2024-03-21.log python311Packages.xboxapi 0 -> 1 attrpath: python311Packages.xboxapi 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/4rbpkqlkar3bgyjw8f1v2qlh7vixkfif-packages.json.drv building '/nix/store/4rbpkqlkar3bgyjw8f1v2qlh7vixkfif-packages.json.drv'... Going to be running update for following packages: - python3.11-xboxapi-2.0.1 Press Enter key to continue... Running update for: - python3.11-xboxapi-2.0.1: UPDATING ... - python3.11-xboxapi-2.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.xboxapi 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.jaxlib-bin, using log file: /var/log/nixpkgs-update/python311Packages.jaxlib-bin/2024-03-21.log python311Packages.jaxlib-bin 0 -> 1 attrpath: python311Packages.jaxlib-bin 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/xk4ddil93c9dvwldm01b59a2v895nk7b-packages.json.drv building '/nix/store/xk4ddil93c9dvwldm01b59a2v895nk7b-packages.json.drv'... Going to be running update for following packages: - python3.11-jaxlib-0.4.24 Press Enter key to continue... Running update for: - python3.11-jaxlib-0.4.24: UPDATING ... - python3.11-jaxlib-0.4.24: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.jaxlib-bin 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 pt, using log file: /var/log/nixpkgs-update/pt/2024-03-21.log pt 0 -> 1 attrpath: pt 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 pt 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-sans, using log file: /var/log/nixpkgs-update/source-sans/2024-03-21.log source-sans 3.052 -> 3.052R https://github.com/adobe-fonts/source-sans/releases attrpath: source-sans 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/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv building '/nix/store/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv'... trying https://github.com/adobe-fonts/source-sans/archive/3.052RR.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/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/adobe-fonts/source-sans/archive/3.052RR.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/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'source-sans.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv /nix/store/ncfkvp6g7gbv05d24qy3h2rl6z30axx6-source-sans-3.052R.drv building '/nix/store/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv'... trying https://github.com/adobe-fonts/source-sans/archive/3.052RR.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/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv' failed with exit code 1; last 8 log lines: > > trying https://github.com/adobe-fonts/source-sans/archive/3.052RR.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/50znz5b7awlq1m4v8izin8c21xffzpbn-source.drv'. error: 1 dependencies of derivation '/nix/store/ncfkvp6g7gbv05d24qy3h2rl6z30axx6-source-sans-3.052R.drv' failed to build [result] Failed to update source-sans 3.052 -> 3.052R https://github.com/adobe-fonts/source-sans/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 darling-dmg, using log file: /var/log/nixpkgs-update/darling-dmg/2024-03-21.log darling-dmg 1.0.4+git20200427 -> 1.0.4 https://github.com/darlinghq/darling-dmg/releases attrpath: darling-dmg Checking auto update branch... No auto update branch exists 1.0.4 is not newer than 1.0.4+git20200427 according to Nix; versionComparison: -1 [result] Failed to update darling-dmg 1.0.4+git20200427 -> 1.0.4 https://github.com/darlinghq/darling-dmg/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 btlejack, using log file: /var/log/nixpkgs-update/btlejack/2024-03-21.log btlejack 0 -> 1 attrpath: btlejack 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/w12i9cqiq2053wn62z6kkllscv6mmkk8-packages.json.drv building '/nix/store/w12i9cqiq2053wn62z6kkllscv6mmkk8-packages.json.drv'... Going to be running update for following packages: - btlejack-2.1.1 Press Enter key to continue... Running update for: - btlejack-2.1.1: UPDATING ... - btlejack-2.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update btlejack 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.sip, using log file: /var/log/nixpkgs-update/python311Packages.sip/2024-03-21.log python311Packages.sip 0 -> 1 attrpath: python311Packages.sip 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/k2cbq90rk6q2wx62wz78g0v7nkjcqjkj-packages.json.drv building '/nix/store/k2cbq90rk6q2wx62wz78g0v7nkjcqjkj-packages.json.drv'... Going to be running update for following packages: - python3.11-sip-6.8.3 Press Enter key to continue... Running update for: - python3.11-sip-6.8.3: UPDATING ... - python3.11-sip-6.8.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.sip 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 headache, using log file: /var/log/nixpkgs-update/headache/2024-03-21.log headache 0 -> 1 attrpath: headache 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/ncr65m0pm00x2fham99v148s8kg9s1g7-packages.json.drv building '/nix/store/ncr65m0pm00x2fham99v148s8kg9s1g7-packages.json.drv'... Going to be running update for following packages: - ocaml5.1.1-headache-1.07 Press Enter key to continue... Running update for: - ocaml5.1.1-headache-1.07: UPDATING ... - ocaml5.1.1-headache-1.07: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update headache 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 git-repo-updater, using log file: /var/log/nixpkgs-update/git-repo-updater/2024-03-21.log git-repo-updater 0 -> 1 attrpath: git-repo-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/7xjfj5rg8zpsi8pm874zyi3g2n27d0b0-packages.json.drv building '/nix/store/7xjfj5rg8zpsi8pm874zyi3g2n27d0b0-packages.json.drv'... Going to be running update for following packages: - gitup-0.5.1 Press Enter key to continue... Running update for: - gitup-0.5.1: UPDATING ... - gitup-0.5.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update git-repo-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 pantheon.elementary-notifications, using log file: /var/log/nixpkgs-update/pantheon.elementary-notifications/2024-03-21.log pantheon.elementary-notifications 0 -> 1 attrpath: pantheon.elementary-notifications 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/1knxdyi6sc1ka2pn9lljl32q5rn0k3yv-packages.json.drv building '/nix/store/1knxdyi6sc1ka2pn9lljl32q5rn0k3yv-packages.json.drv'... Going to be running update for following packages: - elementary-notifications-7.0.1 Press Enter key to continue... Running update for: - elementary-notifications-7.0.1: UPDATING ... - elementary-notifications-7.0.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pantheon.elementary-notifications 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.siobrultech-protocols, using log file: /var/log/nixpkgs-update/python311Packages.siobrultech-protocols/2024-03-21.log python311Packages.siobrultech-protocols 0 -> 1 attrpath: python311Packages.siobrultech-protocols 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/qdp86zi4z3iqgp5hrz9ql0zq4affsg18-packages.json.drv building '/nix/store/qdp86zi4z3iqgp5hrz9ql0zq4affsg18-packages.json.drv'... Going to be running update for following packages: - python3.11-siobrultech-protocols-0.14.0 Press Enter key to continue... Running update for: - python3.11-siobrultech-protocols-0.14.0: UPDATING ... - python3.11-siobrultech-protocols-0.14.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.siobrultech-protocols 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.rgbif, using log file: /var/log/nixpkgs-update/rPackages.rgbif/2024-03-21.log rPackages.rgbif 3.7.8 -> 3.7.9 https://repology.org/project/r:rgbif/versions attrpath: rPackages.rgbif Checking auto update branch... No auto update branch exists Old version 3.7.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.rgbif 3.7.8 -> 3.7.9 https://repology.org/project/r:rgbif/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.kaptan, using log file: /var/log/nixpkgs-update/python311Packages.kaptan/2024-03-21.log python311Packages.kaptan 0 -> 1 attrpath: python311Packages.kaptan 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/hbnbsp6807axma14734y6pbcajbqv9x3-packages.json.drv building '/nix/store/hbnbsp6807axma14734y6pbcajbqv9x3-packages.json.drv'... Going to be running update for following packages: - python3.11-kaptan-0.6.0 Press Enter key to continue... Running update for: - python3.11-kaptan-0.6.0: UPDATING ... - python3.11-kaptan-0.6.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.kaptan 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 loxodo, using log file: /var/log/nixpkgs-update/loxodo/2024-03-21.log loxodo 0 -> 1 attrpath: loxodo 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/nrfjqqamkwbris87p2fblzhymi6k4vvs-packages.json.drv building '/nix/store/nrfjqqamkwbris87p2fblzhymi6k4vvs-packages.json.drv'... Going to be running update for following packages: - loxodo-unstable-2021-02-08 Press Enter key to continue... Running update for: - loxodo-unstable-2021-02-08: UPDATING ... - loxodo-unstable-2021-02-08: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update loxodo 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 terraform-providers.kubernetes, using log file: /var/log/nixpkgs-update/terraform-providers.kubernetes/2024-03-21.log terraform-providers.kubernetes 0 -> 1 attrpath: terraform-providers.kubernetes Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.kubernetes 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 sshfs, using log file: /var/log/nixpkgs-update/sshfs/2024-03-21.log sshfs 3.7.3 -> 3.7.4a https://repology.org/project/fusefs:sshfs/versions attrpath: sshfs Checking auto update branch... No auto update branch exists Old version 3.7.3" not present in master derivation file with contents: { version, sha256, platforms, patches ? [ ] }: { lib, stdenv, fetchFromGitHub , meson, pkg-config, ninja, docutils, makeWrapper , fuse3, macfuse-stubs, glib , which, python3Packages , openssh }: let fuse = if stdenv.isDarwin then macfuse-stubs else fuse3; in stdenv.mkDerivation rec { pname = "sshfs-fuse"; inherit version; src = fetchFromGitHub { owner = "libfuse"; repo = "sshfs"; rev = "sshfs-${version}"; inherit sha256; }; inherit patches; nativeBuildInputs = [ meson pkg-config ninja docutils makeWrapper ]; buildInputs = [ fuse glib ]; nativeCheckInputs = [ which python3Packages.pytest ]; env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.hostPlatform.system == "i686-linux") "-D_FILE_OFFSET_BITS=64"; postInstall = '' mkdir -p $out/sbin ln -sf $out/bin/sshfs $out/sbin/mount.sshfs '' + lib.optionalString (!stdenv.isDarwin) '' wrapProgram $out/bin/sshfs --prefix PATH : "${openssh}/bin" ''; # doCheck = true; checkPhase = lib.optionalString (!stdenv.isDarwin) '' # The tests need fusermount: mkdir bin cp ${fuse}/bin/fusermount3 bin/fusermount export PATH=bin:$PATH # Can't access /dev/fuse within the sandbox: "FUSE kernel module does not seem to be loaded" substituteInPlace test/util.py --replace "/dev/fuse" "/dev/null" # TODO: "fusermount executable not setuid, and we are not root" # We should probably use a VM test instead ${python3Packages.python.interpreter} -m pytest test/ ''; meta = with lib; { inherit platforms; description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH"; longDescription = macfuse-stubs.warning; homepage = "https://github.com/libfuse/sshfs"; license = licenses.gpl2Plus; mainProgram = "sshfs"; maintainers = with maintainers; [ primeos ]; }; } [result] Failed to update sshfs 3.7.3 -> 3.7.4a https://repology.org/project/fusefs:sshfs/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.jug, using log file: /var/log/nixpkgs-update/python311Packages.jug/2024-03-21.log python311Packages.jug 0 -> 1 attrpath: python311Packages.jug 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/j5i6yc2lan6wfx8jhcixhnh67hm64i4j-packages.json.drv building '/nix/store/j5i6yc2lan6wfx8jhcixhnh67hm64i4j-packages.json.drv'... Going to be running update for following packages: - python3.11-jug-2.3.1 Press Enter key to continue... Running update for: - python3.11-jug-2.3.1: UPDATING ... - python3.11-jug-2.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.jug 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-nspkg, using log file: /var/log/nixpkgs-update/python311Packages.azure-mgmt-nspkg/2024-03-21.log python311Packages.azure-mgmt-nspkg 0 -> 1 attrpath: python311Packages.azure-mgmt-nspkg 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/2mqd7yl7sj1pdr564sjd0gwl11qncv7q-packages.json.drv building '/nix/store/2mqd7yl7sj1pdr564sjd0gwl11qncv7q-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-mgmt-nspkg-3.0.2 Press Enter key to continue... Running update for: - python3.11-azure-mgmt-nspkg-3.0.2: UPDATING ... - python3.11-azure-mgmt-nspkg-3.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-mgmt-nspkg 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.pantheon-agent-polkit, using log file: /var/log/nixpkgs-update/pantheon.pantheon-agent-polkit/2024-03-21.log pantheon.pantheon-agent-polkit 0 -> 1 attrpath: pantheon.pantheon-agent-polkit 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/wgmyd5cq2byq2aky3227j2qr657pgih8-packages.json.drv building '/nix/store/wgmyd5cq2byq2aky3227j2qr657pgih8-packages.json.drv'... Going to be running update for following packages: - pantheon-agent-polkit-1.0.5 Press Enter key to continue... Running update for: - pantheon-agent-polkit-1.0.5: UPDATING ... - pantheon-agent-polkit-1.0.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pantheon.pantheon-agent-polkit 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 fortran-language-server, using log file: /var/log/nixpkgs-update/fortran-language-server/2024-03-21.log fortran-language-server 0 -> 1 attrpath: fortran-language-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/smcr15366chbr5q2h9wzpmmmcxq44560-packages.json.drv building '/nix/store/smcr15366chbr5q2h9wzpmmmcxq44560-packages.json.drv'... Going to be running update for following packages: - fortran-language-server-1.12.0 Press Enter key to continue... Running update for: - fortran-language-server-1.12.0: UPDATING ... - fortran-language-server-1.12.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update fortran-language-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 rPackages.Rcmdr, using log file: /var/log/nixpkgs-update/rPackages.Rcmdr/2024-03-21.log rPackages.Rcmdr 2.9-1 -> 2.9-2 https://repology.org/project/r:rcmdr/versions attrpath: rPackages.Rcmdr Checking auto update branch... No auto update branch exists Old version 2.9-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.Rcmdr 2.9-1 -> 2.9-2 https://repology.org/project/r:rcmdr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.loadeR, using log file: /var/log/nixpkgs-update/rPackages.loadeR/2024-03-21.log rPackages.loadeR 1.1.6 -> 1.1.8 https://repology.org/project/r:loader/versions attrpath: rPackages.loadeR 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.loadeR 1.1.6 -> 1.1.8 https://repology.org/project/r: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 python312Packages.gql, using log file: /var/log/nixpkgs-update/python312Packages.gql/2024-03-21.log python312Packages.gql 3.4.1 -> 3.5.0 https://repology.org/project/python:gql/versions attrpath: python312Packages.gql 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/viyc0c4vx4xyx6h4cl1v4gq4kfahmp6h-packages.json.drv building '/nix/store/viyc0c4vx4xyx6h4cl1v4gq4kfahmp6h-packages.json.drv'... Going to be running update for following packages: - python3.12-gql-3.5.0 Press Enter key to continue... Running update for: - python3.12-gql-3.5.0: UPDATING ... - python3.12-gql-3.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.gql 3.4.1 -> 3.5.0 https://repology.org/project/python:gql/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.NMF, using log file: /var/log/nixpkgs-update/rPackages.NMF/2024-03-21.log rPackages.NMF 0.26 -> 0.27 https://repology.org/project/r:nmf/versions attrpath: rPackages.NMF Checking auto update branch... No auto update branch exists Old version 0.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.NMF 0.26 -> 0.27 https://repology.org/project/r:nmf/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.MazamaCoreUtils, using log file: /var/log/nixpkgs-update/rPackages.MazamaCoreUtils/2024-03-21.log rPackages.MazamaCoreUtils 0.5.1 -> 0.5.2 https://repology.org/project/r:mazamacoreutils/versions attrpath: rPackages.MazamaCoreUtils 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.MazamaCoreUtils 0.5.1 -> 0.5.2 https://repology.org/project/r:mazamacoreutils/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.RobExtremes, using log file: /var/log/nixpkgs-update/rPackages.RobExtremes/2024-03-21.log rPackages.RobExtremes 1.2.0 -> 1.3.0 https://repology.org/project/r:robextremes/versions attrpath: rPackages.RobExtremes 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.RobExtremes 1.2.0 -> 1.3.0 https://repology.org/project/r:robextremes/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.adaR, using log file: /var/log/nixpkgs-update/rPackages.adaR/2024-03-21.log rPackages.adaR 0.3.1 -> 0.3.2 https://repology.org/project/r:adar/versions attrpath: rPackages.adaR 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.adaR 0.3.1 -> 0.3.2 https://repology.org/project/r:adar/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.IBMPopSim, using log file: /var/log/nixpkgs-update/rPackages.IBMPopSim/2024-03-21.log rPackages.IBMPopSim 0.4.3 -> 1.0.0 https://repology.org/project/r:ibmpopsim/versions attrpath: rPackages.IBMPopSim 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.IBMPopSim 0.4.3 -> 1.0.0 https://repology.org/project/r:ibmpopsim/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.autostsm, using log file: /var/log/nixpkgs-update/rPackages.autostsm/2024-03-21.log rPackages.autostsm 3.1.2 -> 3.1.4 https://repology.org/project/r:autostsm/versions attrpath: rPackages.autostsm Checking auto update branch... No auto update branch exists Old version 3.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.autostsm 3.1.2 -> 3.1.4 https://repology.org/project/r:autostsm/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.epidatr, using log file: /var/log/nixpkgs-update/rPackages.epidatr/2024-03-21.log rPackages.epidatr 1.0.0 -> 1.1.1 https://repology.org/project/r:epidatr/versions attrpath: rPackages.epidatr 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.epidatr 1.0.0 -> 1.1.1 https://repology.org/project/r:epidatr/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath wavpack, using log file: /var/log/nixpkgs-update/wavpack/2024-03-21.log wavpack 5.6.0 -> 5.7.0 https://repology.org/project/wavpack/versions attrpath: wavpack Checking auto update branch... No auto update branch exists Old version 5.6.0" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, gettext, autoreconfHook, libiconv }: stdenv.mkDerivation rec { pname = "wavpack"; version = "5.7.0"; enableParallelBuilding = true; nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ libiconv ]; # autogen.sh:9 preAutoreconf = "cp ${gettext}/share/gettext/config.rpath ."; src = fetchFromGitHub { owner = "dbry"; repo = "WavPack"; rev = version; hash = "sha256-vFZxg1mVqE7Kp38vEGA5V8m2tjqhssFsUZURixhlfk0="; }; outputs = [ "out" "dev" "doc" "man" ]; meta = with lib; { description = "Hybrid audio compression format"; homepage = "https://www.wavpack.com/"; changelog = "https://github.com/dbry/WavPack/releases/tag/${version}"; license = licenses.bsd3; platforms = platforms.unix; maintainers = with maintainers; [ codyopel ]; }; } [result] Failed to update wavpack 5.6.0 -> 5.7.0 https://repology.org/project/wavpack/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.FactoMineR, using log file: /var/log/nixpkgs-update/rPackages.FactoMineR/2024-03-21.log rPackages.FactoMineR 2.9 -> 2.10 https://repology.org/project/r:factominer/versions attrpath: rPackages.FactoMineR Checking auto update branch... No auto update branch exists Old version 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.FactoMineR 2.9 -> 2.10 https://repology.org/project/r:factominer/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath sundials, using log file: /var/log/nixpkgs-update/sundials/2024-03-21.log sundials 6.7.0 -> 7.0.0 https://repology.org/project/sundials/versions attrpath: sundials Checking auto update branch... An auto update branch exists with message `sundials: 6.7.0 -> 7.0.0`. New version is 7.0.0. An auto update branch exists with an equal or greater version [result] Failed to update sundials 6.7.0 -> 7.0.0 https://repology.org/project/sundials/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath faissWithCuda, using log file: /var/log/nixpkgs-update/faissWithCuda/2024-03-21.log faissWithCuda 1.7.4 -> 1.8.0 https://github.com/facebookresearch/faiss/releases attrpath: faissWithCuda 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/science/math/faiss/default.nix b/pkgs/development/libraries/science/math/faiss/default.nix index 25d6542f8da1..826eecb5a783 100644 --- a/pkgs/development/libraries/science/math/faiss/default.nix +++ b/pkgs/development/libraries/science/math/faiss/default.nix @@ -27,7 +27,7 @@ let pname = "faiss"; - version = "1.7.4"; + version = "1.8.0"; inherit (cudaPackages) cudaFlags backendStdenv; inherit (cudaFlags) cudaCapabilities dropDot; @@ -57,7 +57,7 @@ stdenv.mkDerivation { owner = "facebookresearch"; repo = pname; rev = "v${version}"; - hash = "sha256-WSce9X6sLZmGM5F0ZkK54VqpIy8u1VB0e9/l78co29M="; + hash = "sha256-nS8nhkNGGb2oAJKfr/MIAZjAwMxBGbNd16/CkEtv67I="; }; buildInputs = [ [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 faissWithCuda Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . faissWithCuda Standard output: error: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:9:12: (source not available) … while evaluating derivation 'faiss-1.8.0' whose name attribute is located at /var/cache/nixpkgs-update/worker/worktree/faissWithCuda/pkgs/stdenv/generic/make-derivation.nix:331:7 … while evaluating attribute 'buildInputs' of derivation 'faiss-1.8.0' at /var/cache/nixpkgs-update/worker/worktree/faissWithCuda/pkgs/stdenv/generic/make-derivation.nix:378:7: 377| depsHostHost = elemAt (elemAt dependencies 1) 0; 378| buildInputs = elemAt (elemAt dependencies 1) 1; | ^ 379| depsTargetTarget = elemAt (elemAt dependencies 2) 0; (stack trace truncated; use '--show-trace' to show the full trace) error: Package ‘cuda_cudart-12.2.140’ in /var/cache/nixpkgs-update/worker/worktree/faissWithCuda/pkgs/development/cuda-modules/generic-builders/manifest.nix:325 has an unfree license (‘CUDA EULA’), 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) [ "cuda_cudart-12.2.140" ]; } 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 faissWithCuda 1.7.4 -> 1.8.0 https://github.com/facebookresearch/faiss/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 genxword, using log file: /var/log/nixpkgs-update/genxword/2024-03-21.log genxword 0 -> 1 attrpath: genxword 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/5qbyhqbn7vr5kz5r8x3i6wggxq5x9yvc-packages.json.drv building '/nix/store/5qbyhqbn7vr5kz5r8x3i6wggxq5x9yvc-packages.json.drv'... Going to be running update for following packages: - genxword-2.1.0 Press Enter key to continue... Running update for: - genxword-2.1.0: UPDATING ... - genxword-2.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update genxword 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 brlcad, using log file: /var/log/nixpkgs-update/brlcad/2024-03-21.log brlcad 7.34.2 -> 7.38.2 https://repology.org/project/brlcad/versions attrpath: brlcad Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - brlcad: 7.34.2 -> 7.38.2 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/279705" [result] Failed to update brlcad 7.34.2 -> 7.38.2 https://repology.org/project/brlcad/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.windows, using log file: /var/log/nixpkgs-update/octavePackages.windows/2024-03-21.log octavePackages.windows 0 -> 1 attrpath: octavePackages.windows 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/jaddsvrqr2ql2sy4kvhrql55j8ayfi8x-packages.json.drv building '/nix/store/jaddsvrqr2ql2sy4kvhrql55j8ayfi8x-packages.json.drv'... Going to be running update for following packages: - octave-8.4.0-windows-1.6.4 Press Enter key to continue... Running update for: - octave-8.4.0-windows-1.6.4: UPDATING ... - octave-8.4.0-windows-1.6.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update octavePackages.windows 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.btrfs, using log file: /var/log/nixpkgs-update/python311Packages.btrfs/2024-03-21.log python311Packages.btrfs 0 -> 1 attrpath: python311Packages.btrfs 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/9872dxqnnrh37bfj8zzq62bl0p8p16ds-packages.json.drv building '/nix/store/9872dxqnnrh37bfj8zzq62bl0p8p16ds-packages.json.drv'... Going to be running update for following packages: - python3.11-btrfs-13 Press Enter key to continue... Running update for: - python3.11-btrfs-13: UPDATING ... - python3.11-btrfs-13: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.btrfs 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 bitwarden_rs, using log file: /var/log/nixpkgs-update/bitwarden_rs/2024-03-21.log bitwarden_rs 0 -> 1 attrpath: bitwarden_rs 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] these 2 derivations will be built: /nix/store/zhr21r5m0acpw0zdhd04f5adlfbdhh8i-update-vaultwarden.drv /nix/store/myrxw9a2dcs0zpw8rlypx1gvr7i2467m-packages.json.drv these 3 paths will be fetched (1.17 MiB download, 7.75 MiB unpacked): /nix/store/w6ndf34wdbc2zvwspf9xmdl884c90gyr-ShellCheck-0.9.0 /nix/store/ggi5224g7f1j7bcg9rpw18lwb0fasbf1-python3.11-tomlkit-0.12.4 /nix/store/1pn61n8ahmsizqw66480hx2l22vlmblg-python3.11-yq-3.2.3 copying path '/nix/store/w6ndf34wdbc2zvwspf9xmdl884c90gyr-ShellCheck-0.9.0' from 'https://cache.nixos.org'... copying path '/nix/store/ggi5224g7f1j7bcg9rpw18lwb0fasbf1-python3.11-tomlkit-0.12.4' from 'https://cache.nixos.org'... copying path '/nix/store/1pn61n8ahmsizqw66480hx2l22vlmblg-python3.11-yq-3.2.3' from 'https://cache.nixos.org'... building '/nix/store/zhr21r5m0acpw0zdhd04f5adlfbdhh8i-update-vaultwarden.drv'... building '/nix/store/myrxw9a2dcs0zpw8rlypx1gvr7i2467m-packages.json.drv'... Going to be running update for following packages: - vaultwarden-1.30.5 Press Enter key to continue... Running update for: - vaultwarden-1.30.5: UPDATING ... - vaultwarden-1.30.5: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update bitwarden_rs 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-fake-useragent, using log file: /var/log/nixpkgs-update/python311Packages.scrapy-fake-useragent/2024-03-21.log python311Packages.scrapy-fake-useragent 0 -> 1 attrpath: python311Packages.scrapy-fake-useragent 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/zqwfk5zxay1kp8425b3jwizjnbjzsfdg-packages.json.drv building '/nix/store/zqwfk5zxay1kp8425b3jwizjnbjzsfdg-packages.json.drv'... Going to be running update for following packages: - python3.11-scrapy-fake-useragent-1.4.4 Press Enter key to continue... Running update for: - python3.11-scrapy-fake-useragent-1.4.4: UPDATING ... - python3.11-scrapy-fake-useragent-1.4.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.scrapy-fake-useragent 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 terraform-providers.auth0, using log file: /var/log/nixpkgs-update/terraform-providers.auth0/2024-03-21.log terraform-providers.auth0 0 -> 1 attrpath: terraform-providers.auth0 Checking auto update branch... Derivation file opts-out of auto-updates [result] Failed to update terraform-providers.auth0 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 ncftp, using log file: /var/log/nixpkgs-update/ncftp/2024-03-21.log ncftp 3.2.6 -> 3.2.7 https://repology.org/project/ncftp/versions attrpath: ncftp 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/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv building '/nix/store/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv'... trying ftp://ftp.ncftp.com/ncftp/ncftp-3.2.7-src.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133497 ms: Couldn't connect to server Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:02:14 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 134165 ms: Couldn't connect to server Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133165 ms: Couldn't connect to server Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:02:15 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 135259 ms: Couldn't connect to server error: cannot download ncftp-3.2.7-src.tar.xz from any mirror error: builder for '/nix/store/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv' failed with exit code 1; last 16 log lines: > > trying ftp://ftp.ncftp.com/ncftp/ncftp-3.2.7-src.tar.xz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133497 ms: Couldn't connect to server > Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. > 0 0 0 0 0 0 0 0 --:--:-- 0:02:14 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 134165 ms: Couldn't connect to server > Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. > 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133165 ms: Couldn't connect to server > Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. > 0 0 0 0 0 0 0 0 --:--:-- 0:02:15 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 135259 ms: Couldn't connect to server > error: cannot download ncftp-3.2.7-src.tar.xz from any mirror For full logs, run 'nix log /nix/store/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'ncftp.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv /nix/store/dpraa3am3par1n0iajb0jz259yizg70l-ncftp-3.2.7.drv building '/nix/store/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv'... trying ftp://ftp.ncftp.com/ncftp/ncftp-3.2.7-src.tar.xz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133395 ms: Couldn't connect to server Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:02:14 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 134165 ms: Couldn't connect to server Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133164 ms: Couldn't connect to server Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. 0 0 0 0 0 0 0 0 --:--:-- 0:02:15 --:--:-- 0 curl: (28) Failed to connect to ftp.ncftp.com port 21 after 135262 ms: Couldn't connect to server error: cannot download ncftp-3.2.7-src.tar.xz from any mirror error: builder for '/nix/store/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv' failed with exit code 1; last 16 log lines: > > trying ftp://ftp.ncftp.com/ncftp/ncftp-3.2.7-src.tar.xz > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133395 ms: Couldn't connect to server > Warning: Problem : timeout. Will retry in 1 seconds. 3 retries left. > 0 0 0 0 0 0 0 0 --:--:-- 0:02:14 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 134165 ms: Couldn't connect to server > Warning: Problem : timeout. Will retry in 2 seconds. 2 retries left. > 0 0 0 0 0 0 0 0 --:--:-- 0:02:13 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 133164 ms: Couldn't connect to server > Warning: Problem : timeout. Will retry in 4 seconds. 1 retries left. > 0 0 0 0 0 0 0 0 --:--:-- 0:02:15 --:--:-- 0 > curl: (28) Failed to connect to ftp.ncftp.com port 21 after 135262 ms: Couldn't connect to server > error: cannot download ncftp-3.2.7-src.tar.xz from any mirror For full logs, run 'nix log /nix/store/rh06mqqghwx7c19gq5x3511nsali9cq0-ncftp-3.2.7-src.tar.xz.drv'. error: 1 dependencies of derivation '/nix/store/dpraa3am3par1n0iajb0jz259yizg70l-ncftp-3.2.7.drv' failed to build [result] Failed to update ncftp 3.2.6 -> 3.2.7 https://repology.org/project/ncftp/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.flet, using log file: /var/log/nixpkgs-update/python312Packages.flet/2024-03-21.log python312Packages.flet 0.21.1 -> 0.21.2 https://github.com/flet-dev/flet/releases attrpath: python312Packages.flet 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/qb26h0xrj4wn3brqsh4kxn6nc6s53hav-packages.json.drv building '/nix/store/qb26h0xrj4wn3brqsh4kxn6nc6s53hav-packages.json.drv'... Going to be running update for following packages: - python3.12-flet-0.21.1 Press Enter key to continue... Running update for: - python3.12-flet-0.21.1: UPDATING ... - python3.12-flet-0.21.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python312Packages.flet 0.21.1 -> 0.21.2 https://github.com/flet-dev/flet/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 apkg, using log file: /var/log/nixpkgs-update/apkg/2024-03-21.log apkg 0 -> 1 attrpath: apkg 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/4qqpbaf23bgancq1jz00cmb9763kll32-packages.json.drv building '/nix/store/4qqpbaf23bgancq1jz00cmb9763kll32-packages.json.drv'... Going to be running update for following packages: - apkg-0.4.1 Press Enter key to continue... Running update for: - apkg-0.4.1: UPDATING ... - apkg-0.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update apkg 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.psygnal, using log file: /var/log/nixpkgs-update/python312Packages.psygnal/2024-03-21.log python312Packages.psygnal 0.9.5 -> 0.10.2 https://repology.org/project/python:psygnal/versions attrpath: python312Packages.psygnal 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/1ibjmp8pay8y0pkmq4kadkhs2jqlgmjf-packages.json.drv building '/nix/store/1ibjmp8pay8y0pkmq4kadkhs2jqlgmjf-packages.json.drv'... Going to be running update for following packages: - python3.12-psygnal-0.10.0 Press Enter key to continue... Running update for: - python3.12-psygnal-0.10.0: UPDATING ... - python3.12-psygnal-0.10.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/psygnal/default.nix b/pkgs/development/python-modules/psygnal/default.nix index 701834561673..a572275616bb 100644 --- a/pkgs/development/python-modules/psygnal/default.nix +++ b/pkgs/development/python-modules/psygnal/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "psygnal"; - version = "0.10.0"; + version = "0.10.2"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "pyapp-kit"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-RckzvOclV2UUZLYq3buLeLLBN/Q/CmCAqmGmjzYPqbM="; + hash = "sha256-S13okzNGVl6neR1yHPVV5ZXOg2Q6XepQEUFCco7pQi8="; }; buildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/kifyvmzin9kybd1mq7ifk0liibwcdal9-python3.12-psygnal-0.10.2" 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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)
18 packages failed to build:
  • napari (python311Packages.napari)
  • napari.dist (python311Packages.napari.dist)
  • python311Packages.gradio
  • python311Packages.gradio-client
  • python311Packages.gradio-client.dist
  • python311Packages.gradio-pdf
  • python311Packages.gradio-pdf.dist
  • python311Packages.gradio.dist
  • python312Packages.gradio
  • python312Packages.gradio-client
  • python312Packages.gradio-client.dist
  • python312Packages.gradio-pdf
  • python312Packages.gradio-pdf.dist
  • python312Packages.gradio.dist
  • python312Packages.magicgui
  • python312Packages.magicgui.dist
  • python312Packages.napari-npe2
  • python312Packages.napari-npe2.dist
24 packages built:
  • python311Packages.altair
  • python311Packages.altair.dist
  • python311Packages.anywidget
  • python311Packages.anywidget.dist
  • python311Packages.app-model
  • python311Packages.app-model.dist
  • python311Packages.magicgui
  • python311Packages.magicgui.dist
  • python311Packages.napari-npe2
  • python311Packages.napari-npe2.dist
  • python311Packages.psygnal
  • python311Packages.psygnal.dist
  • streamlit (python311Packages.streamlit)
  • streamlit.dist (python311Packages.streamlit.dist)
  • python311Packages.vega
  • python311Packages.vega.dist
  • python312Packages.altair
  • python312Packages.altair.dist
  • python312Packages.anywidget
  • python312Packages.anywidget.dist
  • python312Packages.app-model
  • python312Packages.app-model.dist
  • python312Packages.psygnal
  • python312Packages.psygnal.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.psygnal is: Implementation of Qt Signals meta.homepage for python312Packages.psygnal is: https://github.com/pyapp-kit/psygnal meta.changelog for python312Packages.psygnal is: https://github.com/pyapp-kit/psygnal/blob/v0.10.2/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.10.2 with grep in /nix/store/kifyvmzin9kybd1mq7ifk0liibwcdal9-python3.12-psygnal-0.10.2 - found 0.10.2 in filename of file in /nix/store/kifyvmzin9kybd1mq7ifk0liibwcdal9-python3.12-psygnal-0.10.2 ---
Rebuild report (if merged into master) (click to expand) ``` 23 total rebuild path(s) 23 package rebuild(s) First fifty rebuilds by attrpath napari python311Packages.altair python311Packages.anywidget python311Packages.app-model python311Packages.gradio python311Packages.gradio-client python311Packages.gradio-pdf python311Packages.magicgui python311Packages.napari python311Packages.napari-npe2 python311Packages.psygnal python311Packages.streamlit python311Packages.vega python312Packages.altair python312Packages.anywidget python312Packages.app-model python312Packages.gradio python312Packages.gradio-client python312Packages.gradio-pdf python312Packages.magicgui python312Packages.napari-npe2 python312Packages.psygnal streamlit ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/kifyvmzin9kybd1mq7ifk0liibwcdal9-python3.12-psygnal-0.10.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 python312Packages.psygnal https://github.com/r-ryantm/nixpkgs/archive/f37009230b367c06a5a3947928d9461881383496.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/f37009230b367c06a5a3947928d9461881383496#python312Packages.psygnal ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/kifyvmzin9kybd1mq7ifk0liibwcdal9-python3.12-psygnal-0.10.2 ls -la /nix/store/kifyvmzin9kybd1mq7ifk0liibwcdal9-python3.12-psygnal-0.10.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)
18 packages failed to build:
  • napari (python311Packages.napari)
  • napari.dist (python311Packages.napari.dist)
  • python311Packages.gradio
  • python311Packages.gradio-client
  • python311Packages.gradio-client.dist
  • python311Packages.gradio-pdf
  • python311Packages.gradio-pdf.dist
  • python311Packages.gradio.dist
  • python312Packages.gradio
  • python312Packages.gradio-client
  • python312Packages.gradio-client.dist
  • python312Packages.gradio-pdf
  • python312Packages.gradio-pdf.dist
  • python312Packages.gradio.dist
  • python312Packages.magicgui
  • python312Packages.magicgui.dist
  • python312Packages.napari-npe2
  • python312Packages.napari-npe2.dist
24 packages built:
  • python311Packages.altair
  • python311Packages.altair.dist
  • python311Packages.anywidget
  • python311Packages.anywidget.dist
  • python311Packages.app-model
  • python311Packages.app-model.dist
  • python311Packages.magicgui
  • python311Packages.magicgui.dist
  • python311Packages.napari-npe2
  • python311Packages.napari-npe2.dist
  • python311Packages.psygnal
  • python311Packages.psygnal.dist
  • streamlit (python311Packages.streamlit)
  • streamlit.dist (python311Packages.streamlit.dist)
  • python311Packages.vega
  • python311Packages.vega.dist
  • python312Packages.altair
  • python312Packages.altair.dist
  • python312Packages.anywidget
  • python312Packages.anywidget.dist
  • python312Packages.app-model
  • python312Packages.app-model.dist
  • python312Packages.psygnal
  • python312Packages.psygnal.dist
--- ###### Maintainer pings cc @SomeoneSerge 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/297841 [result] Success updating python312Packages.psygnal 0.9.5 -> 0.10.2 https://repology.org/project/python:psygnal/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath tpnote, using log file: /var/log/nixpkgs-update/tpnote/2024-03-21.log tpnote 1.23.9 -> 1.23.10 https://github.com/getreu/tp-note/releases attrpath: tpnote Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - tpnote: 1.23.9 -> 1.23.10 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/297792" [result] Failed to update tpnote 1.23.9 -> 1.23.10 https://github.com/getreu/tp-note/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 starship, using log file: /var/log/nixpkgs-update/starship/2024-03-21.log starship 1.17.1 -> 1.18.0 https://github.com/starship/starship/releases attrpath: starship 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-7k7qb5jLz2mk27ayYYE5uFXYgQkjbIIwdppJxM8YgtY= 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 starship nix build failed. test utils::tests::exec_with_non_zero_exit_code ... ok test utils::tests::exec_no_output ... ok test modules::vlang::tests::folder_with_vpkg_file ... ok test print::test::rprompt_with_all ... ok test modules::status::tests::exit_code_name_no_signal ... ok test modules::custom::tests::timeout_cmd ... ok test utils::tests::exec_slow_command ... ok test result: ok. 1042 passed; 0 failed; 32 ignored; 0 measured; 0 filtered out; finished in 0.75s  Running unittests src/main.rs (target/x86_64-unknown-linux-gnu/release/deps/starship-2239c0cbd7a3f36a) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s  Doc-tests starship running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Finished cargoCheckHook checkPhase completed in 4 minutes 41 seconds @nix { "action": "setPhase", "phase": "installPhase" } Running phase: installPhase Executing cargoInstallHook cp: missing destination file operand after '/nix/store/52zg0w21bkl5i4ssrhxd76yjw71ds2x4-starship-1.18.0/share/starship/presets/' Try 'cp --help' for more information. /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 131: pop_var_context: head of shell_variables not a function context [result] Failed to update starship 1.17.1 -> 1.18.0 https://github.com/starship/starship/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.peft, using log file: /var/log/nixpkgs-update/python312Packages.peft/2024-03-21.log python312Packages.peft 0.9.0 -> 0.10.0 https://github.com/huggingface/peft/releases attrpath: python312Packages.peft 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/8vkzylp3q4gbisrf6lkqx7slf3r5gy53-packages.json.drv building '/nix/store/8vkzylp3q4gbisrf6lkqx7slf3r5gy53-packages.json.drv'... Going to be running update for following packages: - python3.12-peft-0.9.0 Press Enter key to continue... Running update for: - python3.12-peft-0.9.0: UPDATING ... - python3.12-peft-0.9.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/peft/default.nix b/pkgs/development/python-modules/peft/default.nix index d1936afe375f..3b65f6c68e92 100644 --- a/pkgs/development/python-modules/peft/default.nix +++ b/pkgs/development/python-modules/peft/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "peft"; - version = "0.9.0"; + version = "0.10.0"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "huggingface"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-RdWCIR28OqmpA92/5OWA5sCCPQCAWpUzCZpkHvNMj6M="; + hash = "sha256-Aln5WyDgNnxOUwyhOz9NGsnV1zXt/Rs57ULxR5ZJXNM="; }; nativeBuildInputs = [ setuptools ]; No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/fqys32q32637blz0xfq5d9r1q61i8bqh-python3.12-peft-0.10.0" 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 = 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 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 [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 failed to build:
  • libretranslate (python311Packages.libretranslate)
  • libretranslate.dist (python311Packages.libretranslate.dist)
14 packages built:
  • python311Packages.argos-translate-files
  • python311Packages.argos-translate-files.dist
  • python311Packages.argostranslate
  • python311Packages.argostranslate.dist
  • python311Packages.peft
  • python311Packages.peft.dist
  • python311Packages.stanza
  • python311Packages.stanza.dist
  • python311Packages.translatehtml
  • python311Packages.translatehtml.dist
  • python312Packages.peft
  • python312Packages.peft.dist
  • python312Packages.stanza
  • python312Packages.stanza.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.peft is: State-of-the art parameter-efficient fine tuning meta.homepage for python312Packages.peft is: https://github.com/huggingface/peft meta.changelog for python312Packages.peft is: https://github.com/huggingface/peft/releases/tag/v0.10.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.10.0 with grep in /nix/store/fqys32q32637blz0xfq5d9r1q61i8bqh-python3.12-peft-0.10.0 - found 0.10.0 in filename of file in /nix/store/fqys32q32637blz0xfq5d9r1q61i8bqh-python3.12-peft-0.10.0 ---
Rebuild report (if merged into master) (click to expand) ``` 9 total rebuild path(s) 9 package rebuild(s) First fifty rebuilds by attrpath libretranslate python311Packages.argos-translate-files python311Packages.argostranslate python311Packages.libretranslate python311Packages.peft python311Packages.stanza python311Packages.translatehtml python312Packages.peft python312Packages.stanza ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/fqys32q32637blz0xfq5d9r1q61i8bqh-python3.12-peft-0.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 python312Packages.peft https://github.com/r-ryantm/nixpkgs/archive/41955311b2bcab39076f3875e92c6713ae6bd8c0.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/41955311b2bcab39076f3875e92c6713ae6bd8c0#python312Packages.peft ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/fqys32q32637blz0xfq5d9r1q61i8bqh-python3.12-peft-0.10.0 ls -la /nix/store/fqys32q32637blz0xfq5d9r1q61i8bqh-python3.12-peft-0.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)
2 packages failed to build:
  • libretranslate (python311Packages.libretranslate)
  • libretranslate.dist (python311Packages.libretranslate.dist)
14 packages built:
  • python311Packages.argos-translate-files
  • python311Packages.argos-translate-files.dist
  • python311Packages.argostranslate
  • python311Packages.argostranslate.dist
  • python311Packages.peft
  • python311Packages.peft.dist
  • python311Packages.stanza
  • python311Packages.stanza.dist
  • python311Packages.translatehtml
  • python311Packages.translatehtml.dist
  • python312Packages.peft
  • python312Packages.peft.dist
  • python312Packages.stanza
  • python312Packages.stanza.dist
--- ###### Maintainer pings cc @bcdarwin 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/297853 [result] Success updating python312Packages.peft 0.9.0 -> 0.10.0 https://github.com/huggingface/peft/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.mplhep, using log file: /var/log/nixpkgs-update/python312Packages.mplhep/2024-03-21.log python312Packages.mplhep 0.3.41 -> 0.3.42 https://github.com/scikit-hep/mplhep/releases attrpath: python312Packages.mplhep 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/ir5gx037zc9h9r069p0w4i5p0699b9ys-packages.json.drv building '/nix/store/ir5gx037zc9h9r069p0w4i5p0699b9ys-packages.json.drv'... Going to be running update for following packages: - python3.12-mplhep-0.3.41 Press Enter key to continue... Running update for: - python3.12-mplhep-0.3.41: UPDATING ... - python3.12-mplhep-0.3.41: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/mplhep/default.nix b/pkgs/development/python-modules/mplhep/default.nix index 436baf50202e..16e4f998a609 100644 --- a/pkgs/development/python-modules/mplhep/default.nix +++ b/pkgs/development/python-modules/mplhep/default.nix @@ -16,12 +16,12 @@ buildPythonPackage rec { pname = "mplhep"; - version = "0.3.41"; + version = "0.3.42"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-1L9e2A2u+4+QEWJW2ikuENLD0x5Khjfr7I6p+Vt4nwE="; + hash = "sha256-N0HTq5tQhs4T3JI7uVPyxgl9OAzBsFMzDGRhpI4FXyM="; }; 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.mplhep Received ExitFailure 1 when running Raw command: /nix/store/cs41wvvf98zsgw7vbpfabj5f8d2y0ihz-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . python312Packages.mplhep Standard output: error: … while evaluating the attribute 'drvPath' at /var/cache/nixpkgs-update/worker/worktree/python312Packages.mplhep/lib/customisation.nix:268:7: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; … while evaluating the attribute 'drvPath' at /var/cache/nixpkgs-update/worker/worktree/python312Packages.mplhep/lib/customisation.nix:268:7: 267| in commonAttrs // { 268| drvPath = assert condition; drv.drvPath; | ^ 269| outPath = assert condition; drv.outPath; (stack trace truncated; use '--show-trace' to show the full trace) error: nose-1.3.7 not supported for interpreter python3.12 [result] Failed to update python312Packages.mplhep 0.3.41 -> 0.3.42 https://github.com/scikit-hep/mplhep/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.scikit-hep-testdata, using log file: /var/log/nixpkgs-update/python312Packages.scikit-hep-testdata/2024-03-21.log python312Packages.scikit-hep-testdata 0.4.40 -> 0.4.41 https://github.com/scikit-hep/scikit-hep-testdata/releases attrpath: python312Packages.scikit-hep-testdata 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/n3c1lsbv3gz6xc85sv71828h526hwcyf-packages.json.drv building '/nix/store/n3c1lsbv3gz6xc85sv71828h526hwcyf-packages.json.drv'... Going to be running update for following packages: - python3.12-scikit-hep-testdata-0.4.40 Press Enter key to continue... Running update for: - python3.12-scikit-hep-testdata-0.4.40: UPDATING ... - python3.12-scikit-hep-testdata-0.4.40: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/scikit-hep-testdata/default.nix b/pkgs/development/python-modules/scikit-hep-testdata/default.nix index 1d448c0b45de..58e8ceadd0d4 100644 --- a/pkgs/development/python-modules/scikit-hep-testdata/default.nix +++ b/pkgs/development/python-modules/scikit-hep-testdata/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "scikit-hep-testdata"; - version = "0.4.40"; + version = "0.4.42"; format = "pyproject"; disabled = pythonOlder "3.6"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "scikit-hep"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-6PUAam7eDWQOMS3SVIVJXvqQLBE187yUbkiyFZ+ojcU="; + hash = "sha256-2zUo/uGIQl0wSFWWxoTmttzUNq9rFGJRYr95PQJH/I8="; }; nativeBuildInputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Successfully finished processing cachix "/nix/store/bhd5ji568adqmv5xpnm2i3z27z757hlk-python3.12-scikit-hep-testdata-0.4.42" 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 = 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 = 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 = 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 [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)
10 packages failed to build:
  • python311Packages.coffea
  • python311Packages.coffea.dist
  • python311Packages.dask-awkward
  • python311Packages.dask-awkward.dist
  • python311Packages.mplhep
  • python311Packages.mplhep.dist
  • python311Packages.uproot
  • python311Packages.uproot.dist
  • python312Packages.uproot
  • python312Packages.uproot.dist
4 packages built:
  • python311Packages.scikit-hep-testdata
  • python311Packages.scikit-hep-testdata.dist
  • python312Packages.scikit-hep-testdata
  • python312Packages.scikit-hep-testdata.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.scikit-hep-testdata is: A common package to provide example files (e.g., ROOT) for testing and developing packages against meta.homepage for python312Packages.scikit-hep-testdata is: https://github.com/scikit-hep/scikit-hep-testdata meta.changelog for python312Packages.scikit-hep-testdata is: https://github.com/scikit-hep/scikit-hep-testdata/releases/tag/v0.4.42 ###### 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.4.42 with grep in /nix/store/bhd5ji568adqmv5xpnm2i3z27z757hlk-python3.12-scikit-hep-testdata-0.4.42 - found 0.4.42 in filename of file in /nix/store/bhd5ji568adqmv5xpnm2i3z27z757hlk-python3.12-scikit-hep-testdata-0.4.42 ---
Rebuild report (if merged into master) (click to expand) ``` 7 total rebuild path(s) 7 package rebuild(s) First fifty rebuilds by attrpath python311Packages.coffea python311Packages.dask-awkward python311Packages.mplhep python311Packages.scikit-hep-testdata python311Packages.uproot python312Packages.scikit-hep-testdata python312Packages.uproot ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/bhd5ji568adqmv5xpnm2i3z27z757hlk-python3.12-scikit-hep-testdata-0.4.42 \ --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.scikit-hep-testdata https://github.com/r-ryantm/nixpkgs/archive/5f7011f7730b34da18b7902f3b8bb64c62a1e5a0.tar.gz ``` Or: ``` nix build github:r-ryantm/nixpkgs/5f7011f7730b34da18b7902f3b8bb64c62a1e5a0#python312Packages.scikit-hep-testdata ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/bhd5ji568adqmv5xpnm2i3z27z757hlk-python3.12-scikit-hep-testdata-0.4.42 ls -la /nix/store/bhd5ji568adqmv5xpnm2i3z27z757hlk-python3.12-scikit-hep-testdata-0.4.42/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)
10 packages failed to build:
  • python311Packages.coffea
  • python311Packages.coffea.dist
  • python311Packages.dask-awkward
  • python311Packages.dask-awkward.dist
  • python311Packages.mplhep
  • python311Packages.mplhep.dist
  • python311Packages.uproot
  • python311Packages.uproot.dist
  • python312Packages.uproot
  • python312Packages.uproot.dist
4 packages built:
  • python311Packages.scikit-hep-testdata
  • python311Packages.scikit-hep-testdata.dist
  • python312Packages.scikit-hep-testdata
  • python312Packages.scikit-hep-testdata.dist
--- ###### Maintainer pings cc @veprbl 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/297866 [result] Success updating python312Packages.scikit-hep-testdata 0.4.40 -> 0.4.41 https://github.com/scikit-hep/scikit-hep-testdata/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 pioneer, using log file: /var/log/nixpkgs-update/pioneer/2024-03-21.log pioneer 20240203 -> 20240314 https://repology.org/project/pioneer/versions attrpath: pioneer Checking auto update branch... An auto update branch exists with message `pioneer: 20240203 -> 20240314`. New version is 20240314. An auto update branch exists with an equal or greater version [result] Failed to update pioneer 20240203 -> 20240314 https://repology.org/project/pioneer/versions [options] github_user: r-ryantm, pull_request: 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.Mojolicious 9.35 -> 9.36 https://repology.org/project/perl:mojolicious/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.pyopenssl, using log file: /var/log/nixpkgs-update/python312Packages.pyopenssl/2024-03-21.log python312Packages.pyopenssl 23.3.0 -> 24.1.0 https://repology.org/project/python:pyopenssl/versions attrpath: python312Packages.pyopenssl 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/pnnpw06c65ai6g1hyy911ijz31y6srd6-packages.json.drv building '/nix/store/pnnpw06c65ai6g1hyy911ijz31y6srd6-packages.json.drv'... Going to be running update for following packages: - python3.12-pyopenssl-24.0.0 Press Enter key to continue... Running update for: - python3.12-pyopenssl-24.0.0: UPDATING ... - python3.12-pyopenssl-24.0.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pyopenssl/default.nix b/pkgs/development/python-modules/pyopenssl/default.nix index 31e9e810c9ed..fd10549d9a47 100644 --- a/pkgs/development/python-modules/pyopenssl/default.nix +++ b/pkgs/development/python-modules/pyopenssl/default.nix @@ -14,13 +14,13 @@ buildPythonPackage rec { pname = "pyopenssl"; - version = "24.0.0"; + version = "24.1.0"; pyproject = true; src = fetchPypi { pname = "pyOpenSSL"; inherit version; - hash = "sha256-aqMwOak//6RWPmVbYdETZNASZL6My0mQYQHgKjNFML8="; + hash = "sha256-yr7Uv6pd+fGhbA72Sgy2Uxi1zQd6ftp9aXATHKL0Gm8="; }; outputs = [ No auto update branch exists [outpaths] eval start [outpaths] eval end Python package with too many package rebuilds 10894 > 25 [result] Failed to update python312Packages.pyopenssl 23.3.0 -> 24.1.0 https://repology.org/project/python:pyopenssl/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.minSNPs, using log file: /var/log/nixpkgs-update/rPackages.minSNPs/2024-03-21.log rPackages.minSNPs 0.1.0 -> 0.2.0 https://repology.org/project/r:minsnps/versions attrpath: rPackages.minSNPs 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.minSNPs 0.1.0 -> 0.2.0 https://repology.org/project/r:minsnps/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.Nebulosa, using log file: /var/log/nixpkgs-update/rPackages.Nebulosa/2024-03-21.log rPackages.Nebulosa 1.12.0 -> 1.12.1 https://repology.org/project/r:nebulosa/versions attrpath: rPackages.Nebulosa 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.Nebulosa 1.12.0 -> 1.12.1 https://repology.org/project/r:nebulosa/versions [options] github_user: r-ryantm, pull_request: 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.mousepad 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 c-for-go, using log file: /var/log/nixpkgs-update/c-for-go/2024-03-21.log c-for-go unstable-2023-09-06 -> 1.2.0 https://github.com/xlab/c-for-go/releases attrpath: c-for-go 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 c-for-go unstable-2023-09-06 -> 1.2.0 https://github.com/xlab/c-for-go/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 pencil, using log file: /var/log/nixpkgs-update/pencil/2024-03-21.log pencil 3.1.0 -> 3.1.1 https://repology.org/project/pencil/versions attrpath: pencil 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/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv building '/nix/store/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv'... trying http://pencil.evolus.vn/dl/V3.1.1.ga/pencil_3.1.1.ga_amd64.deb % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 1027 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download pencil_3.1.1.ga_amd64.deb from any mirror error: builder for '/nix/store/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv' failed with exit code 1; last 7 log lines: > > trying http://pencil.evolus.vn/dl/V3.1.1.ga/pencil_3.1.1.ga_amd64.deb > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 1027 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download pencil_3.1.1.ga_amd64.deb from any mirror For full logs, run 'nix log /nix/store/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'pencil.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv /nix/store/n9ywdckrmc9p2ykkg7cban0ql1m4wgpn-pencil-3.1.1.drv building '/nix/store/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv'... trying http://pencil.evolus.vn/dl/V3.1.1.ga/pencil_3.1.1.ga_amd64.deb % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 1027 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 error: cannot download pencil_3.1.1.ga_amd64.deb from any mirror error: builder for '/nix/store/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv' failed with exit code 1; last 7 log lines: > > trying http://pencil.evolus.vn/dl/V3.1.1.ga/pencil_3.1.1.ga_amd64.deb > % Total % Received % Xferd Average Speed Time Time Time Current > Dload Upload Total Spent Left Speed > 0 1027 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 > curl: (22) The requested URL returned error: 404 > error: cannot download pencil_3.1.1.ga_amd64.deb from any mirror For full logs, run 'nix log /nix/store/g28j7rxaqwx4dck7w8hrlbhj46zkzj62-pencil_3.1.1.ga_amd64.deb.drv'. error: 1 dependencies of derivation '/nix/store/n9ywdckrmc9p2ykkg7cban0ql1m4wgpn-pencil-3.1.1.drv' failed to build [result] Failed to update pencil 3.1.0 -> 3.1.1 https://repology.org/project/pencil/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.interface-meta, using log file: /var/log/nixpkgs-update/python311Packages.interface-meta/2024-03-21.log python311Packages.interface-meta 0 -> 1 attrpath: python311Packages.interface-meta 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/6zk74srmd3qdka04frmbpgp7vzh7z6xh-packages.json.drv building '/nix/store/6zk74srmd3qdka04frmbpgp7vzh7z6xh-packages.json.drv'... Going to be running update for following packages: - python3.11-interface-meta-1.3.0 Press Enter key to continue... Running update for: - python3.11-interface-meta-1.3.0: UPDATING ... - python3.11-interface-meta-1.3.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.interface-meta 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.mysql-connector, using log file: /var/log/nixpkgs-update/python311Packages.mysql-connector/2024-03-21.log python311Packages.mysql-connector 0 -> 1 attrpath: python311Packages.mysql-connector 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/c57sinm0gm9idshxf7akac3zg0fysvyz-packages.json.drv building '/nix/store/c57sinm0gm9idshxf7akac3zg0fysvyz-packages.json.drv'... Going to be running update for following packages: - python3.11-mysql-connector-8.0.33 Press Enter key to continue... Running update for: - python3.11-mysql-connector-8.0.33: UPDATING ... - python3.11-mysql-connector-8.0.33: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mysql-connector 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-ndn, using log file: /var/log/nixpkgs-update/python311Packages.python-ndn/2024-03-21.log python311Packages.python-ndn 0 -> 1 attrpath: python311Packages.python-ndn 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/20xi1jiyzkm2rf568vnnzm57x6pq5al3-packages.json.drv building '/nix/store/20xi1jiyzkm2rf568vnnzm57x6pq5al3-packages.json.drv'... Going to be running update for following packages: - python3.11-python-ndn-0.4.1 Press Enter key to continue... Running update for: - python3.11-python-ndn-0.4.1: UPDATING ... - python3.11-python-ndn-0.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.python-ndn 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 kodiPackages.chardet, using log file: /var/log/nixpkgs-update/kodiPackages.chardet/2024-03-21.log kodiPackages.chardet 0 -> 1 attrpath: kodiPackages.chardet 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/7bwf81rq3hn6qzjid7kbcs3q7bivamlp-packages.json.drv building '/nix/store/7bwf81rq3hn6qzjid7kbcs3q7bivamlp-packages.json.drv'... Going to be running update for following packages: - kodi-chardet-5.1.0 Press Enter key to continue... Running update for: - kodi-chardet-5.1.0: UPDATING ... - kodi-chardet-5.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update kodiPackages.chardet 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 pipx, using log file: /var/log/nixpkgs-update/pipx/2024-03-21.log pipx 0 -> 1 attrpath: pipx 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/lk1dfzz2b4j5pabs9lhvggz0yn91q7cw-packages.json.drv building '/nix/store/lk1dfzz2b4j5pabs9lhvggz0yn91q7cw-packages.json.drv'... Going to be running update for following packages: - pipx-1.4.3 Press Enter key to continue... Running update for: - pipx-1.4.3: UPDATING ... - pipx-1.4.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update pipx 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.simplefix, using log file: /var/log/nixpkgs-update/python311Packages.simplefix/2024-03-21.log python311Packages.simplefix 0 -> 1 attrpath: python311Packages.simplefix 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/bqr8sccx96hn1ajm93kd9cjwqdh0r6iq-packages.json.drv building '/nix/store/bqr8sccx96hn1ajm93kd9cjwqdh0r6iq-packages.json.drv'... Going to be running update for following packages: - python3.11-simplefix-1.0.17 Press Enter key to continue... Running update for: - python3.11-simplefix-1.0.17: UPDATING ... - python3.11-simplefix-1.0.17: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.simplefix 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 vectorscan, using log file: /var/log/nixpkgs-update/vectorscan/2024-03-21.log vectorscan 5.4.10.1 -> 5.4.11 https://repology.org/project/vectorscan/versions attrpath: vectorscan 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/vectorscan/default.nix b/pkgs/development/libraries/vectorscan/default.nix index 12fa0735b27f..f2c681fc16c9 100644 --- a/pkgs/development/libraries/vectorscan/default.nix +++ b/pkgs/development/libraries/vectorscan/default.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "vectorscan"; - version = "5.4.10.1"; + version = "5.4.11"; src = fetchFromGitHub { owner = "VectorCamp"; repo = "vectorscan"; rev = "vectorscan/${version}"; - hash = "sha256-x6FefOrUvpN/A4GXTd+3SGZEAQL6pXt83ufxRIY3Q9k="; + hash = "sha256-wz2oIhau/vjnri3LOyPZSCFAWg694FTLVt7+SZYEsL4="; }; nativeBuildInputs = [ [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 vectorscan 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 -- Build date: 1980-01-01 -- Performing Test ARCH_X86_64 -- Performing Test ARCH_X86_64 - Success -- Performing Test ARCH_IA32 -- Performing Test ARCH_IA32 - Failed -- Performing Test ARCH_AARCH64 -- Performing Test ARCH_AARCH64 - Failed -- Performing Test ARCH_ARM32 -- Performing Test ARCH_ARM32 - Failed -- Performing Test ARCH_PPC64EL -- Performing Test ARCH_PPC64EL - Failed -- Boost version: 1.81.0 CMake Error at /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake:230 (message): Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) Call Stack (most recent call first): /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake:600 (_FPHSA_FAILURE_MESSAGE) /nix/store/17r6ld906midfv8y7997fd56s7a87vrg-cmake-3.28.3/share/cmake-3.28/Modules/FindPkgConfig.cmake:99 (find_package_handle_standard_args) CMakeLists.txt:30 (find_package)  -- Configuring incomplete, errors occurred! [result] Failed to update vectorscan 5.4.10.1 -> 5.4.11 https://repology.org/project/vectorscan/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath planify, using log file: /var/log/nixpkgs-update/planify/2024-03-21.log planify 4.5.2 -> 4.5.4 https://repology.org/project/planify/versions attrpath: planify Checking auto update branch... No auto update branch exists Old version 4.5.2" not present in master derivation file with contents: { stdenv , lib , fetchFromGitHub , desktop-file-utils , meson , ninja , pkg-config , vala , wrapGAppsHook4 , evolution-data-server , glib , glib-networking , gtk4 , gtksourceview5 , gxml , json-glib , libadwaita , libgee , libical , libportal-gtk4 , libsecret , libsoup_3 , pantheon , sqlite , webkitgtk_6_0 }: stdenv.mkDerivation rec { pname = "planify"; version = "4.5.4"; src = fetchFromGitHub { owner = "alainm23"; repo = "planify"; rev = version; hash = "sha256-Q7QwsMUlejZStmQNRQntclHSCVQl54dtg8hyvXyM4PM="; }; nativeBuildInputs = [ desktop-file-utils meson ninja pkg-config vala wrapGAppsHook4 ]; buildInputs = [ evolution-data-server glib glib-networking gtk4 gtksourceview5 gxml json-glib libadwaita libgee libical libportal-gtk4 libsecret libsoup_3 pantheon.granite7 sqlite webkitgtk_6_0 ]; mesonFlags = [ "-Dprofile=default" ]; meta = with lib; { description = "Task manager with Todoist support designed for GNU/Linux"; homepage = "https://github.com/alainm23/planify"; license = licenses.gpl3Plus; maintainers = with maintainers; [ dtzWill ] ++ teams.pantheon.members; platforms = platforms.linux; mainProgram = "io.github.alainm23.planify"; }; } [result] Failed to update planify 4.5.2 -> 4.5.4 https://repology.org/project/planify/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.amazon-kclpy, using log file: /var/log/nixpkgs-update/python311Packages.amazon-kclpy/2024-03-21.log python311Packages.amazon-kclpy 0 -> 1 attrpath: python311Packages.amazon-kclpy 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/0cwhil7q82l2ddaq88hwjl0b66nhz9jb-packages.json.drv building '/nix/store/0cwhil7q82l2ddaq88hwjl0b66nhz9jb-packages.json.drv'... Going to be running update for following packages: - python3.11-amazon-kclpy-2.1.3 Press Enter key to continue... Running update for: - python3.11-amazon-kclpy-2.1.3: UPDATING ... - python3.11-amazon-kclpy-2.1.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.amazon-kclpy 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.commentjson, using log file: /var/log/nixpkgs-update/python311Packages.commentjson/2024-03-21.log python311Packages.commentjson 0 -> 1 attrpath: python311Packages.commentjson 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/w2ndhyp212qmp3d2q705q7s3dhqpa50f-packages.json.drv building '/nix/store/w2ndhyp212qmp3d2q705q7s3dhqpa50f-packages.json.drv'... Going to be running update for following packages: - python3.11-commentjson-0.9.0 Press Enter key to continue... Running update for: - python3.11-commentjson-0.9.0: UPDATING ... - python3.11-commentjson-0.9.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.commentjson 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 lapce, using log file: /var/log/nixpkgs-update/lapce/2024-03-21.log lapce 0 -> 1 attrpath: lapce 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/kzh730r2a6n71bk0qi5dg7d5jg0xkijk-packages.json.drv building '/nix/store/kzh730r2a6n71bk0qi5dg7d5jg0xkijk-packages.json.drv'... Going to be running update for following packages: - lapce-0.3.1 Press Enter key to continue... Running update for: - lapce-0.3.1: UPDATING ... - lapce-0.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update lapce 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.mock-services, using log file: /var/log/nixpkgs-update/python311Packages.mock-services/2024-03-21.log python311Packages.mock-services 0 -> 1 attrpath: python311Packages.mock-services 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/32pzl4p1jfsw8kcxsz0wri4bfl519lvr-packages.json.drv building '/nix/store/32pzl4p1jfsw8kcxsz0wri4bfl519lvr-packages.json.drv'... Going to be running update for following packages: - python3.11-mock-services-0.3.1 Press Enter key to continue... Running update for: - python3.11-mock-services-0.3.1: UPDATING ... - python3.11-mock-services-0.3.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mock-services 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 symbolic-preview, using log file: /var/log/nixpkgs-update/symbolic-preview/2024-03-21.log symbolic-preview 0.0.3 -> 0.0.9 https://repology.org/project/symbolic-preview/versions attrpath: symbolic-preview 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/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv building '/nix/store/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv'... trying https://gitlab.gnome.org/World/design/symbolic-preview/uploads/df71a2eee9ea0c90b3d146e7286fec42/symbolic-preview-0.0.9.tar.xz % 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 symbolic-preview-0.0.9.tar.xz from any mirror error: builder for '/nix/store/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv' failed with exit code 1; last 7 log lines: > > trying https://gitlab.gnome.org/World/design/symbolic-preview/uploads/df71a2eee9ea0c90b3d146e7286fec42/symbolic-preview-0.0.9.tar.xz > % 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 symbolic-preview-0.0.9.tar.xz from any mirror For full logs, run 'nix log /nix/store/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'symbolic-preview.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv /nix/store/0b0mn3d9kz1qgh0wb99lmdj8m409c72w-symbolic-preview-0.0.9.drv these 4 paths will be fetched (7.83 MiB download, 37.32 MiB unpacked): /nix/store/kasclbqy0z6619ygvh2169i7ix511da7-graphene-1.10.8-dev /nix/store/jj89brz1yhzc64lkwcgv6f7qll13jjv5-gtk4-4.12.5-dev /nix/store/xg930hrhcns0dp39q227dsq6n9wdfm54-libadwaita-1.4.4-dev /nix/store/77m063h6hpljpr6pib6l3pw6s8v7g9yz-wrap-gapps-hook copying path '/nix/store/kasclbqy0z6619ygvh2169i7ix511da7-graphene-1.10.8-dev' from 'https://cache.nixos.org'... building '/nix/store/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv'... copying path '/nix/store/jj89brz1yhzc64lkwcgv6f7qll13jjv5-gtk4-4.12.5-dev' from 'https://cache.nixos.org'... copying path '/nix/store/xg930hrhcns0dp39q227dsq6n9wdfm54-libadwaita-1.4.4-dev' from 'https://cache.nixos.org'... copying path '/nix/store/77m063h6hpljpr6pib6l3pw6s8v7g9yz-wrap-gapps-hook' from 'https://cache.nixos.org'... trying https://gitlab.gnome.org/World/design/symbolic-preview/uploads/df71a2eee9ea0c90b3d146e7286fec42/symbolic-preview-0.0.9.tar.xz % 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 symbolic-preview-0.0.9.tar.xz from any mirror error: builder for '/nix/store/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv' failed with exit code 1; last 7 log lines: > > trying https://gitlab.gnome.org/World/design/symbolic-preview/uploads/df71a2eee9ea0c90b3d146e7286fec42/symbolic-preview-0.0.9.tar.xz > % 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 symbolic-preview-0.0.9.tar.xz from any mirror For full logs, run 'nix log /nix/store/28cbmkklvr95zdj77y3i8nr0bpvsb6ck-symbolic-preview-0.0.9.tar.xz.drv'. error: 1 dependencies of derivation '/nix/store/0b0mn3d9kz1qgh0wb99lmdj8m409c72w-symbolic-preview-0.0.9.drv' failed to build [result] Failed to update symbolic-preview 0.0.3 -> 0.0.9 https://repology.org/project/symbolic-preview/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.georss-ingv-centro-nazionale-terremoti-client, using log file: /var/log/nixpkgs-update/python311Packages.georss-ingv-centro-nazionale-terremoti-client/2024-03-21.log python311Packages.georss-ingv-centro-nazionale-terremoti-client 0 -> 1 attrpath: python311Packages.georss-ingv-centro-nazionale-terremoti-client 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/d4csl3c00gmqpqq6bd8i44c6i9dfr8i2-packages.json.drv building '/nix/store/d4csl3c00gmqpqq6bd8i44c6i9dfr8i2-packages.json.drv'... Going to be running update for following packages: - python3.11-georss-ingv-centro-nazionale-terremoti-client-0.7 Press Enter key to continue... Running update for: - python3.11-georss-ingv-centro-nazionale-terremoti-client-0.7: UPDATING ... - python3.11-georss-ingv-centro-nazionale-terremoti-client-0.7: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.georss-ingv-centro-nazionale-terremoti-client 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 riemann-tools, using log file: /var/log/nixpkgs-update/riemann-tools/2024-03-21.log riemann-tools 0 -> 1 attrpath: riemann-tools 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 riemann-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.aws-xray-sdk, using log file: /var/log/nixpkgs-update/python311Packages.aws-xray-sdk/2024-03-21.log python311Packages.aws-xray-sdk 0 -> 1 attrpath: python311Packages.aws-xray-sdk 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/wjn2v4z9y4qlzrrm9gjj9wlq5i2d5z4f-packages.json.drv building '/nix/store/wjn2v4z9y4qlzrrm9gjj9wlq5i2d5z4f-packages.json.drv'... Going to be running update for following packages: - python3.11-aws-xray-sdk-2.13.0 Press Enter key to continue... Running update for: - python3.11-aws-xray-sdk-2.13.0: UPDATING ... - python3.11-aws-xray-sdk-2.13.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.aws-xray-sdk 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 nuked-md, using log file: /var/log/nixpkgs-update/nuked-md/2024-03-21.log nuked-md 0 -> 1 attrpath: nuked-md 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/k66177z51hh33w1lkz9n3w9s934j5cvj-packages.json.drv building '/nix/store/k66177z51hh33w1lkz9n3w9s934j5cvj-packages.json.drv'... Going to be running update for following packages: - nuked-md-1.2 Press Enter key to continue... Running update for: - nuked-md-1.2: UPDATING ... - nuked-md-1.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update nuked-md 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.requests-http-signature, using log file: /var/log/nixpkgs-update/python311Packages.requests-http-signature/2024-03-21.log python311Packages.requests-http-signature 0 -> 1 attrpath: python311Packages.requests-http-signature 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/qmz22m4lrfav925fmrm6r2nh48xqxhs0-packages.json.drv building '/nix/store/qmz22m4lrfav925fmrm6r2nh48xqxhs0-packages.json.drv'... Going to be running update for following packages: - python3.11-requests-http-signature-0.7.1 Press Enter key to continue... Running update for: - python3.11-requests-http-signature-0.7.1: UPDATING ... - python3.11-requests-http-signature-0.7.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.requests-http-signature 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 zrok, using log file: /var/log/nixpkgs-update/zrok/2024-03-21.log zrok 0 -> 1 attrpath: zrok 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/awani803m2psk2zfxpfcqvr4qm8x3x0q-packages.json.drv building '/nix/store/awani803m2psk2zfxpfcqvr4qm8x3x0q-packages.json.drv'... Going to be running update for following packages: - zrok-0.4.26 Press Enter key to continue... Running update for: - zrok-0.4.26: UPDATING ... - zrok-0.4.26: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update zrok 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.sdcHierarchies, using log file: /var/log/nixpkgs-update/rPackages.sdcHierarchies/2024-03-21.log rPackages.sdcHierarchies 0.20.0 -> 0.21.0 https://repology.org/project/r:sdchierarchies/versions attrpath: rPackages.sdcHierarchies Checking auto update branch... No auto update branch exists Old version 0.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.sdcHierarchies 0.20.0 -> 0.21.0 https://repology.org/project/r:sdchierarchies/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-console-scripts, using log file: /var/log/nixpkgs-update/python311Packages.pytest-console-scripts/2024-03-21.log python311Packages.pytest-console-scripts 0 -> 1 attrpath: python311Packages.pytest-console-scripts 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/yf99gh75d0byl7xk1xzrl3ic9wj5nma6-packages.json.drv building '/nix/store/yf99gh75d0byl7xk1xzrl3ic9wj5nma6-packages.json.drv'... Going to be running update for following packages: - python3.11-pytest-console-scripts-1.4.1 Press Enter key to continue... Running update for: - python3.11-pytest-console-scripts-1.4.1: UPDATING ... - python3.11-pytest-console-scripts-1.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytest-console-scripts 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.odfpy, using log file: /var/log/nixpkgs-update/python311Packages.odfpy/2024-03-21.log python311Packages.odfpy 0 -> 1 attrpath: python311Packages.odfpy 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/qwdj04lhjah429z32wqj8pkikywz7ba7-packages.json.drv building '/nix/store/qwdj04lhjah429z32wqj8pkikywz7ba7-packages.json.drv'... Going to be running update for following packages: - python3.11-odfpy-1.4.1 Press Enter key to continue... Running update for: - python3.11-odfpy-1.4.1: UPDATING ... - python3.11-odfpy-1.4.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.odfpy 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 aws-c-event-stream, using log file: /var/log/nixpkgs-update/aws-c-event-stream/2024-03-21.log aws-c-event-stream 0.3.2 -> 0.4.2 https://repology.org/project/aws-c-event-stream/versions attrpath: aws-c-event-stream Checking auto update branch... An auto update branch exists with message `aws-c-event-stream: 0.3.2 -> 0.4.2`. New version is 0.4.2. An auto update branch exists with an equal or greater version [result] Failed to update aws-c-event-stream 0.3.2 -> 0.4.2 https://repology.org/project/aws-c-event-stream/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath libmatchbox, using log file: /var/log/nixpkgs-update/libmatchbox/2024-03-21.log libmatchbox 1.11 -> 1.12 https://repology.org/project/libmatchbox/versions attrpath: libmatchbox 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/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv building '/nix/store/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv'... trying https://downloads.yoctoproject.org/releases/matchbox/libmatchbox/1.12/libmatchbox-1.12.tar.bz2 % 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 error: cannot download libmatchbox-1.12.tar.bz2 from any mirror error: builder for '/nix/store/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://downloads.yoctoproject.org/releases/matchbox/libmatchbox/1.12/libmatchbox-1.12.tar.bz2 > % 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 > error: cannot download libmatchbox-1.12.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv'. stderr did not split as expected full stderr was: error: attribute 'originalSrc' in selection path 'libmatchbox.originalSrc' not found stderr did not split as expected full stderr was: these 2 derivations will be built: /nix/store/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv /nix/store/hikfwah9lsk79935zkrgi1y35sk04nzx-libmatchbox-1.12.drv building '/nix/store/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv'... trying https://downloads.yoctoproject.org/releases/matchbox/libmatchbox/1.12/libmatchbox-1.12.tar.bz2 % 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 error: cannot download libmatchbox-1.12.tar.bz2 from any mirror error: builder for '/nix/store/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv' failed with exit code 1; last 7 log lines: > > trying https://downloads.yoctoproject.org/releases/matchbox/libmatchbox/1.12/libmatchbox-1.12.tar.bz2 > % 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 > error: cannot download libmatchbox-1.12.tar.bz2 from any mirror For full logs, run 'nix log /nix/store/hiy3cbdvaky70kah7rqsm3f5bnv424im-libmatchbox-1.12.tar.bz2.drv'. error: 1 dependencies of derivation '/nix/store/hikfwah9lsk79935zkrgi1y35sk04nzx-libmatchbox-1.12.drv' failed to build [result] Failed to update libmatchbox 1.11 -> 1.12 https://repology.org/project/libmatchbox/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath evillimiter, using log file: /var/log/nixpkgs-update/evillimiter/2024-03-21.log evillimiter 0 -> 1 attrpath: evillimiter 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/ik00k6sczwzrrs3imi9irl65vbwjddbh-packages.json.drv building '/nix/store/ik00k6sczwzrrs3imi9irl65vbwjddbh-packages.json.drv'... Going to be running update for following packages: - evillimiter-1.5.0 Press Enter key to continue... Running update for: - evillimiter-1.5.0: UPDATING ... - evillimiter-1.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update evillimiter 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.basilisk, using log file: /var/log/nixpkgs-update/rPackages.basilisk/2024-03-21.log rPackages.basilisk 1.14.1 -> 1.14.3 https://repology.org/project/r:basilisk/versions attrpath: rPackages.basilisk 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.basilisk 1.14.1 -> 1.14.3 https://repology.org/project/r:basilisk/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-nspkg, using log file: /var/log/nixpkgs-update/python311Packages.azure-nspkg/2024-03-21.log python311Packages.azure-nspkg 0 -> 1 attrpath: python311Packages.azure-nspkg 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/6ll6rq8z001zzg40rnk85iabq5f4r1w0-packages.json.drv building '/nix/store/6ll6rq8z001zzg40rnk85iabq5f4r1w0-packages.json.drv'... Going to be running update for following packages: - python3.11-azure-nspkg-3.0.2 Press Enter key to continue... Running update for: - python3.11-azure-nspkg-3.0.2: UPDATING ... - python3.11-azure-nspkg-3.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.azure-nspkg 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 lomiri.suru-icon-theme, using log file: /var/log/nixpkgs-update/lomiri.suru-icon-theme/2024-03-21.log lomiri.suru-icon-theme 0 -> 1 attrpath: lomiri.suru-icon-theme 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/6klvazb8ld13xhnj9lbvpza7blkhd8sz-packages.json.drv building '/nix/store/6klvazb8ld13xhnj9lbvpza7blkhd8sz-packages.json.drv'... Going to be running update for following packages: - suru-icon-theme-2024.02.1 Press Enter key to continue... Running update for: - suru-icon-theme-2024.02.1: UPDATING ... - suru-icon-theme-2024.02.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update lomiri.suru-icon-theme 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 super-slicer, using log file: /var/log/nixpkgs-update/super-slicer/2024-03-21.log super-slicer 2.3.57.12 -> 2.4.58.5 https://github.com/supermerill/SuperSlicer/releases attrpath: super-slicer 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 super-slicer 2.3.57.12 -> 2.4.58.5 https://github.com/supermerill/SuperSlicer/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.graphviz, using log file: /var/log/nixpkgs-update/python311Packages.graphviz/2024-03-21.log python311Packages.graphviz 0 -> 1 attrpath: python311Packages.graphviz 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/shfr84hi6z67ki0vrg3s9yavxsvgmxxl-packages.json.drv building '/nix/store/shfr84hi6z67ki0vrg3s9yavxsvgmxxl-packages.json.drv'... Going to be running update for following packages: - python3.11-graphviz-0.20.1 Press Enter key to continue... Running update for: - python3.11-graphviz-0.20.1: UPDATING ... - python3.11-graphviz-0.20.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.graphviz 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.pyomo, using log file: /var/log/nixpkgs-update/python311Packages.pyomo/2024-03-21.log python311Packages.pyomo 0 -> 1 attrpath: python311Packages.pyomo 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/0yw7dk1wx9bsjb46q6gkanpiaw8hfhic-packages.json.drv building '/nix/store/0yw7dk1wx9bsjb46q6gkanpiaw8hfhic-packages.json.drv'... Going to be running update for following packages: - python3.11-pyomo-6.7.1 Press Enter key to continue... Running update for: - python3.11-pyomo-6.7.1: UPDATING ... - python3.11-pyomo-6.7.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyomo 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.zdaemon, using log file: /var/log/nixpkgs-update/python311Packages.zdaemon/2024-03-21.log python311Packages.zdaemon 0 -> 1 attrpath: python311Packages.zdaemon 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/jyg14j12k0js6jjnhc1i863aqq81s4qd-packages.json.drv building '/nix/store/jyg14j12k0js6jjnhc1i863aqq81s4qd-packages.json.drv'... Going to be running update for following packages: - python3.11-zdaemon-5.0 Press Enter key to continue... Running update for: - python3.11-zdaemon-5.0: UPDATING ... - python3.11-zdaemon-5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.zdaemon 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.pyswitchbee, using log file: /var/log/nixpkgs-update/python311Packages.pyswitchbee/2024-03-21.log python311Packages.pyswitchbee 0 -> 1 attrpath: python311Packages.pyswitchbee 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/rjydvwks7sibcwvpbgk2m4qn9a30bjfs-packages.json.drv building '/nix/store/rjydvwks7sibcwvpbgk2m4qn9a30bjfs-packages.json.drv'... Going to be running update for following packages: - python3.11-pyswitchbee-1.8.0 Press Enter key to continue... Running update for: - python3.11-pyswitchbee-1.8.0: UPDATING ... - python3.11-pyswitchbee-1.8.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyswitchbee 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.drf-spectacular-sidecar, using log file: /var/log/nixpkgs-update/python311Packages.drf-spectacular-sidecar/2024-03-21.log python311Packages.drf-spectacular-sidecar 0 -> 1 attrpath: python311Packages.drf-spectacular-sidecar 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/sxngj8c5ypfa71qsq677z3qdf8af4y6v-packages.json.drv building '/nix/store/sxngj8c5ypfa71qsq677z3qdf8af4y6v-packages.json.drv'... Going to be running update for following packages: - python3.11-drf-spectacular-sidecar-2023.9.1 Press Enter key to continue... Running update for: - python3.11-drf-spectacular-sidecar-2023.9.1: UPDATING ... - python3.11-drf-spectacular-sidecar-2023.9.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.drf-spectacular-sidecar 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.flask-silk, using log file: /var/log/nixpkgs-update/python311Packages.flask-silk/2024-03-21.log python311Packages.flask-silk 0 -> 1 attrpath: python311Packages.flask-silk 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/fjvkrdxa08yzkd43sdpafy5r5dny4b3r-packages.json.drv building '/nix/store/fjvkrdxa08yzkd43sdpafy5r5dny4b3r-packages.json.drv'... Going to be running update for following packages: - python3.11-Flask-Silk-unstable-2018-06-28 Press Enter key to continue... Running update for: - python3.11-Flask-Silk-unstable-2018-06-28: UPDATING ... - python3.11-Flask-Silk-unstable-2018-06-28: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.flask-silk 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.hologram, using log file: /var/log/nixpkgs-update/python311Packages.hologram/2024-03-21.log python311Packages.hologram 0 -> 1 attrpath: python311Packages.hologram 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/drrp3i0n8snar3l8013p7kx4m8pn5cj6-packages.json.drv building '/nix/store/drrp3i0n8snar3l8013p7kx4m8pn5cj6-packages.json.drv'... Going to be running update for following packages: - python3.11-hologram-0.0.16 Press Enter key to continue... Running update for: - python3.11-hologram-0.0.16: UPDATING ... - python3.11-hologram-0.0.16: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.hologram 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.spup, using log file: /var/log/nixpkgs-update/rPackages.spup/2024-03-21.log rPackages.spup 1.3-2 -> 1.4-0 https://repology.org/project/r:spup/versions attrpath: rPackages.spup 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.spup 1.3-2 -> 1.4-0 https://repology.org/project/r:spup/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.types-psutil, using log file: /var/log/nixpkgs-update/python311Packages.types-psutil/2024-03-21.log python311Packages.types-psutil 0 -> 1 attrpath: python311Packages.types-psutil 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/laq09ipvlqa7mhnzmwvqk5b1x2xninbj-packages.json.drv building '/nix/store/laq09ipvlqa7mhnzmwvqk5b1x2xninbj-packages.json.drv'... Going to be running update for following packages: - python3.11-types-psutil-5.9.5.20240205 Press Enter key to continue... Running update for: - python3.11-types-psutil-5.9.5.20240205: UPDATING ... - python3.11-types-psutil-5.9.5.20240205: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/types-psutil/default.nix b/pkgs/development/python-modules/types-psutil/default.nix index 0d51f30d12aa..ed7269e45821 100644 --- a/pkgs/development/python-modules/types-psutil/default.nix +++ b/pkgs/development/python-modules/types-psutil/default.nix @@ -5,12 +5,12 @@ buildPythonPackage rec { pname = "types-psutil"; - version = "5.9.5.20240205"; + version = "5.9.5.20240316"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-Ud82o2GqWXv0g9zFtY8qt6qHRSo20tqXyQmU1qge90M="; + hash = "sha256-Vjb1cUu5MMZLs0xNR6WdyS+dYQt3i1Nkox2qVYSUSEg="; }; # Module doesn't have tests No auto update branch exists [outpaths] eval start [outpaths] eval end Python package with too many package rebuilds 108 > 25 [result] Failed to update python311Packages.types-psutil 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.nkdfu, using log file: /var/log/nixpkgs-update/python311Packages.nkdfu/2024-03-21.log python311Packages.nkdfu 0 -> 1 attrpath: python311Packages.nkdfu 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/9qpypb094j9xadim14sga7cgg2lpv48i-packages.json.drv building '/nix/store/9qpypb094j9xadim14sga7cgg2lpv48i-packages.json.drv'... Going to be running update for following packages: - python3.11-nkdfu-0.2 Press Enter key to continue... Running update for: - python3.11-nkdfu-0.2: UPDATING ... - python3.11-nkdfu-0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nkdfu 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.gamlss_mx, using log file: /var/log/nixpkgs-update/rPackages.gamlss_mx/2024-03-21.log rPackages.gamlss_mx 6.0-0 -> 6.0-1 https://repology.org/project/r:gamlss.mx/versions attrpath: rPackages.gamlss_mx Checking auto update branch... No auto update branch exists Old version 6.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.gamlss_mx 6.0-0 -> 6.0-1 https://repology.org/project/r:gamlss.mx/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.inlcolor, using log file: /var/log/nixpkgs-update/rPackages.inlcolor/2024-03-21.log rPackages.inlcolor 1.0.5 -> 1.0.6 https://repology.org/project/r:inlcolor/versions attrpath: rPackages.inlcolor Checking auto update branch... No auto update branch exists Old version 1.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.inlcolor 1.0.5 -> 1.0.6 https://repology.org/project/r:inlcolor/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.cognitoR, using log file: /var/log/nixpkgs-update/rPackages.cognitoR/2024-03-21.log rPackages.cognitoR 1.0.4 -> 1.0.5 https://repology.org/project/r:cognitor/versions attrpath: rPackages.cognitoR 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.cognitoR 1.0.4 -> 1.0.5 https://repology.org/project/r:cognitor/versions [options] github_user: r-ryantm, pull_request: 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.WWWMechanize 2.17 -> 2.18 https://repology.org/project/perl:www-mechanize/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.MplusAutomation, using log file: /var/log/nixpkgs-update/rPackages.MplusAutomation/2024-03-21.log rPackages.MplusAutomation 1.1.0 -> 1.1.1 https://repology.org/project/r:mplusautomation/versions attrpath: rPackages.MplusAutomation 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.MplusAutomation 1.1.0 -> 1.1.1 https://repology.org/project/r:mplusautomation/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.deebot-client, using log file: /var/log/nixpkgs-update/python311Packages.deebot-client/2024-03-21.log python311Packages.deebot-client 0 -> 1 attrpath: python311Packages.deebot-client 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/x0xfs0hyvxl9i23zppv91gy4pvsfhsic-packages.json.drv building '/nix/store/x0xfs0hyvxl9i23zppv91gy4pvsfhsic-packages.json.drv'... Going to be running update for following packages: - python3.11-deebot-client-6.0.2 Press Enter key to continue... Running update for: - python3.11-deebot-client-6.0.2: UPDATING ... - python3.11-deebot-client-6.0.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.deebot-client 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.XLConnect, using log file: /var/log/nixpkgs-update/rPackages.XLConnect/2024-03-21.log rPackages.XLConnect 1.0.7 -> 1.0.8 https://repology.org/project/r:xlconnect/versions attrpath: rPackages.XLConnect Checking auto update branch... No auto update branch exists Old version 1.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.XLConnect 1.0.7 -> 1.0.8 https://repology.org/project/r:xlconnect/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.WhatsR, using log file: /var/log/nixpkgs-update/rPackages.WhatsR/2024-03-21.log rPackages.WhatsR 1.0.2 -> 1.0.4 https://repology.org/project/r:whatsr/versions attrpath: rPackages.WhatsR 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.WhatsR 1.0.2 -> 1.0.4 https://repology.org/project/r:whatsr/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.phylobase, using log file: /var/log/nixpkgs-update/rPackages.phylobase/2024-03-21.log rPackages.phylobase 0.8.10 -> 0.8.12 https://repology.org/project/r:phylobase/versions attrpath: rPackages.phylobase Checking auto update branch... No auto update branch exists Old version 0.8.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.phylobase 0.8.10 -> 0.8.12 https://repology.org/project/r:phylobase/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.data_table, using log file: /var/log/nixpkgs-update/rPackages.data_table/2024-03-21.log rPackages.data_table 1.14.10 -> 1.15.2 https://repology.org/project/r:data.table/versions attrpath: rPackages.data_table Checking auto update branch... No auto update branch exists Old version 1.14.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.data_table 1.14.10 -> 1.15.2 https://repology.org/project/r:data.table/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.svg-py, using log file: /var/log/nixpkgs-update/python311Packages.svg-py/2024-03-21.log python311Packages.svg-py 0 -> 1 attrpath: python311Packages.svg-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/6c6z5f92why7qy9naig0qw3q7jzngzwb-packages.json.drv building '/nix/store/6c6z5f92why7qy9naig0qw3q7jzngzwb-packages.json.drv'... Going to be running update for following packages: - python3.11-svg-py-1.4.3 Press Enter key to continue... Running update for: - python3.11-svg-py-1.4.3: UPDATING ... - python3.11-svg-py-1.4.3: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.svg-py 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.mombf, using log file: /var/log/nixpkgs-update/rPackages.mombf/2024-03-21.log rPackages.mombf 3.4.2 -> 3.5.4 https://repology.org/project/r:mombf/versions attrpath: rPackages.mombf Checking auto update branch... No auto update branch exists Old version 3.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.mombf 3.4.2 -> 3.5.4 https://repology.org/project/r:mombf/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.nestedcv, using log file: /var/log/nixpkgs-update/rPackages.nestedcv/2024-03-21.log rPackages.nestedcv 0.7.3 -> 0.7.8 https://repology.org/project/r:nestedcv/versions attrpath: rPackages.nestedcv 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.nestedcv 0.7.3 -> 0.7.8 https://repology.org/project/r:nestedcv/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.rtop, using log file: /var/log/nixpkgs-update/rPackages.rtop/2024-03-21.log rPackages.rtop 0.6-8 -> 0.6-9 https://repology.org/project/r:rtop/versions attrpath: rPackages.rtop Checking auto update branch... No auto update branch exists Old version 0.6-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.rtop 0.6-8 -> 0.6-9 https://repology.org/project/r:rtop/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-validation-layers, using log file: /var/log/nixpkgs-update/vulkan-validation-layers/2024-03-21.log vulkan-validation-layers 1.3.275.0 -> 1.3.280 https://repology.org/project/vulkan-validationlayers/versions attrpath: vulkan-validation-layers 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/vulkan-validation-layers/default.nix b/pkgs/development/tools/vulkan-validation-layers/default.nix index 1d0a39fb2b8b..ae0da81496be 100644 --- a/pkgs/development/tools/vulkan-validation-layers/default.nix +++ b/pkgs/development/tools/vulkan-validation-layers/default.nix @@ -23,13 +23,13 @@ let in stdenv.mkDerivation rec { pname = "vulkan-validation-layers"; - version = "1.3.275.0"; + version = "1.3.280"; src = fetchFromGitHub { owner = "KhronosGroup"; repo = "Vulkan-ValidationLayers"; rev = "vulkan-sdk-${version}"; - hash = "sha256-hJx8gn0zCN3+DhO6niylZJXPHgQ+VhQV5tL8qAeRaUg="; + hash = "sha256-jBiVbLRbAZEEU8ZYg9Ehx4b5hDJoi7+LnN++zKLSzvA="; }; nativeBuildInputs = [ [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 vulkan-validation-layers nix build failed. /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp:13461:62: error: request for member 'shaderExpectAssume' in '* in_struct', which is of non-class type 'const int' 13461 | : sType(in_struct->sType), shaderExpectAssume(in_struct->shaderExpectAssume) { | ^~~~~~~~~~~~~~~~~~ /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp:13463:42: error: request for member 'pNext' in '* in_struct', which is of non-class type 'const int' 13463 | pNext = SafePnextCopy(in_struct->pNext, copy_state); | ^~~~~ make[2]: *** [layers/CMakeFiles/VkLayer_utils.dir/build.make:174: layers/CMakeFiles/VkLayer_utils.dir/vulkan/generated/vk_safe_struct_utils.cpp.o] Error 1 /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp: In constructor 'safe_VkPhysicalDeviceShaderExpectAssumeFeaturesKHR::safe_VkPhysicalDeviceShaderExpectAssumeFeaturesKHR()': /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp:13468:13: error: 'VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_EXPECT_ASSUME_FEATURES_KHR' was not declared in this scope; did you mean 'VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES_KHR'? 13468 | : sType(VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_EXPECT_ASSUME_FEATURES_KHR), pNext(nullptr), shaderExpectAssume() {} | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES_KHR /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp: At global scope: /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp:13492:75: error: 'VkPhysicalDeviceShaderExpectAssumeFeaturesKHR' does not name a type; did you mean 'safe_VkPhysicalDeviceShaderExpectAssumeFeaturesKHR'? 13492 | void safe_VkPhysicalDeviceShaderExpectAssumeFeaturesKHR::initialize(const VkPhysicalDeviceShaderExpectAssumeFeaturesKHR* in_struct, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | safe_VkPhysicalDeviceShaderExpectAssumeFeaturesKHR /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp: In member function 'void safe_VkPhysicalDeviceShaderExpectAssumeFeaturesKHR::initialize(const int*, PNextCopyState*)': /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp:13495:24: error: request for member 'sType' in '* in_struct', which is of non-class type 'const int' 13495 | sType = in_struct->sType; | ^~~~~ /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp:13496:37: error: request for member 'shaderExpectAssume' in '* in_struct', which is of non-class type 'const int' 13496 | shaderExpectAssume = in_struct->shaderExpectAssume; | ^~~~~~~~~~~~~~~~~~ /build/source/layers/vulkan/generated/vk_safe_struct_khr.cpp:13497:38: error: request for member 'pNext' in '* in_struct', which is of non-class type 'const int' 13497 | pNext = SafePnextCopy(in_struct->pNext, copy_state); | ^~~~~ make[2]: *** [layers/CMakeFiles/VkLayer_utils.dir/build.make:202: layers/CMakeFiles/VkLayer_utils.dir/vulkan/generated/vk_safe_struct_khr.cpp.o] Error 1 make[1]: *** [CMakeFiles/Makefile2:135: layers/CMakeFiles/VkLayer_utils.dir/all] Error 2 make: *** [Makefile:136: all] Error 2 [result] Failed to update vulkan-validation-layers 1.3.275.0 -> 1.3.280 https://repology.org/project/vulkan-validationlayers/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.bracex, using log file: /var/log/nixpkgs-update/python311Packages.bracex/2024-03-21.log python311Packages.bracex 0 -> 1 attrpath: python311Packages.bracex 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/nbwk2mkxclzz7ds67yr0dczbrg67jv30-packages.json.drv building '/nix/store/nbwk2mkxclzz7ds67yr0dczbrg67jv30-packages.json.drv'... Going to be running update for following packages: - python3.11-bracex-2.4 Press Enter key to continue... Running update for: - python3.11-bracex-2.4: UPDATING ... - python3.11-bracex-2.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.bracex 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.libchamplain, using log file: /var/log/nixpkgs-update/gnome.libchamplain/2024-03-21.log gnome.libchamplain 0 -> 1 attrpath: gnome.libchamplain Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome.libchamplain 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.ptyprocess, using log file: /var/log/nixpkgs-update/python311Packages.ptyprocess/2024-03-21.log python311Packages.ptyprocess 0 -> 1 attrpath: python311Packages.ptyprocess 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/7khxvjhw0y2fdqlz2dz799dxkwzfys1x-packages.json.drv building '/nix/store/7khxvjhw0y2fdqlz2dz799dxkwzfys1x-packages.json.drv'... Going to be running update for following packages: - python3.11-ptyprocess-0.7.0 Press Enter key to continue... Running update for: - python3.11-ptyprocess-0.7.0: UPDATING ... - python3.11-ptyprocess-0.7.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.ptyprocess 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.devtools, using log file: /var/log/nixpkgs-update/python311Packages.devtools/2024-03-21.log python311Packages.devtools 0 -> 1 attrpath: python311Packages.devtools 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/7adkihdfdnjgg9h7g7ph6fklpsrdxlxv-packages.json.drv building '/nix/store/7adkihdfdnjgg9h7g7ph6fklpsrdxlxv-packages.json.drv'... Going to be running update for following packages: - python3.11-devtools-0.12.2 Press Enter key to continue... Running update for: - python3.11-devtools-0.12.2: UPDATING ... - python3.11-devtools-0.12.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.devtools 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 unixODBCDrivers.mysql, using log file: /var/log/nixpkgs-update/unixODBCDrivers.mysql/2024-03-21.log unixODBCDrivers.mysql 5.3.6 -> 8.0.36 https://repology.org/project/mysql-connector-odbc/versions attrpath: unixODBCDrivers.mysql Checking auto update branch... No auto update branch exists Old version 5.3.6" 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.mysql 5.3.6 -> 8.0.36 https://repology.org/project/mysql-connector-odbc/versions [options] github_user: r-ryantm, pull_request: YES, batch_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.mixpanel, using log file: /var/log/nixpkgs-update/python311Packages.mixpanel/2024-03-21.log python311Packages.mixpanel 0 -> 1 attrpath: python311Packages.mixpanel 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/khy1hiid4vivdsz0lvgab47i3wy2cipv-packages.json.drv building '/nix/store/khy1hiid4vivdsz0lvgab47i3wy2cipv-packages.json.drv'... Going to be running update for following packages: - python3.11-mixpanel-4.10.1 Press Enter key to continue... Running update for: - python3.11-mixpanel-4.10.1: UPDATING ... - python3.11-mixpanel-4.10.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.mixpanel 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.MethCP, using log file: /var/log/nixpkgs-update/rPackages.MethCP/2024-03-21.log rPackages.MethCP 1.11.0 -> 1.13.0 https://repology.org/project/r:methcp/versions attrpath: rPackages.MethCP Checking auto update branch... No auto update branch exists Old version 1.11.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.MethCP 1.11.0 -> 1.13.0 https://repology.org/project/r:methcp/versions [options] github_user: r-ryantm, pull_request: YES, batch_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-terminal, using log file: /var/log/nixpkgs-update/gnome.gnome-terminal/2024-03-21.log gnome.gnome-terminal 0 -> 1 attrpath: gnome.gnome-terminal Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome.gnome-terminal 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.nbtlib, using log file: /var/log/nixpkgs-update/python311Packages.nbtlib/2024-03-21.log python311Packages.nbtlib 0 -> 1 attrpath: python311Packages.nbtlib 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/i068idngrryz5p0l9s2q3cdn1hw5yjlv-packages.json.drv building '/nix/store/i068idngrryz5p0l9s2q3cdn1hw5yjlv-packages.json.drv'... Going to be running update for following packages: - python3.11-nbtlib-2.0.4 Press Enter key to continue... Running update for: - python3.11-nbtlib-2.0.4: UPDATING ... - python3.11-nbtlib-2.0.4: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.nbtlib 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.remarshal, using log file: /var/log/nixpkgs-update/python311Packages.remarshal/2024-03-21.log python311Packages.remarshal 0 -> 1 attrpath: python311Packages.remarshal 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/80051ylhlgmzg0my7pa4rsm47lkn9gl4-packages.json.drv building '/nix/store/80051ylhlgmzg0my7pa4rsm47lkn9gl4-packages.json.drv'... Going to be running update for following packages: - python3.11-remarshal-0.17.1 Press Enter key to continue... Running update for: - python3.11-remarshal-0.17.1: UPDATING ... - python3.11-remarshal-0.17.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.remarshal 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 tartube, using log file: /var/log/nixpkgs-update/tartube/2024-03-21.log tartube 0 -> 1 attrpath: tartube 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/zpg735x6yfmcbr4qdyjdqh4iphzby2dg-packages.json.drv building '/nix/store/zpg735x6yfmcbr4qdyjdqh4iphzby2dg-packages.json.drv'... Going to be running update for following packages: - tartube-2.5.0 Press Enter key to continue... Running update for: - tartube-2.5.0: UPDATING ... - tartube-2.5.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update tartube 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.batinfo, using log file: /var/log/nixpkgs-update/python311Packages.batinfo/2024-03-21.log python311Packages.batinfo 0 -> 1 attrpath: python311Packages.batinfo 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/093f5a3rk9g1lzg0zpyz4lqm5hrycgzm-packages.json.drv building '/nix/store/093f5a3rk9g1lzg0zpyz4lqm5hrycgzm-packages.json.drv'... Going to be running update for following packages: - python3.11-batinfo-0.4.2 Press Enter key to continue... Running update for: - python3.11-batinfo-0.4.2: UPDATING ... - python3.11-batinfo-0.4.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.batinfo 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.isoduration, using log file: /var/log/nixpkgs-update/python311Packages.isoduration/2024-03-21.log python311Packages.isoduration 0 -> 1 attrpath: python311Packages.isoduration 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/7qdgdpm097p2miyxjmqrg9szx325wm3z-packages.json.drv building '/nix/store/7qdgdpm097p2miyxjmqrg9szx325wm3z-packages.json.drv'... Going to be running update for following packages: - python3.11-isoduration-20.11.0 Press Enter key to continue... Running update for: - python3.11-isoduration-20.11.0: UPDATING ... - python3.11-isoduration-20.11.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.isoduration 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.pyhaversion, using log file: /var/log/nixpkgs-update/python311Packages.pyhaversion/2024-03-21.log python311Packages.pyhaversion 0 -> 1 attrpath: python311Packages.pyhaversion 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/nh1v7636lcl2hdh90zx2l7099vi6liwr-packages.json.drv building '/nix/store/nh1v7636lcl2hdh90zx2l7099vi6liwr-packages.json.drv'... Going to be running update for following packages: - python3.11-pyhaversion-23.1.0 Press Enter key to continue... Running update for: - python3.11-pyhaversion-23.1.0: UPDATING ... - python3.11-pyhaversion-23.1.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pyhaversion 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.versus, using log file: /var/log/nixpkgs-update/rPackages.versus/2024-03-21.log rPackages.versus 0.2.1 -> 0.3.0 https://repology.org/project/r:versus/versions attrpath: rPackages.versus 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.versus 0.2.1 -> 0.3.0 https://repology.org/project/r:versus/versions [options] github_user: r-ryantm, pull_request: YES, batch_update: YES, calculate_outpaths: YES, cve_report: NO, nixpkgs-review: YES, nixpkgs_dir: "/var/cache/nixpkgs-update/worker/nixpkgs", use attrpath: NO For attrpath teos-watchtower-plugin, using log file: /var/log/nixpkgs-update/teos-watchtower-plugin/2024-03-21.log teos-watchtower-plugin 0 -> 1 attrpath: teos-watchtower-plugin 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/cv9bhv2jrc29xz1cabx23rq87wjqbsif-packages.json.drv building '/nix/store/cv9bhv2jrc29xz1cabx23rq87wjqbsif-packages.json.drv'... Going to be running update for following packages: - teos-watchtower-plugin-0.2.0 Press Enter key to continue... Running update for: - teos-watchtower-plugin-0.2.0: UPDATING ... - teos-watchtower-plugin-0.2.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update teos-watchtower-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 gnome.gnome-mahjongg, using log file: /var/log/nixpkgs-update/gnome.gnome-mahjongg/2024-03-21.log gnome.gnome-mahjongg 0 -> 1 attrpath: gnome.gnome-mahjongg Checking auto update branch... Do not update GNOME during a release cycle [result] Failed to update gnome.gnome-mahjongg 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.pynobo, using log file: /var/log/nixpkgs-update/python311Packages.pynobo/2024-03-21.log python311Packages.pynobo 0 -> 1 attrpath: python311Packages.pynobo 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/nrq1qzhpmj4s0jbsk40kv3mxx1v7fbsz-packages.json.drv building '/nix/store/nrq1qzhpmj4s0jbsk40kv3mxx1v7fbsz-packages.json.drv'... Going to be running update for following packages: - python3.11-pynobo-1.7.0 Press Enter key to continue... Running update for: - python3.11-pynobo-1.7.0: UPDATING ... - python3.11-pynobo-1.7.0: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pynobo 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.pytransportnsw, using log file: /var/log/nixpkgs-update/python311Packages.pytransportnsw/2024-03-21.log python311Packages.pytransportnsw 0 -> 1 attrpath: python311Packages.pytransportnsw 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/yh8amfgwyrvdx2wvl48f4wkbq4ikw59a-packages.json.drv building '/nix/store/yh8amfgwyrvdx2wvl48f4wkbq4ikw59a-packages.json.drv'... Going to be running update for following packages: - python3.11-pytransportnsw-0.1.1 Press Enter key to continue... Running update for: - python3.11-pytransportnsw-0.1.1: UPDATING ... - python3.11-pytransportnsw-0.1.1: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.pytransportnsw 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 whitesur-kde, using log file: /var/log/nixpkgs-update/whitesur-kde/2024-03-21.log whitesur-kde 0 -> 1 attrpath: whitesur-kde 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/f1a5mhln0smw6qwdlip88l739ljr2fjf-packages.json.drv building '/nix/store/f1a5mhln0smw6qwdlip88l739ljr2fjf-packages.json.drv'... Going to be running update for following packages: - whitesur-kde-unstable-2023-10-06 Press Enter key to continue... Running update for: - whitesur-kde-unstable-2023-10-06: UPDATING ... - whitesur-kde-unstable-2023-10-06: ERROR --- SHOWING ERROR LOG FOR whitesur-kde-unstable-2023-10-06 ---------------------- + 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=whitesur-kde-unstable-2023-10-06 + [[ -n '' ]] + pname=whitesur-kde + [[ -n '' ]] + version=unstable-2023-10-06 + [[ -n '' ]] + attr_path=whitesur-kde + echo '# whitesur-kde-unstable-2023-10-06' ++ sh -c '/nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/list-git-tags --pname=whitesur-kde --attr-path=whitesur-kde --file="update-git-commits.txt"' + tags=2022-05-01 + for tag in $tags + echo '# found whitesur-kde version: 2022-05-01' + '[' -n '' ']' ++ echo 2022-05-01 ++ /nix/store/nk45h8dy9zlx4d0b9ghf5xnj9pypyqgh-gnugrep-3.11/bin/grep '^[0-9]' + tags=2022-05-01 ++ echo 2022-05-01 ++ /nix/store/43dnc4h7x0p8ybaq38aaxkhy722kzrx2-coreutils-9.4/bin/sort --reverse --version-sort + tags=2022-05-01 + for latest_tag in $tags + version_is_ignored 2022-05-01 + local tag=2022-05-01 + '[' -n '' ']' + version_is_unstable 2022-05-01 + local tag=2022-05-01 + local enforce= + '[' -n '' -o -n '' ']' + '[' -n '' -o -n '' ']' + return 1 + version_is_unstable 2022-05-01 enforce + local tag=2022-05-01 + local enforce=enforce + '[' -n '' -o -n enforce ']' ++ echo 2022-05-01 ++ /nix/store/kqb7yncgd6a17nlgbixhcvcwync0nqg0-gnused-4.9/bin/sed -rne 's,^[0-9]+\.([0-9]+).*,\1,p' + local minor= + '[' 0 -eq 1 ']' + '[' -n '' -o -n enforce ']' ++ echo 2022-05-01 ++ /nix/store/kqb7yncgd6a17nlgbixhcvcwync0nqg0-gnused-4.9/bin/sed -rne 's,^[0-9]+\.[0-9]+\.([0-9]+).*$,\1,p' + local patchlevel= + (( patchlevel >= 90 )) + return 1 + break + '[' -n 2022-05-01 ']' + '[' unstable-2023-10-06 '!=' 2022-05-01 ']' ++ EDITOR=echo ++ /nix/store/cydbsmqkxk30didm1rlz8ffk5wfa9gva-nix-2.18.2/bin/nix edit --extra-experimental-features nix-command -f. whitesur-kde + pfile=/var/cache/nixpkgs-update/worker/worktree/whitesur-kde/pkgs/data/themes/whitesur-kde/default.nix + echo ' git add /var/cache/nixpkgs-update/worker/worktree/whitesur-kde/pkgs/data/themes/whitesur-kde/default.nix ' + echo ' git commit -m '\''whitesur-kde: unstable-2023-10-06 -> 2022-05-01'\''' + /nix/store/wdzhcgrzbnd94x1arrz3188qvxihj422-common-updater-scripts/bin/update-source-version --print-changes whitesur-kde 2022-05-01 update-source-version: error: Both the old and new source hashes of 'whitesur-kde.src' were equivalent. Please fix the package's source URL to be dependent on '${version}'! --- SHOWING ERROR LOG FOR whitesur-kde-unstable-2023-10-06 ---------------------- The update script for whitesur-kde-unstable-2023-10-06 failed with exit code 1 [result] Failed to update whitesur-kde 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.orange3, using log file: /var/log/nixpkgs-update/python311Packages.orange3/2024-03-21.log python311Packages.orange3 0 -> 1 attrpath: python311Packages.orange3 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/vqwy9yakq9v4qqhv9r3sdlslab1gbvij-packages.json.drv building '/nix/store/vqwy9yakq9v4qqhv9r3sdlslab1gbvij-packages.json.drv'... Going to be running update for following packages: - python3.11-orange3-3.36.2 Press Enter key to continue... Running update for: - python3.11-orange3-3.36.2: UPDATING ... - python3.11-orange3-3.36.2: DONE. Packages updated! The diff was empty after rewrites. [result] Failed to update python311Packages.orange3 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 vkquake, using log file: /var/log/nixpkgs-update/vkquake/2024-03-21.log vkquake 1.22.3 -> 1.30.1 https://repology.org/project/vkquake/versions attrpath: vkquake 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/quakespasm/vulkan.nix b/pkgs/games/quakespasm/vulkan.nix index 81c49e5a017c..d3525b1dd63a 100644 --- a/pkgs/games/quakespasm/vulkan.nix +++ b/pkgs/games/quakespasm/vulkan.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { pname = "vkquake"; - version = "1.22.3"; + version = "1.30.1"; src = fetchFromGitHub { owner = "Novum"; repo = "vkQuake"; rev = version; - sha256 = "sha256-+8DU1QT3Lgqf1AIReVnXQ2Lq6R6eBb8VjdkJfAn/Rtc="; + sha256 = "sha256-l+Qhwhc7rFjrWSBGDFdIup+Pbk3nRYBR/YZCk4UiKI0="; }; sourceRoot = "${src.name}/Quake";