captive-browser: 2019-04-16 -> 2021-08-01

Had to do this manually, because this `name`->`pname` "refactoring"
makes automated backports impossible.

Changes: 08450562e5...9c707dc32a
(cherry picked from commit bee0468d7ba37fffc19d509eaffdd49bf30ed9e1)
This commit is contained in:
Maximilian Bosch 2021-08-01 23:13:09 +02:00
parent 39b51feb80
commit 655cc5e747
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
1 changed files with 6 additions and 6 deletions

View File

@ -1,21 +1,21 @@
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "captive-browser";
version = "2019-04-16";
goPackagePath = name;
pname = "captive-browser";
version = "2021-08-01";
goPackagePath = pname;
src = fetchFromGitHub {
owner = "FiloSottile";
repo = "captive-browser";
rev = "08450562e58bf9564ee98ad64ef7b2800e53338f";
sha256 = "17icgjg7h0xm8g4yy38qjhsvlz9pmlmj9kydz01y2nyl0v02i648";
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 ];
maintainers = with maintainers; [ volth ma27 ];
};
}