3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/vopono/default.nix

25 lines
581 B
Nix
Raw Normal View History

2021-10-17 12:59:29 +01:00
{ lib
, fetchCrate
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "vopono";
2021-12-21 12:57:35 +00:00
version = "0.8.10";
2021-10-17 12:59:29 +01:00
src = fetchCrate {
inherit pname version;
2021-12-21 12:57:35 +00:00
sha256 = "sha256-+ZRvuUA7BvM8YW1QZQ7iJrLvleitl1hqEOrTkrLVSes";
2021-10-17 12:59:29 +01:00
};
2021-12-21 12:57:35 +00:00
cargoHash = "sha256-zM5JufS0qEYPEEwl6iPZYge3cssrsLu835AhAd8F3vc";
2021-10-17 12:59:29 +01:00
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 ];
};
}