googleAuthenticator: 1.0 -> 1.03

This commit is contained in:
Aneesh Agrawal 2016-12-29 04:13:27 -05:00 committed by Graham Christensen
parent a94e5a87f9
commit 652a87018b
No known key found for this signature in database
GPG Key ID: 06121D366FE9435C

View File

@ -1,27 +1,28 @@
{ stdenv, lib, fetchurl, pam, qrencode }: { stdenv, lib, fetchurl, autoreconfHook, pam, qrencode }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "google-authenticator-1.0"; name = "google-authenticator-libpam-${version}";
version = "1.03";
src = fetchurl { src = fetchurl {
url = "https://google-authenticator.googlecode.com/files/libpam-${name}-source.tar.bz2"; url = "https://github.com/google/google-authenticator-libpam/archive/${version}.tar.gz";
sha1 = "017b7d89989f1624e360abe02d6b27a6298d285d"; sha256 = "0wb95z5v1w4sk0p7y9pbn4v95w9hrbf80vw9k2z2sgs0156ljkb7";
}; };
buildInputs = [ pam ]; buildInputs = [ autoreconfHook pam ];
preConfigure = '' preConfigure = ''
sed -i 's|libqrencode.so.3|${qrencode}/lib/libqrencode.so.3|' google-authenticator.c sed -i "s|libqrencode.so.3|${qrencode}/lib/libqrencode.so.3|" src/google-authenticator.c
''; '';
installPhase = '' installPhase = ''
mkdir -p $out/bin $out/lib/security mkdir -p $out/bin $out/lib/security
cp pam_google_authenticator.so $out/lib/security cp ./.libs/pam_google_authenticator.so $out/lib/security
cp google-authenticator $out/bin cp google-authenticator $out/bin
''; '';
meta = with lib; { meta = with lib; {
homepage = https://code.google.com/p/google-authenticator/; homepage = https://github.com/google/google-authenticator-libpam;
description = "Two-step verification, with pam module"; description = "Two-step verification, with pam module";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ aneeshusa ]; maintainers = with maintainers; [ aneeshusa ];