From bec0ed753eda9e3a2d4f5dd7fabcdccd18c85cbd Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 19 Feb 2022 14:45:18 -0800 Subject: [PATCH] galene: 0.3.5 -> 0.4.4 (#150125) Co-authored-by: Renaud --- pkgs/servers/web-apps/galene/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/web-apps/galene/default.nix b/pkgs/servers/web-apps/galene/default.nix index 0ae5523c35a3..bbc41acf52e4 100644 --- a/pkgs/servers/web-apps/galene/default.nix +++ b/pkgs/servers/web-apps/galene/default.nix @@ -2,16 +2,19 @@ buildGoModule rec { pname = "galene"; - version = "0.3.5"; + version = "0.4.4"; src = fetchFromGitHub { owner = "jech"; repo = "galene"; rev = "galene-${version}"; - sha256 = "sha256-CqwxHLXhiBYPS+93/MycS2IR//31puhI+oSpMS/jR1s="; + hash = "sha256-5ngX9VakQlcAVGDQ1R62oNfChGPjbu48ILFA3pBqP7k="; }; - vendorSha256 = "sha256-Vm7tTTQJyZZVbORl5ziy4GJ34kHh5dh0ojX/ZuTpshA="; + vendorSha256 = "0rkn6lpy4n5ra1jy3m0ysdjpwh3hq2z4xwda2pzvp99sgszxl5g3"; + + ldflags = [ "-s" "-w" ]; + preCheck = "export TZ=UTC"; outputs = [ "out" "static" ]; @@ -23,6 +26,7 @@ buildGoModule rec { meta = with lib; { description = "Videoconferencing server that is easy to deploy, written in Go"; homepage = "https://github.com/jech/galene"; + changelog = "https://github.com/jech/galene/raw/galene-${version}/CHANGES"; license = licenses.mit; platforms = platforms.linux; maintainers = with maintainers; [ rgrunbla ];