summary refs log tree commit diff
path: root/pkgs/os-specific/linux/google-authenticator
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2016-10-16 12:42:51 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2016-10-16 12:42:51 -0400
commit31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f (patch)
treeef83fa8376d6f8b6a81434d9736df29b2957426c /pkgs/os-specific/linux/google-authenticator
parentf87e998c513c9e7c04b4ba16bec03107d53eac22 (diff)
downloadnixpkgs-31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f.tar
nixpkgs-31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f.tar.gz
nixpkgs-31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f.tar.bz2
nixpkgs-31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f.tar.lz
nixpkgs-31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f.tar.xz
nixpkgs-31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f.tar.zst
nixpkgs-31b4fcd0b7438cb2d69537f0fb1ed3ec85fd6b0f.zip
google-authenticator: adopt package
Diffstat (limited to 'pkgs/os-specific/linux/google-authenticator')
-rw-r--r--pkgs/os-specific/linux/google-authenticator/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/google-authenticator/default.nix b/pkgs/os-specific/linux/google-authenticator/default.nix
index 3402f7a7013..0e5f6208382 100644
--- a/pkgs/os-specific/linux/google-authenticator/default.nix
+++ b/pkgs/os-specific/linux/google-authenticator/default.nix
@@ -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;
   };
 }