nixpkgs/pkgs/os-specific/linux/google-authenticator/default.nix

32 lines
942 B
Nix
Raw Normal View History

2016-12-29 09:13:27 +00:00
{ stdenv, lib, fetchurl, autoreconfHook, pam, qrencode }:
2013-03-30 19:45:38 +00:00
stdenv.mkDerivation rec {
2016-12-29 09:13:27 +00:00
name = "google-authenticator-libpam-${version}";
version = "1.03";
2013-03-30 19:45:38 +00:00
src = fetchurl {
2016-12-29 09:13:27 +00:00
url = "https://github.com/google/google-authenticator-libpam/archive/${version}.tar.gz";
sha256 = "0wb95z5v1w4sk0p7y9pbn4v95w9hrbf80vw9k2z2sgs0156ljkb7";
2013-03-30 19:45:38 +00:00
};
2016-12-29 09:13:27 +00:00
buildInputs = [ autoreconfHook pam ];
2013-03-30 19:45:38 +00:00
preConfigure = ''
2016-12-29 09:13:27 +00:00
sed -i "s|libqrencode.so.3|${qrencode}/lib/libqrencode.so.3|" src/google-authenticator.c
'';
2013-03-30 19:45:38 +00:00
installPhase = ''
mkdir -p $out/bin $out/lib/security
2016-12-29 09:13:27 +00:00
cp ./.libs/pam_google_authenticator.so $out/lib/security
2013-03-30 19:45:38 +00:00
cp google-authenticator $out/bin
'';
2016-10-16 17:42:51 +01:00
meta = with lib; {
2016-12-29 09:13:27 +00:00
homepage = https://github.com/google/google-authenticator-libpam;
2013-03-30 19:45:38 +00:00
description = "Two-step verification, with pam module";
2016-10-16 17:42:51 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ aneeshusa ];
platforms = platforms.linux;
2013-03-30 19:45:38 +00:00
};
}