summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2020-12-09 02:22:12 +0100
committerGitHub <noreply@github.com>2020-12-09 02:22:12 +0100
commit92a721add005861e1c1d21e5910ef2b30615d0aa (patch)
treedc7676b02766f723c0c234b1f76153fc04912bcb /pkgs
parent5835680d29e46d5edb492f5032704a2984bd5541 (diff)
parent4c842c97b0b64b4b474ad75d7e8b1ae624a5a8d7 (diff)
Merge pull request #106392 from tasmo/standardnotes-3.5.11
standardnotes: 3.3.3 -> 3.5.11
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/standardnotes/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/standardnotes/default.nix b/pkgs/applications/editors/standardnotes/default.nix
index 18d9338f9093..e019814b3d67 100644
--- a/pkgs/applications/editors/standardnotes/default.nix
+++ b/pkgs/applications/editors/standardnotes/default.nix
@@ -2,22 +2,22 @@
, fetchurl, runtimeShell }:
let
- version = "3.3.3";
+ version = "3.5.11";
pname = "standardnotes";
name = "${pname}-${version}";
plat = {
i386-linux = "-i386";
- x86_64-linux = "";
+ x86_64-linux = "x86_64";
}.${stdenv.hostPlatform.system};
sha256 = {
- i386-linux = "2ccdf23588b09d645811e562d4fd7e02ac0e367bf2b34e373d8470d48544036d";
- x86_64-linux = "6366d0a37cbf2cf51008a666e40bada763dd1539173de01e093bcbe4146a6bd8";
+ i386-linux = "009fnnd7ysxkyykkbmhvr0vn13b21j1j5mzwdvqdkhm9v3c9rbgj";
+ x86_64-linux = "1fij00d03ky57jlnhf9n2iqvfa4dgmkgawrxd773gg03hdsk7xcf";
}.${stdenv.hostPlatform.system};
src = fetchurl {
- url = "https://github.com/standardnotes/desktop/releases/download/v${version}/standard-notes-${version}${plat}.AppImage";
+ url = "https://github.com/standardnotes/desktop/releases/download/v${version}/standard-notes-${version}-linux-${plat}.AppImage";
inherit sha256;
};