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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, appimageTools, autoPatchelfHook, desktop-file-utils
, fetchurl, libsecret }:
2018-10-28 22:31:18 +01:00
let
2022-07-11 17:36:57 +02:00
version = "3.23.69";
pname = "standardnotes";
name = "${pname}-${version}";
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
2018-10-28 22:31:18 +01:00
plat = {
i686-linux = "i386";
2020-12-08 23:32:28 +01:00
x86_64-linux = "x86_64";
}.${stdenv.hostPlatform.system} or throwSystem;
2018-10-28 22:31:18 +01:00
sha256 = {
2022-07-11 17:36:57 +02:00
i686-linux = "sha256-/A2LjV8ky20bcKgs0ijwldryi5VkyROwz49vWYXYQus=";
x86_64-linux = "sha256-fA9WH9qUtvAHF9hTFRtxQdpz2dpK0joD0zX9VYBo10g=";
}.${stdenv.hostPlatform.system} or throwSystem;
2018-10-28 22:31:18 +01:00
src = fetchurl {
2022-07-11 17:36:57 +02:00
url = "https://github.com/standardnotes/app/releases/download/%40standardnotes%2Fdesktop%40${version}/standard-notes-${version}-linux-${plat}.AppImage";
2018-10-28 22:31:18 +01:00
inherit sha256;
};
appimageContents = appimageTools.extract {
inherit name src;
};
nativeBuildInputs = [ autoPatchelfHook desktop-file-utils ];
in appimageTools.wrapType2 rec {
inherit name src;
extraPkgs = pkgs: with pkgs; [
libsecret
];
extraInstallCommands = ''
# directory in /nix/store so readonly
cd $out
chmod -R +w $out
mv $out/bin/${name} $out/bin/${pname}
2018-10-28 22:31:18 +01:00
# fixup and install desktop file
${desktop-file-utils}/bin/desktop-file-install --dir $out/share/applications \
--set-key Exec --set-value ${pname} ${appimageContents}/standard-notes.desktop
ln -s ${appimageContents}/usr/share/icons share
2018-10-28 22:31:18 +01:00
'';
meta = with lib; {
2018-10-28 22:31:18 +01: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 22:31:18 +01:00
license = licenses.agpl3;
maintainers = with maintainers; [ mgregoire chuangzhu ];
2022-07-11 17:36:57 +02:00
sourceProvenance = [ sourceTypes.binaryNativeCode ];
platforms = [ "i686-linux" "x86_64-linux" ];
2018-10-28 22:31:18 +01:00
};
}