Skip to content

Commit

Permalink
Merge pull request #36308 from tadfisher/pass-otp
Browse files Browse the repository at this point in the history
pass-otp: 1.0.0 -> 1.1.0
  • Loading branch information
Mic92 committed Mar 4, 2018
2 parents 0be67e2 + 20476cd commit 691307e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/tools/security/pass-otp/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{ stdenv, pass, fetchFromGitHub, oathToolkit }:
stdenv.mkDerivation {
name = "pass-otp";
stdenv.mkDerivation rec {
name = "pass-otp-${version}";
version = "1.1.0";

src = fetchFromGitHub {
owner = "tadfisher";
repo = "pass-otp";
rev = "f2feb3082324a91089782af9b7fbb71d34aa213d";
sha256 = "0iklvcfgw1320dggdr02lq3bc7xvnd2934l1w9kkjpbsfmhs955c";
rev = "v${version}";
sha256 = "1cgj4zc8fq88n3h6c0vkv9i5al785mdprpgpbv5m22dz9p1wqvbb";
};

buildInputs = [ pass oathToolkit ];
Expand All @@ -23,7 +24,7 @@ stdenv.mkDerivation {
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 ];
maintainers = with maintainers; [ jwiegley tadfisher ];
platforms = platforms.unix;
};
}

0 comments on commit 691307e

Please sign in to comment.