1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-27 16:11:58 +00:00

Merge pull request #57786 from Enteee/master

keepass-keepassotpkeyprov: init at 2.6
This commit is contained in:
Renaud 2019-11-03 16:59:05 +01:00 committed by GitHub
commit 36c6d76db4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 0 deletions

View file

@ -2030,6 +2030,12 @@
github = "ericnorris";
githubId = 1906605;
};
Enteee = {
email = "nix@duckpond.ch";
github = "Enteee";
githubid = 5493775;
name = "Ente";
};
enzime = {
email = "enzime@users.noreply.github.com";
github = "enzime";

View file

@ -0,0 +1,32 @@
{ stdenv, buildEnv, fetchzip, mono }:
let
version = "2.6";
drv = stdenv.mkDerivation {
pname = "otpkeyprov";
inherit version;
src = fetchzip {
url = "https://keepass.info/extensions/v2/otpkeyprov/OtpKeyProv-${version}.zip";
sha256 = "1p60k55v2sxnv1varmp0dgbsi2rhjg9kj19cf54mkc87nss5h1ki";
stripRoot = false;
};
meta = {
description = "OtpKeyProv is a key provider based on one-time passwords";
homepage = "https://keepass.info/plugins.html#otpkeyprov";
platforms = with stdenv.lib.platforms; linux;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.ente ];
};
pluginFilename = "OtpKeyProv.plgx";
installPhase = ''
mkdir -p $out/lib/dotnet/keepass/
cp $pluginFilename $out/lib/dotnet/keepass/$pluginFilename
'';
};
in
# Mono is required to compile plugin at runtime, after loading.
buildEnv { name = drv.name; paths = [ mono drv ]; }

View file

@ -18420,6 +18420,8 @@ in
keepass-keepassrpc = callPackage ../applications/misc/keepass-plugins/keepassrpc { };
keepass-otpkeyprov = callPackage ../applications/misc/keepass-plugins/otpkeyprov { };
exrdisplay = callPackage ../applications/graphics/exrdisplay { };
exrtools = callPackage ../applications/graphics/exrtools { };