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: 1aed56ad5ee8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b90bc0b2e334
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 10, 2018

  1. 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
    r-ryantm authored and c0bw3b committed Nov 10, 2018
    Copy the full SHA
    b90bc0b View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/os-specific/linux/autofs/default.nix
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/autofs/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};