diff options
| author | mksafavi <mksafavi@gmail.com> | 2024-12-22 21:21:09 +0330 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-02-02 11:16:03 +0000 |
| commit | 6e92d10ffbaf227e9de594fb09d4f8769e4a14a0 (patch) | |
| tree | 0bcbe121032b3d4fafd0a2aa6d4b802a4e0c070a | |
| parent | Merge: [Backport release-24.11] matrix-synapse: 1.122.0 -> 1.123.0 (#378663) (diff) | |
| download | nixpkgs-6e92d10ffbaf227e9de594fb09d4f8769e4a14a0.tar.gz | |
conjure-tor: init at 0-unstable-2024-11-11origin/backport-367417-to-release-24.11
(cherry picked from commit fdc1faed2944c04a2ef39a3789738c5a53544ce1)
| -rw-r--r-- | pkgs/by-name/co/conjure-tor/package.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/by-name/co/conjure-tor/package.nix b/pkgs/by-name/co/conjure-tor/package.nix new file mode 100644 index 000000000000..98794f2791c8 --- /dev/null +++ b/pkgs/by-name/co/conjure-tor/package.nix @@ -0,0 +1,29 @@ +{ + lib, + buildGoModule, + fetchFromGitLab, + nix-update-script, +}: +buildGoModule { + pname = "conjure-tor"; + version = "0-unstable-2024-11-11"; + + src = fetchFromGitLab { + domain = "gitlab.torproject.org"; + owner = "tpo"; + repo = "anti-censorship/pluggable-transports/conjure"; + rev = "a773daab19928f37caf2ec4181f0da2e0d20d35a"; + hash = "sha256-WC9QEgwhu7ynf2p8SXzMf8JNp6ZzF4S9Lk2SjUWj2lU="; + }; + + vendorHash = "sha256-vdcpNYa2gjacK0DMQ6VP9kX6f10JOHn8+Wr1Ql+lI7o="; + + passthru.updateScript = nix-update-script { }; + + meta = { + homepage = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/conjure"; + description = "Refraction networking system that routes traffic to endpoints in an ISP's unused IP address space"; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mksafavi ]; + }; +} |
