nixpkgs/pkgs/applications/editors/standardnotes/default.nix

67 lines
2 KiB
Nix
Raw Normal View History

{ lib, stdenv, appimageTools, autoPatchelfHook, desktop-file-utils
2021-02-27 14:58:33 +00:00
, fetchurl, libsecret, gtk3, gsettings-desktop-schemas }:
2018-10-28 21:31:18 +00:00
let
2021-02-04 00:40:27 +00:00
version = "3.5.18";
pname = "standardnotes";
name = "${pname}-${version}";
2018-10-28 21:31:18 +00:00
plat = {
2020-03-05 08:53:12 +00:00
i386-linux = "-i386";
2020-12-08 22:32:28 +00:00
x86_64-linux = "x86_64";
2018-10-28 21:31:18 +00:00
}.${stdenv.hostPlatform.system};
sha256 = {
2020-12-08 22:32:28 +00:00
i386-linux = "009fnnd7ysxkyykkbmhvr0vn13b21j1j5mzwdvqdkhm9v3c9rbgj";
2021-02-04 00:40:27 +00:00
x86_64-linux = "1zrnvvr9x0s2gp948iajsmgn38xm6x0g2dgxrfjis39rpplsrdww";
2018-10-28 21:31:18 +00:00
}.${stdenv.hostPlatform.system};
src = fetchurl {
2020-12-08 22:32:28 +00:00
url = "https://github.com/standardnotes/desktop/releases/download/v${version}/standard-notes-${version}-linux-${plat}.AppImage";
2018-10-28 21:31:18 +00:00
inherit sha256;
};
appimageContents = appimageTools.extract {
inherit name src;
};
nativeBuildInputs = [ autoPatchelfHook desktop-file-utils ];
in appimageTools.wrapType2 rec {
inherit name src;
profile = ''
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
'';
extraPkgs = pkgs: with pkgs; [
libsecret
];
extraInstallCommands = ''
# directory in /nix/store so readonly
cp -r ${appimageContents}/* $out
cd $out
chmod -R +w $out
mv $out/bin/${name} $out/bin/${pname}
2018-10-28 21:31:18 +00:00
# fixup and install desktop file
${desktop-file-utils}/bin/desktop-file-install --dir $out/share/applications \
--set-key Exec --set-value ${pname} standard-notes.desktop
2018-10-28 21:31:18 +00:00
rm usr/lib/* AppRun standard-notes.desktop .so*
2018-10-28 21:31:18 +00:00
'';
meta = with lib; {
2018-10-28 21:31:18 +00:00
description = "A simple and private notes app";
longDescription = ''
Standard Notes is a private notes app that features unmatched simplicity,
end-to-end encryption, powerful extensions, and open-source applications.
'';
homepage = "https://standardnotes.org";
2018-10-28 21:31:18 +00:00
license = licenses.agpl3;
maintainers = with maintainers; [ mgregoire ];
platforms = [ "i386-linux" "x86_64-linux" ];
};
}