summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam_ccreds
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2019-11-16 01:41:23 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2019-11-16 01:41:23 +0100
commit9367367dfd6e0373c04650e9893deed426d48aa2 (patch)
tree7ae2c2dbeeb145848e125d30d3195fcce7322aad /pkgs/os-specific/linux/pam_ccreds
parenta27a14da2a592402ecb89abc040700b2cf90d3c7 (diff)
downloadnixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.gz
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.bz2
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.lz
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.xz
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.zst
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.zip
Treewide: fix URL permanent redirects
Permanent redirects on homepages and/or source URLs
as reported by Repology
Diffstat (limited to 'pkgs/os-specific/linux/pam_ccreds')
-rw-r--r--pkgs/os-specific/linux/pam_ccreds/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/pam_ccreds/default.nix b/pkgs/os-specific/linux/pam_ccreds/default.nix
index 8293ac0a830..012750c22ad 100644
--- a/pkgs/os-specific/linux/pam_ccreds/default.nix
+++ b/pkgs/os-specific/linux/pam_ccreds/default.nix
@@ -1,10 +1,10 @@
 {stdenv, fetchurl, pam, openssl, db}:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   name = "pam_ccreds-10";
 
   src = fetchurl {
-    url = "http://www.padl.com/download/pam_ccreds.tgz";
+    url = "https://www.padl.com/download/${name}.tar.gz";
     sha256 = "1h7zyg1b1h69civyvrj95w22dg0y7lgw3hq4gqkdcg35w1y76fhz";
   };
   patchPhase = ''
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
   buildInputs = [ pam openssl db ];
 
   meta = with stdenv.lib; {
-    homepage = http://www.padl.com/OSS/pam_ccreds.html;
+    homepage = https://www.padl.com/OSS/pam_ccreds.html;
     description = "PAM module to locally authenticate using an enterprise identity when the network is unavailable";
     license = licenses.gpl2;
     platforms = platforms.linux;