about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBignaux Ronan <ronan@aimao.org>2020-03-05 09:53:12 +0100
committerBignaux Ronan <ronan@aimao.org>2020-03-05 09:53:12 +0100
commitb316cec9b66fa79f89a36decf669a8f2978e0af8 (patch)
treeabd93450c78502e65e5049912ce04052260033a3 /pkgs/applications
parentbf83a7cc66f6e4157fd6514e22096495e1a3b5e0 (diff)
downloadnixlib-b316cec9b66fa79f89a36decf669a8f2978e0af8.tar
nixlib-b316cec9b66fa79f89a36decf669a8f2978e0af8.tar.gz
nixlib-b316cec9b66fa79f89a36decf669a8f2978e0af8.tar.bz2
nixlib-b316cec9b66fa79f89a36decf669a8f2978e0af8.tar.lz
nixlib-b316cec9b66fa79f89a36decf669a8f2978e0af8.tar.xz
nixlib-b316cec9b66fa79f89a36decf669a8f2978e0af8.tar.zst
nixlib-b316cec9b66fa79f89a36decf669a8f2978e0af8.zip
standardnotes: 3.0.15 -> 3.3.3
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/standardnotes/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/editors/standardnotes/default.nix b/pkgs/applications/editors/standardnotes/default.nix
index 5a13d91aef2c..d076cfe343a3 100644
--- a/pkgs/applications/editors/standardnotes/default.nix
+++ b/pkgs/applications/editors/standardnotes/default.nix
@@ -1,16 +1,16 @@
 { stdenv, appimage-run, fetchurl, runtimeShell }:
 
 let
-  version = "3.0.15";
+  version = "3.3.3";
 
   plat = {
-    i386-linux = "i386";
-    x86_64-linux = "x86_64";
+    i386-linux = "-i386";
+    x86_64-linux = "";
   }.${stdenv.hostPlatform.system};
 
   sha256 = {
-    i386-linux = "0v2nsis6vb1lnhmjd28vrfxqwwpycv02j0nvjlfzcgj4b3400j7a";
-    x86_64-linux = "130n586cw0836zsbwqcz3pp3h0d4ny74ngqs4k4cvfb92556r7xh";
+    i386-linux = "2ccdf23588b09d645811e562d4fd7e02ac0e367bf2b34e373d8470d48544036d";
+    x86_64-linux = "6366d0a37cbf2cf51008a666e40bada763dd1539173de01e093bcbe4146a6bd8";
   }.${stdenv.hostPlatform.system};
 in
 
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
   inherit version;
 
   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}${plat}.AppImage";
     inherit sha256;
   };