2021-01-15 05:42:41 +00:00
|
|
|
{ lib, stdenv, buildEnv, fetchFromGitHub, mono }:
|
2016-09-25 06:54:24 +01:00
|
|
|
|
|
|
|
let
|
2017-07-18 20:10:36 +01:00
|
|
|
version = "1.8.4.2";
|
2016-09-25 06:54:24 +01:00
|
|
|
drv = stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "keepasshttp";
|
|
|
|
inherit version;
|
2016-09-25 06:54:24 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pfn";
|
|
|
|
repo = "keepasshttp";
|
2020-11-01 22:39:49 +00:00
|
|
|
# rev = version;
|
2017-07-18 20:10:36 +01:00
|
|
|
# for 1.8.4.2 the tag is at the wrong commit (they fixed stuff
|
|
|
|
# afterwards and didn't move the tag), hence reference by commitid
|
|
|
|
rev = "c2c4eb5388a02169400cba7a67be325caabdcc37";
|
|
|
|
sha256 = "0bkzxggbqx7sql3sp46bqham6r457in0vrgh3ai3lw2jrw79pwmh";
|
2016-09-25 06:54:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "KeePass plugin to expose password entries securely (256bit AES/CBC) over HTTP";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pfn/keepasshttp";
|
2021-01-15 05:42:41 +00:00
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
license = lib.licenses.gpl3;
|
2016-09-25 06:54:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
pluginFilename = "KeePassHttp.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 ]; }
|