summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-11-10 10:55:14 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2018-11-10 19:55:14 +0100
commitb90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7 (patch)
tree809691288597e30ef1a249ba206006ad8dcf1be4
parent1aed56ad5ee8fa7a50303d9bda03ea849e98eb59 (diff)
downloadnixpkgs-b90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7.tar
nixpkgs-b90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7.tar.gz
nixpkgs-b90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7.tar.bz2
nixpkgs-b90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7.tar.lz
nixpkgs-b90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7.tar.xz
nixpkgs-b90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7.tar.zst
nixpkgs-b90bc0b2e3343e5c609163e3ae8c185dfc8ff1c7.zip
autofs5: 5.1.4 -> 5.1.5 (#50184)
* autofs5: 5.1.4 -> 5.1.5

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/autofs/versions

* autofs5: refresh meta
-rw-r--r--pkgs/os-specific/linux/autofs/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/autofs/default.nix b/pkgs/os-specific/linux/autofs/default.nix
index 60ccad04eea..38e2fa9bd34 100644
--- a/pkgs/os-specific/linux/autofs/default.nix
+++ b/pkgs/os-specific/linux/autofs/default.nix
@@ -2,14 +2,14 @@
 , libxml2, kerberos, kmod, openldap, sssd, cyrus_sasl, openssl }:
 
 let
-  version = "5.1.4";
+  version = "5.1.5";
   name = "autofs-${version}";
 in stdenv.mkDerivation {
   inherit name;
 
   src = fetchurl {
     url = "mirror://kernel/linux/daemons/autofs/v5/${name}.tar.xz";
-    sha256 = "08hpphawzcdibwbhw0r3y7hnfczlazpp90sf3bz2imgza7p31klg";
+    sha256 = "1nn0z60f49zchpv8yw67fk8hmbjszpnczs0bj2ql2vgxwbcxmbr3";
   };
 
   preConfigure = ''
@@ -40,8 +40,8 @@ in stdenv.mkDerivation {
 
   meta = {
     description = "Kernel-based automounter";
-    homepage = http://www.linux-consulting.com/Amd_AutoFS/autofs.html;
-    license = stdenv.lib.licenses.gpl2;
+    homepage = https://www.kernel.org/pub/linux/daemons/autofs/;
+    license = stdenv.lib.licenses.gpl2Plus;
     executables = [ "automount" ];
     platforms = stdenv.lib.platforms.linux;
   };