75 lines
2.5 KiB
Nix
75 lines
2.5 KiB
Nix
{ stdenv, lib, fetchurl, buildDotnetPackage, makeWrapper, unzip, makeDesktopItem, plugins ? [] }:
|
|
|
|
# KeePass looks for plugins in under directory in which KeePass.exe is
|
|
# located. It follows symlinks where looking for that directory, so
|
|
# buildEnv is not enough to bring KeePass and plugins together.
|
|
#
|
|
# This derivation patches KeePass to search for plugins in specified
|
|
# plugin derivations in the Nix store and nowhere else.
|
|
with builtins; buildDotnetPackage rec {
|
|
baseName = "keepass";
|
|
version = "2.30";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/keepass/KeePass-${version}-Source.zip";
|
|
sha256 = "1r792cikgvzj4hrxiv7xd3gx2zmn16dbh4inj2zi6ny0gchkqg2a";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
buildInputs = [ unzip makeWrapper ];
|
|
|
|
patches = [ ./keepass.patch ];
|
|
|
|
pluginLoadPathsPatch =
|
|
let outputLc = toString (add 8 (length plugins));
|
|
patchTemplate = readFile ./keepass-plugins.patch;
|
|
loadTemplate = readFile ./keepass-plugins-load.patch;
|
|
loads =
|
|
lib.concatStrings
|
|
(map
|
|
(p: replaceStrings ["$PATH$"] [ (unsafeDiscardStringContext (toString p)) ] loadTemplate)
|
|
plugins);
|
|
in replaceStrings ["$OUTPUT_LC$" "$DO_LOADS$"] [outputLc loads] patchTemplate;
|
|
|
|
passAsFile = [ "pluginLoadPathsPatch" ];
|
|
postPatch = ''
|
|
patch --binary -p1 <$pluginLoadPathsPatchPath
|
|
'';
|
|
|
|
preConfigure = "rm -rvf Build/*";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "keepass";
|
|
exec = "keepass";
|
|
comment = "Password manager";
|
|
desktopName = "Keepass";
|
|
genericName = "Password manager";
|
|
categories = "Application;Other;";
|
|
};
|
|
|
|
outputFiles = [ "Build/KeePass/Release/*" "Build/KeePassLib/Release/*" ];
|
|
dllFiles = [ "KeePassLib.dll" ];
|
|
exeFiles = [ "KeePass.exe" ];
|
|
|
|
# plgx plugin like keefox requires mono to compile at runtime
|
|
# after loading. It is brought into plugins bin/ directory using
|
|
# buildEnv in the plugin derivation. Wrapper below makes sure it
|
|
# is found and does not pollute output path.
|
|
binPaths = lib.concatStrings (lib.intersperse ":" (map (x: x + "/bin") plugins));
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/share/applications"
|
|
cp ${desktopItem}/share/applications/* $out/share/applications
|
|
wrapProgram $out/bin/keepass --prefix PATH : "$binPaths"
|
|
'';
|
|
|
|
meta = {
|
|
description = "GUI password manager with strong cryptography";
|
|
homepage = http://www.keepass.info/;
|
|
maintainers = with stdenv.lib.maintainers; [ amorsillo obadz ];
|
|
platforms = with stdenv.lib.platforms; all;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|