nixpkgs/pkgs/tools/networking/obfs4/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
631 B
Nix
Raw Normal View History

{ lib, fetchgit, buildGoModule }:
2019-04-30 01:04:17 +00:00
buildGoModule rec {
pname = "obfs4";
2022-04-13 12:28:05 +00:00
version = "0.0.12";
2019-04-30 01:04:17 +00:00
src = fetchgit {
url = "https://git.torproject.org/pluggable-transports/obfs4.git";
2022-04-13 12:28:05 +00:00
rev = "a564bc3840bc788605e1a8155f4b95ce0d70c6db"; # not tagged
sha256 = "0hqk540q94sh4wvm31jjcvpdklhf8r35in4yii7xnfn58a7amfkc";
2019-04-30 01:04:17 +00:00
};
2022-04-13 12:28:05 +00:00
vendorSha256 = "0yjanv5piygffpdfysviijl7cql2k0r05bsxnlj4hbamsriz9xqy";
2019-04-30 01:04:17 +00:00
meta = with lib; {
2019-04-30 01:04:17 +00:00
description = "A pluggable transport proxy";
homepage = "https://www.torproject.org/projects/obfsproxy";
2021-12-18 09:25:46 +00:00
maintainers = with maintainers; [ thoughtpolice ];
mainProgram = "obfs4proxy";
2019-04-30 01:04:17 +00:00
};
}