Merge pull request #320099 from chewblacka/update-remnote

remnote: 1.16.18 -> 1.16.40
This commit is contained in:
Sandro
2024-06-25 21:12:31 +02:00
committed by GitHub
+16 -2
View File
@@ -2,13 +2,14 @@
lib,
fetchurl,
appimageTools,
writeScript,
}:
let
pname = "remnote";
version = "1.16.18";
version = "1.16.48";
src = fetchurl {
url = "https://download2.remnote.io/remnote-desktop2/RemNote-${version}.AppImage";
hash = "sha256-ps7Rl1oA2QOPvO2XeCY8DrWtCV9WPlX9jbhypz2ZARA=";
hash = "sha256-tECIn43fTr+Enkp63S7INUjOrs8Ni7Nmhxsr/p6kPzo=";
};
appimageContents = appimageTools.extractType2 { inherit pname version src; };
in
@@ -22,6 +23,19 @@ appimageTools.wrapType2 {
install -Dm444 ${appimageContents}/remnote.png -t $out/share/pixmaps
'';
passthru.updateScript = writeScript "update.sh" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl coreutils gnused common-updater-scripts
set -eu -o pipefail
url="$(curl -ILs -w %{url_effective} -o /dev/null https://backend.remnote.com/desktop/linux)"
version="$(echo $url | sed -n 's/.*RemNote-\([0-9]\+\.[0-9]\+\.[0-9]\+\).*/\1/p')"
currentVersion=$(nix-instantiate --eval -E "with import ./. {}; remnote.version or (lib.getVersion remnote)" | tr -d '"')
if [[ "$version" != "$currentVersion" ]]; then
hash=$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url "$url")")
update-source-version remnote "$version" "$hash" --print-changes
fi
'';
meta = with lib; {
description = "Note-taking application focused on learning and productivity";
homepage = "https://remnote.com/";