planify: 4.11.6 -> 4.12.0 (#379469)
[NixPkgs.git] / pkgs / by-name / sn / snowflake / package.nix
blob9179ba4b499c400b67d40ff75d1af84944d2ab37
2   lib,
3   buildGoModule,
4   fetchFromGitLab,
5 }:
7 buildGoModule rec {
8   pname = "snowflake";
9   version = "2.10.1";
11   src = fetchFromGitLab {
12     domain = "gitlab.torproject.org";
13     group = "tpo";
14     owner = "anti-censorship/pluggable-transports";
15     repo = "snowflake";
16     rev = "v${version}";
17     sha256 = "sha256-cpvLBC4mGz4iSP+d3qyKBtCkXNvC8YJ04nIbZuR/15M=";
18   };
20   vendorHash = "sha256-wCgG6CzxBAvhMICcmDm9a+JdtWs+rf3VU1XAICsc170=";
22   meta = with lib; {
23     description = "System to defeat internet censorship";
24     homepage = "https://snowflake.torproject.org/";
25     changelog = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/raw/v${version}/ChangeLog";
26     maintainers = with maintainers; [
27       bbjubjub
28       yayayayaka
29     ];
30     license = licenses.bsd3;
31   };