Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {stdenv, fetchFromGitHub, autoconf, automake, libtool, pam, gnupg }:
- with stdenv.lib;
- stdenv.mkDerivation rec {
- pname = "pam-gnupg";
- version = "1.0";
- src = fetchFromGitHub {
- owner = "cruegge";
- repo = "pam-gnupg";
- rev = "fbd75b720877e4cf94e852ce7e2b811feb330bb5";
- sha256 = "0kqn6xb85jfmhvvbd2lasnci46p2pcwy0wq233za9h7xwfr49f7d";
- };
- preConfigure = ''
- configureFlagsArray+=("--with-moduledir=/lib/security")
- '';
- configurePhase = ''
- ./autogen.sh
- ./configure
- '';
- nativeBuildInputs = [ autoconf automake libtool pam gnupg ];
- }
Advertisement
Add Comment
Please, Sign In to add comment