summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/captive-browser/default.nix
blob: 335223883faedcc560334bcd968e09c19acdb22a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
  pname = "captive-browser";
  version = "2019-04-16";
  goPackagePath = pname;

  src = fetchFromGitHub {
    owner  = "FiloSottile";
    repo   = "captive-browser";
    rev    = "08450562e58bf9564ee98ad64ef7b2800e53338f";
    sha256 = "17icgjg7h0xm8g4yy38qjhsvlz9pmlmj9kydz01y2nyl0v02i648";
  };

  meta = with lib; {
    description = "Dedicated Chrome instance to log into captive portals without messing with DNS settings";
    homepage = "https://blog.filippo.io/captive-browser";
    license = licenses.mit;
    maintainers = with maintainers; [ volth ];
  };
}