mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
keepass-otpkeyprov: init at 2.6
This commit is contained in:
parent
561b40dacb
commit
8177aa48c3
2 changed files with 34 additions and 0 deletions
|
@ -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 ]; }
|
|
@ -18423,6 +18423,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 { };
|
||||
|
|
Loading…
Reference in a new issue