webtunnel: 0-unstable-2024-07-06 -> 0.0.3, build on all golang platforms (#439425)

authored by Peder Bergebakken Sundt and committed by GitHub 41b48aca 08daea43

+6 -6
+6 -6
pkgs/by-name/we/webtunnel/package.nix
··· 3 3 buildGoModule, 4 4 fetchFromGitLab, 5 5 }: 6 - buildGoModule { 6 + 7 + buildGoModule rec { 7 8 pname = "webtunnel"; 8 - version = "0-unstable-2024-07-06"; # package is not versioned upstream 9 + version = "0.0.3"; 10 + 9 11 src = fetchFromGitLab { 10 12 domain = "gitlab.torproject.org"; 11 13 group = "tpo"; 12 14 owner = "anti-censorship/pluggable-transports"; 13 15 repo = "webtunnel"; 14 - rev = "e64b1b3562f3ab50d06141ecd513a21ec74fe8c6"; 15 - hash = "sha256-25ZtoCe1bcN6VrSzMfwzT8xSO3xw2qzE4Me3Gi4GbVs="; 16 + rev = "v${version}"; 17 + hash = "sha256-HB95GCIJeO5fKUW23VHrtNZdc9x9fk2vnmI9JogDWSQ="; 16 18 }; 17 19 18 20 vendorHash = "sha256-3AAPySLAoMimXUOiy8Ctl+ghG5q+3dWRNGXHpl9nfG0="; ··· 22 24 homepage = "https://community.torproject.org/relay/setup/webtunnel/"; 23 25 maintainers = [ lib.maintainers.gbtb ]; 24 26 license = lib.licenses.mit; 25 - platforms = lib.platforms.linux; 26 27 }; 27 - 28 28 }