nixpkgs/pkgs/applications/misc/keepass-plugins/keepassrpc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1001 B
Nix
Raw Normal View History

{ lib, stdenv, buildEnv, fetchurl, mono }:
let
2024-01-12 19:18:18 +00:00
version = "1.16.0";
drv = stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "keepassrpc";
inherit version;
src = fetchurl {
url = "https://github.com/kee-org/keepassrpc/releases/download/v${version}/KeePassRPC.plgx";
2024-01-12 19:18:18 +00:00
hash = "sha256-p5dYluCrXAKhBhlm6sQ3QQE3gLMJzEZsHXwGnVeXFos=";
};
meta = with lib; {
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";
homepage = "https://github.com/kee-org/keepassrpc";
platforms = [ "x86_64-linux" ];
license = licenses.gpl2;
2018-11-09 21:29:48 +00:00
maintainers = with maintainers; [ mjanczyk svsdep mgregoire ];
};
dontUnpack = true;
installPhase = ''
mkdir -p $out/lib/dotnet/keepass/
cp $src $out/lib/dotnet/keepass/
'';
};
in
# Mono is required to compile plugin at runtime, after loading.
buildEnv { name = drv.name; paths = [ mono drv ]; }