Unverified Commit 5b970e91 authored by nixpkgs-merge-bot[bot]'s avatar nixpkgs-merge-bot[bot] Committed by GitHub
Browse files

chirpstack-fuota-server: fix update script (#379922)



Co-authored-by: default avatarstv0g <post@steffenvogel.de>
parents 0ebcd36a 2096110c
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";