diff options
author | lassulus <lass@blue.r> | 2018-10-07 11:41:44 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-10-07 11:41:44 +0200 |
commit | ee07881154f247d792e9121f3eb1c1b1275cd938 (patch) | |
tree | f048764fe696907d23c680cff44b695fccb27fb8 /krebs/5pkgs/simple/pass-otp/default.nix | |
parent | ea82a695cf7895bd607cec4b5b80f3f90e736ce1 (diff) | |
parent | 5641a6ad03baccf299be6574193a37dd16e17137 (diff) |
Merge remote-tracking branch 'ni/master' into 18.09
Diffstat (limited to 'krebs/5pkgs/simple/pass-otp/default.nix')
-rw-r--r-- | krebs/5pkgs/simple/pass-otp/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/krebs/5pkgs/simple/pass-otp/default.nix b/krebs/5pkgs/simple/pass-otp/default.nix deleted file mode 100644 index 33411180a..000000000 --- a/krebs/5pkgs/simple/pass-otp/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ stdenv, fetchFromGitHub, oathToolkit }: -stdenv.mkDerivation rec { - name = "pass-otp-${version}"; - version = "1.1.0"; - - src = fetchFromGitHub { - owner = "tadfisher"; - repo = "pass-otp"; - rev = "v${version}"; - sha256 = "1cgj4zc8fq88n3h6c0vkv9i5al785mdprpgpbv5m22dz9p1wqvbb"; - }; - - buildInputs = [ 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 tadfisher ]; - platforms = platforms.unix; - }; -} |