Commit 2096110c authored by Weijia Wang's avatar Weijia Wang
Browse files

chirpstack-fuota-server: fix update script

parent 27299af9
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  buildGoModule,
  fetchFromGitHub,
  versionCheckHook,
  nix-update-script,
  unstableGitUpdater,
}:
buildGoModule rec {
  pname = "chirpstack-fuota-server";
@@ -32,7 +32,9 @@ buildGoModule rec {
    "-skip=TestStorage" # Depends on external database server
  ];

  passthru.updateScript = nix-update-script { };
  passthru.updateScript = unstableGitUpdater {
    tagPrefix = "v";
  };

  meta = {
    description = "FUOTA server which can be used together with ChirpStack Application Server";