nixpkgs/pkgs/tools/networking/vopono/default.nix
2021-12-21 09:57:35 -03:00

25 lines
581 B
Nix

{ lib
, fetchCrate
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "vopono";
version = "0.8.10";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-+ZRvuUA7BvM8YW1QZQ7iJrLvleitl1hqEOrTkrLVSes";
};
cargoHash = "sha256-zM5JufS0qEYPEEwl6iPZYge3cssrsLu835AhAd8F3vc";
meta = with lib; {
description = "Run applications through VPN connections in network namespaces";
homepage = "https://github.com/jamesmcm/vopono";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}