32 lines
780 B
Nix
32 lines
780 B
Nix
{ stdenv, lib, autoPatchelfHook }:
|
|
with lib;
|
|
let
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "gotosocial-bin";
|
|
version = "0.11.1";
|
|
|
|
src = builtins.fetchurl {
|
|
url = "https://github.com/superseriousbusiness/gotosocial/releases/download/v${version}/gotosocial_${version}_linux_amd64.tar.gz";
|
|
sha256 = "sha256:01ylmsvlq86nf2hsj8mcgnhpgc7g0vyqs5sx3g2j79a4835sai2f";
|
|
# sha256 = fakeSha256;
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
install -m755 -D gotosocial $out/bin/gotosocial
|
|
mkdir $out/share
|
|
cp -r web $out/share/web
|
|
cp -r example $out/share/example
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://docs.gotosocial.org";
|
|
description = "GoToSocial network";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|