zaphyra's git: nixfiles

zaphyra's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47 
48 
49 
50 
51 
52 
53 
54 
55 
56 
57 
58 
59 
60 
61 
62 
63 
64 
65 
66 
67 
68 
69 
70 
71 
72 
73 
74 
75 
76 
77 
78 
79 
80 
81 
82 
83 
84 
85 
86 
87 
88 
89 
90 
91 
92 
93 
94 
95 
96 
97 
98 
99 
{
  applyPatches,
  fetchgit,
  mkYarnPackage,
  buildGo124Module,
  lib,
  makeWrapper,
  installShellFiles,
  ...
}:

buildGo124Module rec {
  pname = "gotosocial";
  version = "0.20.0-${builtins.substring 0 6 rev}";
  rev = "b6ff55662e0281c0d6e111f9307625ef695df2fa";
  hash = "sha256-btdStdOlIWIFzTQYFzinH5N/U71LETkg8phY7p+eDtw=";

  src = applyPatches {
    src = fetchgit {
      url = "https://codeberg.org/superseriousbusiness/gotosocial/";
      inherit rev hash;
    };
    patches = [ ];
  };

  frontend-assets = mkYarnPackage {
    name = "${pname}_${version}-frontend-assets";
    inherit src version;

    packageJSON = "${src}/web/source/package.json";
    yarnLock = "${src}/web/source/yarn.lock";

    configurePhase = ''
      cp -r $node_modules node_modules
      chmod +w -R node_modules
    '';

    buildPhase = ''
      mkdir -p ./web/source ./web/assets

      cp -r $src/web/source/. ./web/source
      cp -r $src/web/assets/. ./web/assets

      export NODE_OPTIONS=--openssl-legacy-provider
      node ./node_modules/ts-patch/bin/ts-patch.js install
      yarn --offline --cwd ./web/source build
    '';

    distPhase = "true";
    installPhase = "cp -r ./web/assets $out";

    meta.license = lib.licenses.agpl3Only;
  };

  ldflags = [
    "-s"
    "-w"
    "-extldflags '-static'"
    "-X 'main.Commit=${rev}'"
    "-X 'main.Version=${version}'"
  ];
  tags = [
    "netgo"
    "osusergo"
    "static_build"
  ];

  vendorHash = null;

  nativeBuildInputs = [ installShellFiles ];
  buildInputs = [ makeWrapper ];

  doCheck = false;

  installCheckPhase = ''
    runHook preCheck
    $out/bin/gotosocial --help
    runHook postCheck
  '';

  postInstall = ''
    mkdir -p $out/share/web/assets

    cp -r  ./web/template                  $out/share/web/
    cp -rf ${frontend-assets}/. $out/share/web/assets

    installShellCompletion --cmd gotosocial \
      --bash <($out/bin/gotosocial completion bash) \
      --fish <($out/bin/gotosocial completion fish) \
      --zsh <($out/bin/gotosocial completion zsh)
  '';

  meta = with lib; {
    description = "An ActivityPub social network server, written in Golang.";
    homepage = "https://github.com/superseriousbusiness/gotosocial";
    license = licenses.agpl3Only;
  };

}