summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2023-09-09 19:09:11 +0300
committerDoron Behar <doron.behar@gmail.com>2023-09-09 20:01:20 +0300
commit0c8177601d42dfbf52f9730ad59e3ca382d2f46d (patch)
tree82926984a92b30877c1a9ad5f97f65c71ea3bde4
parent5761b7411e52aae6ad7949f3b1f8adce85463efd (diff)
downloadnixpkgs-0c8177601d42dfbf52f9730ad59e3ca382d2f46d.tar
nixpkgs-0c8177601d42dfbf52f9730ad59e3ca382d2f46d.tar.gz
nixpkgs-0c8177601d42dfbf52f9730ad59e3ca382d2f46d.tar.bz2
nixpkgs-0c8177601d42dfbf52f9730ad59e3ca382d2f46d.tar.lz
nixpkgs-0c8177601d42dfbf52f9730ad59e3ca382d2f46d.tar.xz
nixpkgs-0c8177601d42dfbf52f9730ad59e3ca382d2f46d.tar.zst
nixpkgs-0c8177601d42dfbf52f9730ad59e3ca382d2f46d.zip
gotify-server: 2.2.4 -> 2.3.0
Diff: https://github.com/gotify/server/compare/v2.2.4...v2.3.0
-rw-r--r--pkgs/servers/gotify/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/gotify/default.nix b/pkgs/servers/gotify/default.nix
index f64669bf4db..b940f35e6a5 100644
--- a/pkgs/servers/gotify/default.nix
+++ b/pkgs/servers/gotify/default.nix
@@ -10,13 +10,13 @@
 
 buildGoModule rec {
   pname = "gotify-server";
-  version = "2.2.4";
+  version = "2.3.0";
 
   src = fetchFromGitHub {
     owner = "gotify";
     repo = "server";
     rev = "v${version}";
-    hash = "sha256-jhCS9UBzvOEoXTNw87wmUgTJb0/BP9TToifCDEuihM0=";
+    hash = "sha256-fWcdnmpLZycg7hmPNnphGcuSMTI4bsq57XPoSyQSGDA=";
   };
 
   # With `allowGoReference = true;`, `buildGoModule` adds the `-trimpath`
@@ -25,7 +25,7 @@ buildGoModule rec {
   #   server[780]: stat /var/lib/private/ui/build/index.html: no such file or directory
   allowGoReference = true;
 
-  vendorHash = "sha256-TxxiyfWzlzQ2R2hgeBzB11FIiOz5rIBfaIm15DQ+dL0=";
+  vendorHash = "sha256-im7Pauit0tWi0BcyKtxybOqsu7rrIHZwY5Olta3nJJI=";
 
   doCheck = false;
 
@@ -38,7 +38,7 @@ buildGoModule rec {
   preBuild = ''
     if [ -n "$ui" ] # to make the preBuild a no-op inside the goModules fixed-output derivation, where it would fail
     then
-      cp -r $ui ui/build && go run hack/packr/packr.go
+      cp -r $ui ui/build
     fi
   '';