squid 6.8 -> 6.9 https://repology.org/project/squid/versions attrpath: squid 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/squid/default.nix b/pkgs/servers/squid/default.nix index 792c97ca6b5e..53d8a03c1504 100644 --- a/pkgs/servers/squid/default.nix +++ b/pkgs/servers/squid/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "squid"; - version = "6.8"; + version = "6.9"; src = fetchurl { url = "http://www.squid-cache.org/Versions/v6/${finalAttrs.pname}-${finalAttrs.version}.tar.xz"; - hash = "sha256-EcxWULUYCdmUg8z64kdEouUc0WGZ9f8MkX6E/OaVhw8="; + hash = "sha256-GtctRuHLVW6VYSFPD7GBrbh8fEeSfvabyKzWigP2GII="; }; nativeBuildInputs = [ pkg-config ]; Received ExitFailure 1 when running Raw command: /nix/store/03a4f9rij2z4mmwprlbip3mrnnfaw0yd-nix-2.18.2/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A squid Received ExitFailure 1 when running Raw command: /nix/store/03a4f9rij2z4mmwprlbip3mrnnfaw0yd-nix-2.18.2/bin/nix --extra-experimental-features nix-command log -f . squid Standard output: error: … in the condition of the assert statement at /var/cache/nixpkgs-update/worker/worktree/squid/lib/customisation.nix:365:17: 364| in commonAttrs // { 365| drvPath = assert condition; drv.drvPath; | ^ 366| outPath = assert condition; drv.outPath; … while evaluating the attribute 'handled' at /var/cache/nixpkgs-update/worker/worktree/squid/pkgs/stdenv/generic/check-meta.nix:507:7: 506| # or, alternatively, just output a warning message. 507| handled = | ^ 508| ( (stack trace truncated; use '--show-trace' to show the full trace) error: Package ‘squid-6.9’ in /var/cache/nixpkgs-update/worker/worktree/squid/pkgs/servers/squid/default.nix:53 is marked as insecure, refusing to evaluate. Known issues: - Squid has multiple unresolved security vulnerabilities, for more information see https://megamansec.github.io/Squid-Security-Audit/ 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 ‘squid-6.9’ to `nixpkgs.config.permittedInsecurePackages` in the configuration.nix, like so: { nixpkgs.config.permittedInsecurePackages = [ "squid-6.9" ]; } c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add ‘squid-6.9’ to `permittedInsecurePackages` in ~/.config/nixpkgs/config.nix, like so: { permittedInsecurePackages = [ "squid-6.9" ]; }