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

25 lines
591 B
Nix
Raw Normal View History

2021-10-17 13:59:29 +02:00
{ lib
, fetchCrate
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "vopono";
2021-10-23 21:50:50 +02:00
version = "0.8.7";
2021-10-17 13:59:29 +02:00
src = fetchCrate {
inherit pname version;
2021-10-23 21:50:50 +02:00
sha256 = "0kpkvnw12cvcswsx2p8xicyn57i5fd7p5d7n1dqq9x18q6am181p";
2021-10-17 13:59:29 +02:00
};
2021-10-23 21:50:50 +02:00
cargoHash = "sha256:1y07iazb7rwgs0viwn81qmwbcnxza9n89w2jh0r4fq98rr337081";
2021-10-17 13:59:29 +02: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 ];
};
}