Merge pull request #36308 from tadfisher/pass-otp
pass-otp: 1.0.0 -> 1.1.0
This commit is contained in:
commit
691307e41b
|
@ -1,12 +1,13 @@
|
||||||
{ stdenv, pass, fetchFromGitHub, oathToolkit }:
|
{ stdenv, pass, fetchFromGitHub, oathToolkit }:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "pass-otp";
|
name = "pass-otp-${version}";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tadfisher";
|
owner = "tadfisher";
|
||||||
repo = "pass-otp";
|
repo = "pass-otp";
|
||||||
rev = "f2feb3082324a91089782af9b7fbb71d34aa213d";
|
rev = "v${version}";
|
||||||
sha256 = "0iklvcfgw1320dggdr02lq3bc7xvnd2934l1w9kkjpbsfmhs955c";
|
sha256 = "1cgj4zc8fq88n3h6c0vkv9i5al785mdprpgpbv5m22dz9p1wqvbb";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pass oathToolkit ];
|
buildInputs = [ pass oathToolkit ];
|
||||||
|
@ -23,7 +24,7 @@ stdenv.mkDerivation {
|
||||||
description = "A pass extension for managing one-time-password (OTP) tokens";
|
description = "A pass extension for managing one-time-password (OTP) tokens";
|
||||||
homepage = https://github.com/tadfisher/pass-otp;
|
homepage = https://github.com/tadfisher/pass-otp;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ jwiegley ];
|
maintainers = with maintainers; [ jwiegley tadfisher ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue