Merge pull request #27002 from makefu/pkgs/gen-oath-safe/init
gen-oath-safe: init at 2017-01-23
This commit is contained in:
commit
a20dbcb88b
2 changed files with 43 additions and 0 deletions
41
pkgs/tools/security/gen-oath-safe/default.nix
Normal file
41
pkgs/tools/security/gen-oath-safe/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ coreutils, fetchFromGitHub, libcaca, makeWrapper, python, openssl, qrencode, stdenv, yubikey-manager }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gen-oath-safe-2017-01-23";
|
||||
src = fetchFromGitHub {
|
||||
owner = "mcepl";
|
||||
repo = "gen-oath-safe";
|
||||
rev = "fb53841";
|
||||
sha256 = "0018kqmhg0861r5xkbis2a1rx49gyn0dxcyj05wap5ms7zz69m0m";
|
||||
};
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
buildPhase = ":";
|
||||
|
||||
installPhase =
|
||||
let
|
||||
path = stdenv.lib.makeBinPath [
|
||||
coreutils
|
||||
libcaca.bin
|
||||
openssl.bin
|
||||
python
|
||||
qrencode
|
||||
yubikey-manager
|
||||
];
|
||||
in
|
||||
''
|
||||
mkdir -p $out/bin
|
||||
cp gen-oath-safe $out/bin/
|
||||
wrapProgram $out/bin/gen-oath-safe \
|
||||
--prefix PATH : ${path}
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/mcepl/gen-oath-safe;
|
||||
description = "Script for generating HOTP/TOTP keys (and QR code)";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.makefu ];
|
||||
};
|
||||
|
||||
}
|
|
@ -2039,6 +2039,8 @@ with pkgs;
|
|||
|
||||
gdmap = callPackage ../tools/system/gdmap { };
|
||||
|
||||
gen-oath-safe = callPackage ../tools/security/gen-oath-safe { };
|
||||
|
||||
genext2fs = callPackage ../tools/filesystems/genext2fs { };
|
||||
|
||||
gengetopt = callPackage ../development/tools/misc/gengetopt { };
|
||||
|
|
Loading…
Reference in a new issue