summary refs log tree commit diff
path: root/pkgs/tools/security/pass-otp/default.nix
blob: 327a9680f9809d20ee9f948c2461ff3d8673aa5b (plain) (blame)
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
{ stdenv, pass, fetchFromGitHub, oathToolkit }:
stdenv.mkDerivation {
  name = "pass-otp";

  src = fetchFromGitHub {
    owner = "tadfisher";
    repo = "pass-otp";
    rev = "f2feb3082324a91089782af9b7fbb71d34aa213d";
    sha256 = "0iklvcfgw1320dggdr02lq3bc7xvnd2934l1w9kkjpbsfmhs955c";
  };

  buildInputs = [ pass oathToolkit ];

  patchPhase = ''
    sed -i -e 's|OATH=\$(which oathtool)|OATH=${oathToolkit}/bin/oathtool|' otp.bash
  '';

  installPhase = ''
    make PREFIX=$out install
  '';

  meta = with stdenv.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; [ jwiegley ];
    platforms = platforms.unix;
  };
}