3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/snowflake/default.nix

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

22 lines
578 B
Nix
Raw Normal View History

2022-01-18 14:16:04 +00:00
{ lib, buildGoModule, fetchgit }:
buildGoModule rec {
pname = "snowflake";
version = "2.3.1";
2022-01-18 14:16:04 +00:00
src = fetchgit {
url = "https://git.torproject.org/pluggable-transports/${pname}";
rev = "v${version}";
sha256 = "sha256-4/ZTLyST73krOL87am28TM+1mktchpoCSaASMqQl5e8=";
2022-01-18 14:16:04 +00:00
};
2022-08-02 04:44:10 +01:00
vendorSha256 = "sha256-a2Ng+D1I0v5odChM6XVVnNwea/0SOTOmdm2dqKaSU3s=";
2022-01-18 14:16:04 +00:00
meta = with lib; {
description = "System to defeat internet censorship";
homepage = "https://snowflake.torproject.org/";
maintainers = with maintainers; [ lourkeur ];
license = licenses.bsd3;
};
}