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:
parent
39b51feb80
commit
655cc5e747
|
@ -1,21 +1,21 @@
|
||||||
{ lib, fetchFromGitHub, buildGoPackage }:
|
{ lib, fetchFromGitHub, buildGoPackage }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "captive-browser";
|
pname = "captive-browser";
|
||||||
version = "2019-04-16";
|
version = "2021-08-01";
|
||||||
goPackagePath = name;
|
goPackagePath = pname;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "FiloSottile";
|
owner = "FiloSottile";
|
||||||
repo = "captive-browser";
|
repo = "captive-browser";
|
||||||
rev = "08450562e58bf9564ee98ad64ef7b2800e53338f";
|
rev = "9c707dc32afc6e4146e19b43a3406329c64b6f3c";
|
||||||
sha256 = "17icgjg7h0xm8g4yy38qjhsvlz9pmlmj9kydz01y2nyl0v02i648";
|
sha256 = "sha256-65lPo5tpE0M/VyyvlzlcVSuHX4AhhVuqK0UF4BIAH/Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Dedicated Chrome instance to log into captive portals without messing with DNS settings";
|
description = "Dedicated Chrome instance to log into captive portals without messing with DNS settings";
|
||||||
homepage = "https://blog.filippo.io/captive-browser";
|
homepage = "https://blog.filippo.io/captive-browser";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ volth ];
|
maintainers = with maintainers; [ volth ma27 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue