pkgs/gotosocial: 0.10.0 -> 0.11.0-rc1

This commit is contained in:
Aaron Bieber 2023-08-11 07:36:51 -06:00
parent 519c437cef
commit b439ecfa16
No known key found for this signature in database

View File

@ -1,21 +1,21 @@
{
lib,
buildGo119Module,
buildGoModule,
fetchFromGitHub,
go,
ffmpeg,
...
}: let
gotosocialVersion = "0.10.0";
gtswaHash = "sha256:1842qjb09s5rkyc1b2pwn45f3sl6dycjfzspd7z0gwh8l8dag2mm";
gtssHash = "sha256-SE+u89xAV6jJulU8XETlzTrqtwBYeMdNGyjk648b7h8=";
gotosocialVersion = "0.11.0-rc1";
gtswaHash = "sha256:1arc0k3pdrvqsqpf24nh140y3knifywmllf2bgvjcbqmrs4rd1s1";
gtssHash = "sha256-P0hFO08AM0gdKUuN4W49VqwRzYz/jGiw/dYS6HFSRVw=";
gotosocialWebAssets = builtins.fetchurl {
url = "https://github.com/superseriousbusiness/gotosocial/releases/download/v${gotosocialVersion}/gotosocial_${gotosocialVersion}_web-assets.tar.gz";
sha256 = gtswaHash;
};
in
with lib;
buildGo119Module rec {
buildGoModule rec {
pname = "gotosocial";
version = gotosocialVersion;