mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
318177054b
- add updater script - move source urls and hashes to separate json file - add support for linux-aarch64
53 lines
1.6 KiB
Nix
53 lines
1.6 KiB
Nix
{ callPackage, lib, stdenv, appimageTools, autoPatchelfHook, desktop-file-utils
|
|
, fetchurl, libsecret }:
|
|
|
|
let
|
|
srcjson = builtins.fromJSON (builtins.readFile ./src.json);
|
|
version = srcjson.version;
|
|
pname = "standardnotes";
|
|
name = "${pname}-${version}";
|
|
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
|
|
|
|
src = fetchurl (srcjson.appimage.${stdenv.hostPlatform.system} or throwSystem);
|
|
|
|
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}
|
|
|
|
# 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
|
|
'';
|
|
|
|
passthru.updateScript = callPackage ./update.nix {};
|
|
|
|
meta = with lib; {
|
|
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";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ mgregoire chuangzhu squalus ];
|
|
sourceProvenance = [ sourceTypes.binaryNativeCode ];
|
|
platforms = builtins.attrNames srcjson.appimage;
|
|
};
|
|
}
|