1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 03:53:41 +00:00
nixpkgs/pkgs/applications/networking/browsers/captive-browser/default.nix

23 lines
662 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoPackage }:
2019-03-21 12:23:12 +00:00
buildGoPackage rec {
name = "captive-browser";
version = "2019-04-16";
2019-03-21 12:23:12 +00:00
goPackagePath = name;
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;
2020-01-19 09:27:27 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ volth ];
2019-03-21 12:23:12 +00:00
};
}