2020-03-27 07:33:21 +00:00
|
|
|
{ lib, fetchgit, buildGoModule }:
|
2019-04-30 02:04:17 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "obfs4";
|
|
|
|
version = "0.0.10";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = meta.repositories.git;
|
|
|
|
rev = "refs/tags/${pname}proxy-${version}";
|
|
|
|
sha256 = "05aqmw8x8s0yqyqmdj5zcsq06gsbcmrlcd52gaqm20m1pg9503ad";
|
|
|
|
};
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "0h3gjxv26pc6cysvy1hny2f4abw6i847dk8fx0m113ixx9qghk87";
|
2019-04-30 02:04:17 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-04-30 02:04:17 +01:00
|
|
|
description = "A pluggable transport proxy";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.torproject.org/projects/obfsproxy";
|
|
|
|
repositories.git = "https://git.torproject.org/pluggable-transports/obfs4.git";
|
2019-04-30 02:04:17 +01:00
|
|
|
maintainers = with maintainers; [ phreedom thoughtpolice ];
|
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|