nixpkgs/pkgs/tools/security/enpass/default.nix

101 lines
2.4 KiB
Nix
Raw Normal View History

2019-01-11 21:32:00 +00:00
{ stdenv, fetchurl, dpkg, xorg
2019-11-10 16:44:34 +00:00
, glib, libGLU, libGL, libpulseaudio, zlib, dbus, fontconfig, freetype
2019-01-11 21:32:00 +00:00
, gtk3, pango
2019-11-13 15:18:05 +00:00
, makeWrapper , python2Packages, lib
2021-03-14 18:12:53 +00:00
, lsof, curl, libuuid, cups, mesa, xz, libxkbcommon
}:
2016-09-19 16:50:52 +00:00
let
all_data = builtins.fromJSON (builtins.readFile ./data.json);
2016-09-19 16:50:52 +00:00
system_map = {
2019-01-11 21:32:00 +00:00
# i686-linux = "i386"; Uncomment if enpass 6 becomes available on i386
2016-09-19 16:50:52 +00:00
x86_64-linux = "amd64";
};
data = all_data.${system_map.${stdenv.hostPlatform.system} or (throw "Unsupported platform")};
2016-09-19 16:50:52 +00:00
baseUrl = "http://repo.sinew.in";
2016-09-19 16:50:52 +00:00
# used of both wrappers and libpath
libPath = lib.makeLibraryPath (with xorg; [
mesa.drivers
2019-11-10 16:44:34 +00:00
libGLU libGL
2016-09-19 16:50:52 +00:00
fontconfig
freetype
libpulseaudio
zlib
dbus
libX11
libXi
libSM
libICE
libXrender
libXScrnSaver
2019-01-11 21:32:00 +00:00
libxcb
2016-09-19 16:50:52 +00:00
glib
2019-01-11 21:32:00 +00:00
gtk3
2016-09-19 16:50:52 +00:00
pango
2019-01-11 21:32:00 +00:00
curl
libuuid
cups
2021-03-14 18:12:53 +00:00
xz
2020-12-11 22:29:48 +00:00
libxkbcommon
2016-09-19 16:50:52 +00:00
]);
2019-08-13 21:52:01 +00:00
package = stdenv.mkDerivation {
2016-09-19 16:50:52 +00:00
inherit (data) version;
pname = "enpass";
2016-09-19 16:50:52 +00:00
src = fetchurl {
inherit (data) sha256;
url = "${baseUrl}/${data.path}";
};
meta = with lib; {
2020-12-11 22:29:48 +00:00
description = "A well known password manager";
homepage = "https://www.enpass.io/";
2020-12-11 22:29:48 +00:00
license = licenses.unfree;
platforms = [ "x86_64-linux" "i686-linux"];
2020-12-21 08:18:40 +00:00
maintainers = with maintainers; [ ewok ];
2016-09-19 16:50:52 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [dpkg];
2016-09-19 16:50:52 +00:00
phases = [ "unpackPhase" "installPhase" ];
unpackPhase = "dpkg -X $src .";
installPhase=''
2019-01-11 21:32:00 +00:00
mkdir -p $out/bin
cp -r opt/enpass/* $out/bin
cp -r usr/* $out
2016-09-19 16:50:52 +00:00
sed \
2019-01-11 21:32:00 +00:00
-i s@/opt/enpass/Enpass@$out/bin/Enpass@ \
$out/share/applications/enpass.desktop
2016-09-19 16:50:52 +00:00
2019-01-11 21:32:00 +00:00
for i in $out/bin/{Enpass,importer_enpass}; do
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $i
done
2016-09-19 16:50:52 +00:00
2019-01-11 21:32:00 +00:00
# lsof must be in PATH for proper operation
2016-09-19 16:50:52 +00:00
wrapProgram $out/bin/Enpass \
2019-01-11 21:32:00 +00:00
--set LD_LIBRARY_PATH "${libPath}" \
2021-01-07 20:03:28 +00:00
--prefix PATH : ${lsof}/bin \
--unset QML2_IMPORT_PATH \
--unset QT_PLUGIN_PATH
2016-09-19 16:50:52 +00:00
'';
};
updater = {
2019-08-13 21:52:01 +00:00
update = stdenv.mkDerivation {
2016-09-19 16:50:52 +00:00
name = "enpass-update-script";
SCRIPT =./update_script.py;
2019-11-13 15:18:05 +00:00
buildInputs = with python2Packages; [python requests pathlib2 six attrs ];
2016-09-19 16:50:52 +00:00
shellHook = ''
2019-11-13 15:18:05 +00:00
exec python $SCRIPT --target pkgs/tools/security/enpass/data.json --repo ${baseUrl}
2016-09-19 16:50:52 +00:00
'';
};
};
in (package // {refresh = updater;})