Files
nixpkgs/pkgs/by-name/co/conjure-tor/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

30 lines
858 B
Nix

{
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 ];
};
}