Skip to content

Commit

Permalink
googleAuthenticator: 1.0 -> 1.03
Browse files Browse the repository at this point in the history
  • Loading branch information
aneeshusa authored and grahamc committed Dec 30, 2016
1 parent a94e5a8 commit 652a870
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pkgs/os-specific/linux/google-authenticator/default.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
{ stdenv, lib, fetchurl, pam, qrencode }:
{ stdenv, lib, fetchurl, autoreconfHook, pam, qrencode }:

stdenv.mkDerivation rec {
name = "google-authenticator-1.0";
name = "google-authenticator-libpam-${version}";
version = "1.03";

src = fetchurl {
url = "https://google-authenticator.googlecode.com/files/libpam-${name}-source.tar.bz2";
sha1 = "017b7d89989f1624e360abe02d6b27a6298d285d";
url = "https://github.com/google/google-authenticator-libpam/archive/${version}.tar.gz";
sha256 = "0wb95z5v1w4sk0p7y9pbn4v95w9hrbf80vw9k2z2sgs0156ljkb7";
};

buildInputs = [ pam ];
buildInputs = [ autoreconfHook pam ];

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 = ''
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
'';

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";
license = licenses.asl20;
maintainers = with maintainers; [ aneeshusa ];
Expand Down

0 comments on commit 652a870

Please sign in to comment.