Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bbfd8e4f6f64
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: db8209385790
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 30, 2018

  1. stunnel: 5.45 -> 5.46

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/stunnel/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no invocation of /nix/store/9dvqa02pamz2wgzrpsjlzvf02qlmmabj-stunnel-5.46/bin/stunnel3 had a zero exit code or showed the expected version
    - Warning: no invocation of /nix/store/9dvqa02pamz2wgzrpsjlzvf02qlmmabj-stunnel-5.46/bin/stunnel had a zero exit code or showed the expected version
    - 0 of 2 passed binary check by having a zero exit code.
    - 0 of 2 passed binary check by having the new version present in output.
    - found 5.46 with grep in /nix/store/9dvqa02pamz2wgzrpsjlzvf02qlmmabj-stunnel-5.46
    - directory tree listing: https://gist.github.com/fa7d88d4b57706beacb1a6c4ca25a0ab
    - du listing: https://gist.github.com/1eb91f78f53c9d1e590c49e38c2869f3
    R. RyanTM authored and thoughtpolice committed May 30, 2018
    Copy the full SHA
    db82093 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/networking/stunnel/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/networking/stunnel/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "stunnel-${version}";
version = "5.45";
version = "5.46";

src = fetchurl {
url = "https://www.stunnel.org/downloads/${name}.tar.gz";
sha256 = "1qrfb418skdcm7b3v30ixng1ng907f4rfv54zvgz8jwakf1l90jl";
sha256 = "1iw4gap9ysag8iww2ik029scmdllk7jdzcpnnbj7hgbl526b9akn";
# please use the contents of "https://www.stunnel.org/downloads/${name}.tar.gz.sha256",
# not the output of `nix-prefetch-url`
};