blob: 794b1e74af81450630132d466b7609a0af9fc013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{ lib
, stdenv
, oathToolkit
, bash
, expect
, git
, gnumake
, gnupg
, pass
, shellcheck
, which
}:
stdenv.mkDerivation {
pname = "pass-otp";
version = "unstable";
src = ./.;
buildInputs = [ oathToolkit ];
checkInputs = [
bash
expect
git
gnumake
gnupg
pass
shellcheck
which
];
dontBuild = true;
doCheck = true;
patchPhase = ''
sed -i -e 's|OATH=\$(which oathtool)|OATH=${oathToolkit}/bin/oathtool|' otp.bash
'';
checkPhase = ''
make check
'';
installFlags = [
"PREFIX=$(out)"
"BASHCOMPDIR=$(out)/share/bash-completions/completions"
];
meta = with lib; {
description = "A pass extension for managing one-time-password (OTP) tokens";
homepage = "https://github.com/tadfisher/pass-otp";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ tadfisher ];
platforms = platforms.unix;
};
}
|