forked from mirrors/nixpkgs
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ stdenv, appimage-run, fetchurl, runtimeShell }:
|
|
|
|
let
|
|
version = "3.3.3";
|
|
|
|
plat = {
|
|
i386-linux = "-i386";
|
|
x86_64-linux = "";
|
|
}.${stdenv.hostPlatform.system};
|
|
|
|
sha256 = {
|
|
i386-linux = "2ccdf23588b09d645811e562d4fd7e02ac0e367bf2b34e373d8470d48544036d";
|
|
x86_64-linux = "6366d0a37cbf2cf51008a666e40bada763dd1539173de01e093bcbe4146a6bd8";
|
|
}.${stdenv.hostPlatform.system};
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "standardnotes";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/standardnotes/desktop/releases/download/v${version}/standard-notes-${version}${plat}.AppImage";
|
|
inherit sha256;
|
|
};
|
|
|
|
buildInputs = [ appimage-run ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,share}
|
|
cp $src $out/share/standardNotes.AppImage
|
|
echo "#!${runtimeShell}" > $out/bin/standardnotes
|
|
echo "${appimage-run}/bin/appimage-run $out/share/standardNotes.AppImage" >> $out/bin/standardnotes
|
|
chmod +x $out/bin/standardnotes $out/share/standardNotes.AppImage
|
|
'';
|
|
|
|
meta = with stdenv.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 ];
|
|
platforms = [ "i386-linux" "x86_64-linux" ];
|
|
};
|
|
}
|