linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / mozwire / default.nix
blob360c357213991d587f0da7d99f83d5b242823f1b
1 { rustPlatform, lib, stdenv, fetchFromGitHub, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "MozWire";
5   version = "0.7.0";
7   src = fetchFromGitHub {
8     owner = "NilsIrl";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "01bj3c34x9ywxygsz4rdyw5gc9cz8x6zzl5fd7db8qy8bx2lhlr9";
12   };
14   buildInputs = lib.optionals stdenv.isDarwin [ Security ];
16   cargoSha256 = "0yxnpnxwis46wz4j5rjzyyzrvh94hn8vzxmmrcmrdz3gkakg77hg";
18   meta = with lib; {
19     description = "MozillaVPN configuration manager giving Linux, macOS users (among others), access to MozillaVPN";
20     homepage = "https://github.com/NilsIrl/MozWire";
21     license = licenses.gpl3;
22     maintainers = with maintainers; [ siraben nilsirl ];
23   };