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

25 lines
732 B
Nix
Raw Normal View History

2020-08-18 10:04:39 -04:00
{ rustPlatform, stdenv, fetchFromGitHub, Security }:
2020-08-19 23:09:28 -04:00
2020-08-18 10:04:39 -04:00
rustPlatform.buildRustPackage rec {
pname = "MozWire";
2020-10-29 12:44:35 -04:00
version = "0.7.0";
2020-08-18 10:04:39 -04:00
src = fetchFromGitHub {
owner = "NilsIrl";
repo = pname;
rev = "v${version}";
2020-10-29 12:44:35 -04:00
sha256 = "01bj3c34x9ywxygsz4rdyw5gc9cz8x6zzl5fd7db8qy8bx2lhlr9";
2020-08-18 10:04:39 -04:00
};
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2020-10-01 15:19:01 -04:00
2020-10-29 12:44:35 -04:00
cargoSha256 = "0yxnpnxwis46wz4j5rjzyyzrvh94hn8vzxmmrcmrdz3gkakg77hg";
2020-08-18 10:04:39 -04:00
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 ];
};
}