blob: 3fb9ad2925e3248470eb1cbf7ff774ba0b8571b0 (
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
56
57
58
|
{
description = "A pass extension for managing one-time-password (OTP) tokens";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
defaultPackage = with pkgs; 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 SHELL=$SHELL 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.gpl3;
maintainers = with maintainers; [ tadfisher ];
platforms = platforms.unix;
};
};
checks.pass-otp = self.defaultPackage.${system};
}
);
}
|