nixpkgs-suyu/pkgs/tools/networking/mozwire/default.nix

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

35 lines
788 B
Nix
Raw Permalink Normal View History

2022-10-07 02:56:42 +02:00
{ rustPlatform
, lib
, stdenv
, fetchFromGitHub
2023-02-20 00:03:27 +01:00
, CoreServices
2022-10-07 02:56:42 +02:00
, Security
}:
2020-08-20 05:09:28 +02:00
2020-08-18 16:04:39 +02:00
rustPlatform.buildRustPackage rec {
pname = "MozWire";
2023-02-20 00:03:27 +01:00
version = "0.8.1";
2020-08-18 16:04:39 +02:00
src = fetchFromGitHub {
owner = "NilsIrl";
repo = pname;
rev = "v${version}";
2023-02-20 00:03:27 +01:00
hash = "sha256-2i8C1XgfI3MXnwXZzY6n8tIcw45G9h3vZqRlFaVoLH0=";
2020-08-18 16:04:39 +02:00
};
2023-02-20 00:03:27 +01:00
buildInputs = lib.optionals stdenv.isDarwin [
CoreServices
Security
];
2020-10-01 21:19:01 +02:00
2023-02-20 00:03:27 +01:00
cargoHash = "sha256-YXVH7kx5CiurTeXiphjDgcYxxovKtTF3Q9y/XOyVPUA=";
2020-08-18 16:04:39 +02:00
meta = with lib; {
2020-08-18 16:04:39 +02:00
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 ];
2024-02-11 03:19:15 +01:00
mainProgram = "mozwire";
2020-08-18 16:04:39 +02:00
};
}