aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/networking/mozwire/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/networking/mozwire/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/networking/mozwire/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/networking/mozwire/default.nix b/nixpkgs/pkgs/tools/networking/mozwire/default.nix
new file mode 100644
index 00000000000..6264672cfaa
--- /dev/null
+++ b/nixpkgs/pkgs/tools/networking/mozwire/default.nix
@@ -0,0 +1,24 @@
+{ rustPlatform, stdenv, fetchFromGitHub, Security }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "MozWire";
+ version = "0.5.1";
+
+ src = fetchFromGitHub {
+ owner = "NilsIrl";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "07icgswmfvrvlm3mkm78pbbk6m2hb73j7ffj7r77whzb11v027v1";
+ };
+
+ buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
+
+ cargoSha256 = "10lhz7bdlfqj7wgsqnsxdfskms33pvj176fhf4kwci7nb8vgai4b";
+
+ meta = with stdenv.lib; {
+ description = "MozillaVPN configuration manager giving Linux, macOS users (among others), access to MozillaVPN";
+ homepage = "https://github.com/NilsIrl/MozWire";
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ siraben nilsirl ];
+ };
+}