mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
71 lines
1.8 KiB
Nix
71 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, appimageTools
|
|
, makeWrapper
|
|
, electron_11
|
|
, openssl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "1password";
|
|
version = "0.9.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://onepassword.s3.amazonaws.com/linux/appimage/${pname}-${version}.AppImage";
|
|
hash = "sha256-JaYFJL24Pgwh5CrsKjJPL8u0fx1x0beFTK+EGNT1iqA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
name = "${pname}-${version}";
|
|
inherit src;
|
|
};
|
|
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = let
|
|
runtimeLibs = [
|
|
openssl.out
|
|
stdenv.cc.cc
|
|
];
|
|
in ''
|
|
mkdir -p $out/bin $out/share/1password
|
|
|
|
# Applications files.
|
|
cp -a ${appimageContents}/{locales,resources} $out/share/${pname}
|
|
|
|
# Desktop file.
|
|
install -Dt $out/share/applications ${appimageContents}/${pname}.desktop
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
|
|
# Icons.
|
|
cp -a ${appimageContents}/usr/share/icons $out/share
|
|
|
|
# Wrap the application with Electron.
|
|
makeWrapper "${electron_11}/bin/electron" "$out/bin/${pname}" \
|
|
--add-flags "$out/share/${pname}/resources/app.asar" \
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath runtimeLibs}"
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|