-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new release request #134
Comments
if aint broke , dont fix it |
Raising this again… some distro packaging happens in response to a new release. There has been new functionality (e.g. #117) added to |
Vote it. The steam otp cannot be used in the release version. |
@tadfisher No release since almost 4 years 😢 Please consider cutting a new release. |
For anyone using Nix, I have overridden the package like so: pkgs.pass.withExtensions (exts:
with exts; [
(pass-otp.overrideAttrs (oldAttrs:
let
perl-pass-otp = with pkgs.perlPackages;
buildPerlPackage {
pname = "Pass-OTP";
version = "1.5";
src = pkgs.fetchurl {
url =
"mirror://cpan/authors/id/J/JB/JBAIER/Pass-OTP-1.5.tar.gz";
sha256 = "GujxwmvfSXMAsX7LRiI7Q9YgsolIToeFRYEVAYFJeaM=";
};
buildInputs =
[ ConvertBase32 DigestHMAC DigestSHA3 MathBigInt ];
doCheck = false;
};
in {
version = "1.2.0.r29.a364d2a";
src = pkgs.fetchFromGitHub {
owner = "tadfisher";
repo = "pass-otp";
rev = "a364d2a71ad24158a009c266102ce0d91149de67";
sha256 = "q9m6vkn+IQyR/ZhtzvZii4uMZm1XVeBjJqlScaPsL34=";
};
buildInputs = [ perl-pass-otp ];
patchPhase = ''
sed -i -e 's|OATH=\$(which oathtool)|OATH=${perl-pass-otp}/bin/oathtool|' otp.bash
sed -i -e 's|OTPTOOL=\$(which otptool)|OTPTOOL=${perl-pass-otp}/bin/otptool|' otp.bash
'';
}))
]) |
It's been 4 years since an actual release, but there are new features. tadfisher/pass-otp#134
@tadfisher Debian freeze is approaching, would be nice to have the new feature in the next stable version... |
@tadfisher it's been nearly 5 years since the last release. Please consider cutting a new release. 🙏 |
👋 it looks like there is no release in the past two years, I wonder if there would be any new release plan in the near future. Thanks!
The text was updated successfully, but these errors were encountered: