about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/standardnotes/update.nix
blob: 7b5f6616602bc9d0dd93641ca689a0049d7acfc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ writeScript
, lib, curl, runtimeShell, jq, coreutils, moreutils, nix, gnused }:

writeScript "update-standardnotes" ''
  #!${runtimeShell}
  PATH=${lib.makeBinPath [ jq curl nix coreutils moreutils gnused ]}

  set -euo pipefail
  set -x

  tmpDir=$(mktemp -d)
  srcJson=pkgs/applications/editors/standardnotes/src.json
  jsonPath="$tmpDir"/latest

  oldVersion=$(jq -r .version < "$srcJson")

  curl https://api.github.com/repos/standardnotes/app/releases/latest > "$jsonPath"

  tagName=$(jq -r .tag_name < "$jsonPath")

  if [[ ! "$tagName" =~ "desktop" ]]; then
    echo "latest release '$tagName' not a desktop release"
    exit 1
  fi

  newVersion=$(jq -r .tag_name < "$jsonPath" | sed s,@standardnotes/desktop@,,g)

  if [[ "$oldVersion" == "$newVersion" ]]; then
    echo "version did not change"
    exit 0
  fi

  function getDownloadUrl() {
    jq -r ".assets[] | select(.name==\"standard-notes-$newVersion-$1.AppImage\") | .browser_download_url" < "$jsonPath"
  }

  function setJsonKey() {
    jq "$1 = \"$2\"" "$srcJson" | sponge "$srcJson"
  }

  function updatePlatform() {
    nixPlatform="$1"
    upstreamPlatform="$2"
    url=$(getDownloadUrl "$upstreamPlatform")
    hash=$(nix-prefetch-url "$url" --type sha512)
    sriHash=$(nix hash to-sri --type sha512 $hash)
    setJsonKey .appimage[\""$nixPlatform"\"].url "$url"
    setJsonKey .appimage[\""$nixPlatform"\"].hash "$sriHash"
  }

  updatePlatform x86_64-linux linux-x86_64
  updatePlatform aarch64-linux linux-arm64
  setJsonKey .version "$newVersion"
''