Skip to content

Commit

Permalink
samba: fix broken tarball URLs
Browse files Browse the repository at this point in the history
Samba and cifs-utils source tarballs have been silently moved to
https://download.samba.org/ without redirects.
  • Loading branch information
ophestra committed Nov 29, 2024
1 parent abf234f commit cdc2e32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/by-name/ci/cifs-utils/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
version = "7.1";

src = fetchurl {
url = "mirror://samba/pub/linux-cifs/cifs-utils/${pname}-${version}.tar.bz2";
url = "https://download.samba.org/pub/linux-cifs/cifs-utils/${pname}-${version}.tar.bz2";
sha256 = "sha256-ohEj92pKajbJZTGJukkY6988/NP5CScwpH/zRQtbWyo=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/samba/4.x.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: {
version = "4.20.4";

src = fetchurl {
url = "mirror://samba/pub/samba/stable/samba-${finalAttrs.version}.tar.gz";
url = "https://download.samba.org/pub/samba/stable/samba-${finalAttrs.version}.tar.gz";
hash = "sha256-OpLpfq6zRbazIjL1A+FNNPA6eqZMRR/owlihG72pCOU=";
};

Expand Down

0 comments on commit cdc2e32

Please sign in to comment.