nixpkgs/pkgs/applications/networking/browsers/captive-browser/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
637 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoPackage }:
2019-03-21 12:23:12 +00:00
buildGoPackage rec {
pname = "captive-browser";
version = "2021-08-01";
goPackagePath = pname;
2019-03-21 12:23:12 +00:00
src = fetchFromGitHub {
owner = "FiloSottile";
repo = "captive-browser";
rev = "9c707dc32afc6e4146e19b43a3406329c64b6f3c";
sha256 = "sha256-65lPo5tpE0M/VyyvlzlcVSuHX4AhhVuqK0UF4BIAH/Y=";
};
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 ma27 ];
2019-03-21 12:23:12 +00:00
};
}