1 { lib, stdenv, buildEnv, fetchurl, mono }:
5 drv = stdenv.mkDerivation {
9 url = "https://github.com/kee-org/keepassrpc/releases/download/v${version}/KeePassRPC.plgx";
10 hash = "sha256-p5dYluCrXAKhBhlm6sQ3QQE3gLMJzEZsHXwGnVeXFos=";
14 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";
15 homepage = "https://github.com/kee-org/keepassrpc";
16 platforms = [ "x86_64-linux" ];
17 license = licenses.gpl2;
18 maintainers = with maintainers; [ mjanczyk svsdep mgregoire ];
23 mkdir -p $out/lib/dotnet/keepass/
24 cp $src $out/lib/dotnet/keepass/
28 # Mono is required to compile plugin at runtime, after loading.
29 buildEnv { name = drv.name; paths = [ mono drv ]; }