gotify-server: 2.0.4 -> 2.0.5

Improved update script / procedure by getting all versions and shas
needed to build it.
This commit is contained in:
Doron Behar
2020-04-27 16:56:50 +03:00
parent eeb4e522b5
commit fbb9bcaef4
9 changed files with 149 additions and 133 deletions
+2 -2
View File
@@ -8,13 +8,13 @@ yarn2nix-moretea.mkYarnPackage rec {
packageJSON = ./package.json;
yarnNix = ./yarndeps.nix;
version = "2.0.14";
version = import ./version.nix;
src_all = fetchFromGitHub {
owner = "gotify";
repo = "server";
rev = "v${version}";
sha256 = "0hyy9fki2626cgd78l7fkk67lik6g1pkcpf6xr3gl07dxwcclyr8";
sha256 = import ./source-sha.nix;
};
src = "${src_all}/ui";