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

35 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, buildEnv, fetchFromGitHub, mono }:
2016-09-25 05:54:24 +00:00
let
version = "1.8.4.2";
2016-09-25 05:54:24 +00:00
drv = stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "keepasshttp";
inherit version;
2016-09-25 05:54:24 +00:00
src = fetchFromGitHub {
owner = "pfn";
repo = "keepasshttp";
# rev = version;
# 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 05:54:24 +00:00
};
meta = {
description = "KeePass plugin to expose password entries securely (256bit AES/CBC) over HTTP";
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 05:54:24 +00: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 ]; }