Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gotify-server: 2.2.4 -> 2.3.0

Diff: https://github.com/gotify/server/compare/v2.2.4...v2.3.0

+4 -4
+4 -4
pkgs/servers/gotify/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "gotify-server"; 13 - version = "2.2.4"; 13 + version = "2.3.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "gotify"; 17 17 repo = "server"; 18 18 rev = "v${version}"; 19 - hash = "sha256-jhCS9UBzvOEoXTNw87wmUgTJb0/BP9TToifCDEuihM0="; 19 + hash = "sha256-fWcdnmpLZycg7hmPNnphGcuSMTI4bsq57XPoSyQSGDA="; 20 20 }; 21 21 22 22 # With `allowGoReference = true;`, `buildGoModule` adds the `-trimpath` ··· 25 25 # server[780]: stat /var/lib/private/ui/build/index.html: no such file or directory 26 26 allowGoReference = true; 27 27 28 - vendorHash = "sha256-TxxiyfWzlzQ2R2hgeBzB11FIiOz5rIBfaIm15DQ+dL0="; 28 + vendorHash = "sha256-im7Pauit0tWi0BcyKtxybOqsu7rrIHZwY5Olta3nJJI="; 29 29 30 30 doCheck = false; 31 31 ··· 38 38 preBuild = '' 39 39 if [ -n "$ui" ] # to make the preBuild a no-op inside the goModules fixed-output derivation, where it would fail 40 40 then 41 - cp -r $ui ui/build && go run hack/packr/packr.go 41 + cp -r $ui ui/build 42 42 fi 43 43 ''; 44 44