mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
Merge pull request #19603 from aneeshusa/adopt-google-authenticator
[WIP] Adopt google authenticator
This commit is contained in:
commit
756a6949f8
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, pam, qrencode }:
|
||||
{ stdenv, lib, fetchurl, pam, qrencode }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "google-authenticator-1.0";
|
||||
|
@ -20,10 +20,11 @@ stdenv.mkDerivation rec {
|
|||
cp google-authenticator $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
homepage = https://code.google.com/p/google-authenticator/;
|
||||
description = "Two-step verification, with pam module";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ aneeshusa ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -51,6 +51,7 @@ doNotDisplayTwice rec {
|
|||
fuse_zip = fuse-zip; # added 2016-04-27
|
||||
gettextWithExpat = gettext; # 2016-02-19
|
||||
git-hub = gitAndTools.git-hub; # added 2016-04-29
|
||||
googleAuthenticator = google-authenticator # added 2016-10-16
|
||||
grantlee5 = qt5.grantlee; # added 2015-12-19
|
||||
gupnptools = gupnp-tools; # added 2015-12-19
|
||||
gnustep-make = gnustep.make; # added 2016-7-6
|
||||
|
|
|
@ -1876,7 +1876,7 @@ in
|
|||
# rename to upower-notify?
|
||||
go-upower-notify = callPackage ../tools/misc/upower-notify { };
|
||||
|
||||
googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { };
|
||||
google-authenticator = callPackage ../os-specific/linux/google-authenticator { };
|
||||
|
||||
google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue