nixpkgs/pkgs/applications/misc/1password-gui/default.nix

78 lines
2.3 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-08-08 07:06:45 +00:00
, fetchurl
, makeWrapper
2020-12-01 15:24:19 +00:00
, electron_11
2020-08-08 07:06:45 +00:00
, openssl
}:
stdenv.mkDerivation rec {
pname = "1password";
version = "8.0.33-53.BETA";
2020-08-08 07:06:45 +00:00
src = fetchurl {
url = "https://downloads.1password.com/linux/tar/beta/x86_64/1password-${version}.x64.tar.gz";
hash = "sha256-YUYER+UiM1QEDgGl0P9bIT65YVacUnuGtQVkV91teEU=";
2020-08-08 07:06:45 +00:00
};
nativeBuildInputs = [ makeWrapper ];
dontConfigure = true;
dontBuild = true;
installPhase = let
runtimeLibs = [
openssl.out
stdenv.cc.cc
];
in ''
mkdir -p $out/bin $out/share/1password
# Applications files.
cp -a {locales,resources} $out/share/${pname}
install -Dm0755 -t $out/share/${pname} {1Password-BrowserSupport,1Password-KeyringHelper}
2020-08-08 07:06:45 +00:00
# Desktop file.
install -Dt $out/share/applications resources/${pname}.desktop
2020-08-08 07:06:45 +00:00
substituteInPlace $out/share/applications/${pname}.desktop \
--replace 'Exec=/opt/1Password/${pname}' 'Exec=${pname}'
2020-08-08 07:06:45 +00:00
# Icons.
cp -a resources/icons $out/share
2020-08-08 07:06:45 +00:00
# Wrap the application with Electron.
2020-12-01 15:24:19 +00:00
makeWrapper "${electron_11}/bin/electron" "$out/bin/${pname}" \
2020-08-08 07:06:45 +00:00
--add-flags "$out/share/${pname}/resources/app.asar" \
2021-01-15 09:19:50 +00:00
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibs}"
# Set the interpreter for the helper binaries and wrap them with
# the runtime libraries.
interp="$(cat $NIX_CC/nix-support/dynamic-linker)"
patchelf --set-interpreter $interp \
$out/share/$pname/{1Password-BrowserSupport,1Password-KeyringHelper}
wrapProgram $out/share/${pname}/1Password-BrowserSupport \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibs}"
wrapProgram $out/share/${pname}/1Password-KeyringHelper \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibs}"
2020-08-08 07:06:45 +00:00
'';
2020-08-25 18:25:23 +00:00
passthru.updateScript = ./update.sh;
meta = with lib; {
2020-08-08 07:06:45 +00:00
description = "Multi-platform password manager";
longDescription = ''
1Password is a multi-platform package manager.
The Linux version is currently a development preview and can
only be used to search, view, and copy items. However items
cannot be created or edited.
'';
homepage = "https://1password.com/";
license = licenses.unfree;
maintainers = with maintainers; [ danieldk timstott ];
2020-08-08 07:06:45 +00:00
platforms = [ "x86_64-linux" ];
};
}