Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / alps / default.nix
blob1aeba54ed57fa9db9e196dba9bd7e711a3faf169
1 { lib, buildGoModule, fetchFromSourcehut, fetchpatch, nixosTests }:
3 buildGoModule rec {
4   pname = "alps";
5   version = "2022-10-18";
7   src = fetchFromSourcehut {
8     owner = "~migadu";
9     repo = "alps";
10     rev = "f01fbcbc48db5e65d69a0ebd9d7cb0deb378cf13";
11     hash = "sha256-RSug3YSiqYLGs05Bee4NoaoCyPvUZ7IqlKWI1hmxbiA=";
12   };
14   vendorHash = "sha256-QsGfINktk+rBj4b5h+NBVS6XV1SVz+9fDL1vtUqcKEU=";
16   ldflags = [
17     "-s"
18     "-w"
19     "-X main.themesPath=${placeholder "out"}/share/alps/themes"
20     "-X git.sr.ht/~migadu/alps.PluginDir=${placeholder "out"}/share/alps/plugins"
21   ];
23   patches = [
24     (fetchpatch {
25       name = "Issue-160-Alps-theme-has-a-enormous-move-to-list-sel";
26       url = "https://lists.sr.ht/~migadu/alps-devel/patches/30096/mbox";
27       hash = "sha256-Sz/SCkrrXZWrmJzjfPXi+UfCcbwsy6QiA7m34iiEFX0=";
28     })
29   ];
31   postPatch = ''
32     substituteInPlace plugin.go --replace "const PluginDir" "var PluginDir"
33   '';
35   postInstall = ''
36     mkdir -p "$out/share/alps"
37     cp -r themes plugins "$out/share/alps/"
38   '';
40   proxyVendor = true;
42   passthru.tests = { inherit(nixosTests) alps; };
44   meta = with lib; {
45     description = "Simple and extensible webmail";
46     homepage = "https://git.sr.ht/~migadu/alps";
47     license = licenses.mit;
48     maintainers = with maintainers; [ booklearner madonius hmenke ];
49     mainProgram = "alps";
50   };