about summary refs log tree commit diff
path: root/pkgs/by-name/gl/glider/package.nix
blob: 55304ada4c985073e6033a080e55dd09eadb3b27 (plain) (blame)
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
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
  pname = "glider";
  version = "0.16.3";

  src = fetchFromGitHub {
    owner = "nadoo";
    repo = "glider";
    rev = "v${version}";
    hash = "sha256-nM6jKFqyaxZbn0wyEt0xy9uTu9JyLRfGTNsGPTQOXQw=";
  };

  vendorHash = "sha256-PGIBBop/waZDeQvW7iSi/AzLye/4t7nNXjX8zJsS2eo=";

  ldflags = [
    "-s"
    "-w"
  ];

  postInstall = ''
    substituteInPlace systemd/glider@.service \
      --replace-fail "/usr/bin/glider" "$out/bin/glider"
    install -Dm444 -t "$out/lib/systemd/system/" systemd/glider@.service
  '';

  meta = with lib; {
    homepage = "https://github.com/nadoo/glider";
    description = "Forward proxy with multiple protocols support";
    license = licenses.gpl3Only;
    mainProgram = "glider";
    maintainers = with maintainers; [ oluceps ];
    platforms = platforms.linux;
  };
}