mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
531e4b80c9
Only acts on one-line dependency lists.
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchurl, autoconf, automake, pkgconfig, libtool, pam, libHX, libxml2, pcre, perl, openssl, cryptsetup, utillinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pam_mount-2.15";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pam-mount/pam_mount/2.15/${name}.tar.xz";
|
|
sha256 = "091aq5zyc60wh21m1ryanjwknwxlaj9nvlswn5vjrmcdir5gnkm5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ autoconf automake libtool pam libHX utillinux libxml2 pcre perl openssl cryptsetup ];
|
|
|
|
patches = [ ./insert_utillinux_path_hooks.patch ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace src/mtcrypt.c --replace @@NIX_UTILLINUX@@ ${utillinux}/bin
|
|
sh autogen.sh --prefix=$out
|
|
'';
|
|
|
|
makeFlags = "DESTDIR=$(out)";
|
|
|
|
# Probably a hack, but using DESTDIR and PREFIX makes everything work!
|
|
postInstall = ''
|
|
mkdir -p $out
|
|
cp -r $out/$out/* $out
|
|
rm -r $out/nix
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://pam-mount.sourceforge.net/;
|
|
description = "PAM module to mount volumes for a user session";
|
|
maintainers = [ stdenv.lib.maintainers.tstrobel ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|