pam_mount: 2.17 -> 2.19

This commit is contained in:
Netali
2022-07-15 23:42:29 +02:00
committed by Bjørn Forsman
parent 758d9a06e4
commit fc1cc41cf8
+5 -5
View File
@@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, libtool, pam, libHX, libxml2, pcre, perl, openssl, cryptsetup, util-linux }:
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, libtool, pam, libHX, libxml2, pcre2, perl, openssl, cryptsetup, util-linux }:
stdenv.mkDerivation rec {
pname = "pam_mount";
version = "2.17";
version = "2.19";
src = fetchurl {
url = "mirror://sourceforge/pam-mount/pam_mount/${pname}-${version}.tar.xz";
sha256 = "1q2n6a2ah6nghdn8i6ad2wj247njwb5nx48cggxknaa6lqxylidy";
sha256 = "02m6w04xhgv2yx69yxph8giw0sp39s9lvvlffslyna46fnr64qvb";
};
patches = [
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook libtool pkg-config ];
buildInputs = [ pam libHX util-linux libxml2 pcre perl openssl cryptsetup ];
buildInputs = [ pam libHX util-linux libxml2 pcre2 perl openssl cryptsetup ];
enableParallelBuilding = true;
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
description = "PAM module to mount volumes for a user session";
homepage = "https://pam-mount.sourceforge.net/";
license = with licenses; [ gpl2 gpl3 lgpl21 lgpl3 ];
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ netali ];
platforms = platforms.linux;
};
}