gotosocial: 0.16.0 -> 0.17.0 (#348762)

This commit is contained in:
asymmetric
2024-10-18 09:41:41 +00:00
committed by GitHub
+9 -8
View File
@@ -1,18 +1,19 @@
{ lib
, fetchurl
, fetchFromGitHub
, buildGoModule
, nixosTests
{
lib,
fetchurl,
fetchFromGitHub,
buildGoModule,
nixosTests,
}:
let
owner = "superseriousbusiness";
repo = "gotosocial";
version = "0.16.0";
version = "0.17.0";
web-assets = fetchurl {
url = "https://github.com/${owner}/${repo}/releases/download/v${version}/${repo}_${version}_web-assets.tar.gz";
hash = "sha256-aZQpd5KvoZvXEMVzGbWrtGsc+P1JStjZ6U5mX6q7Vb0=";
hash = "sha256-ASqPIf98qdnkh3j72ifQN3mWnzNCTRcUegmrStvQ08Q=";
};
in
buildGoModule rec {
@@ -22,7 +23,7 @@ buildGoModule rec {
src = fetchFromGitHub {
inherit owner repo;
rev = "refs/tags/v${version}";
hash = "sha256-QoG09+jmq5e5vxDVtkhY35098W/9B1HsYTuUnz43LV4=";
hash = "sha256-uyqP3zhjcXKejGFAwZoTn2kY8IpX0QAAXNzb1VG6ve8=";
};
vendorHash = null;