mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
631 B
Nix
22 lines
631 B
Nix
{ lib, fetchFromGitHub, buildGoPackage }:
|
|
|
|
buildGoPackage rec {
|
|
name = "captive-browser";
|
|
version = "2019-04-16";
|
|
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;
|
|
maintainers = with maintainers; [ volth ];
|
|
};
|
|
}
|