2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, buildEnv, fetchurl, mono }:
|
2018-02-21 20:48:38 +01:00
|
|
|
|
|
|
|
let
|
2024-01-12 20:18:18 +01:00
|
|
|
version = "1.16.0";
|
2018-02-21 20:48:38 +01:00
|
|
|
drv = stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "keepassrpc";
|
|
|
|
inherit version;
|
2018-02-21 20:48:38 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/kee-org/keepassrpc/releases/download/v${version}/KeePassRPC.plgx";
|
2024-01-12 20:18:18 +01:00
|
|
|
hash = "sha256-p5dYluCrXAKhBhlm6sQ3QQE3gLMJzEZsHXwGnVeXFos=";
|
2018-02-21 20:48:38 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-02-21 20:48:38 +01:00
|
|
|
description = "The KeePassRPC plugin that needs to be installed inside KeePass in order for Kee to be able to connect your browser to your passwords";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/kee-org/keepassrpc";
|
2018-02-21 20:48:38 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
license = licenses.gpl2;
|
2018-11-09 22:29:48 +01:00
|
|
|
maintainers = with maintainers; [ mjanczyk svsdep mgregoire ];
|
2018-02-21 20:48:38 +01:00
|
|
|
};
|
|
|
|
|
2023-01-14 01:00:51 +01:00
|
|
|
dontUnpack = true;
|
2018-02-21 20:48:38 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/dotnet/keepass/
|
2023-01-14 01:00:51 +01:00
|
|
|
cp $src $out/lib/dotnet/keepass/
|
2018-02-21 20:48:38 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
# Mono is required to compile plugin at runtime, after loading.
|
|
|
|
buildEnv { name = drv.name; paths = [ mono drv ]; }
|