56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ lib, buildGo119Module, fetchFromGitHub, go, ffmpeg, ... }:
|
|
let
|
|
gotosocialVersion = "0.8.1";
|
|
gtswaHash = "sha256:1apcp8kirbp5s23dh48ymlwkwrvq424k0fj52z9bf8w68qbnas9w";
|
|
gtssHash = "sha256-nNkcK9MmhL6HbiR8yE2OI/XbBATyJ8qNIUDmJwXxD6I=";
|
|
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 {
|
|
pname = "gotosocial";
|
|
version = gotosocialVersion;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "superseriousbusiness";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = gtssHash;
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-extldflags '-static'"
|
|
"-X 'main.Commit=${version}'"
|
|
"-X 'main.Version=${version}'"
|
|
];
|
|
|
|
propagatedBuildInputs = [ ffmpeg ];
|
|
|
|
proxyVendor = false;
|
|
|
|
vendorSha256 = null;
|
|
|
|
doCheck = false;
|
|
|
|
preBuild = ''
|
|
echo ${go}/bin/go
|
|
${go}/bin/go version
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/assets
|
|
tar -C $out/assets/ -zxvf ${gotosocialWebAssets}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Fast, fun, ActivityPub server, powered by Go.";
|
|
homepage = "https://github.com/superseriousbusiness/gotosocial";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ qbit ];
|
|
};
|
|
}
|