2021-10-17 09:34:42 +00:00
|
|
|
{ lib
|
|
|
|
, fetchCrate
|
|
|
|
, rustPlatform
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "vopono";
|
2024-01-25 14:12:00 +00:00
|
|
|
version = "0.10.8";
|
2021-10-17 09:34:42 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-01-25 14:12:00 +00:00
|
|
|
hash = "sha256-D+yROQidu+a3qzCNrVxn0RNutIHNcIjMSNqPLHwA+zA=";
|
2021-10-17 09:34:42 +00:00
|
|
|
};
|
|
|
|
|
2024-01-25 14:12:00 +00:00
|
|
|
cargoHash = "sha256-oKoSHjABtaJYGyJ/G0zXC42XpXiUXwdPsOhyL1+D3GI=";
|
2021-10-17 09:34:42 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|