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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
583 B
Nix
Raw Normal View History

2021-10-17 11:59:29 +00:00
{ lib
, fetchCrate
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "vopono";
2022-08-21 20:44:17 +00:00
version = "0.10.3";
2021-10-17 11:59:29 +00:00
src = fetchCrate {
inherit pname version;
2022-08-21 20:44:17 +00:00
sha256 = "sha256-hbijcLX4CwnQVyM7XZneZH1pFEmZceN0ougltldyWnc=";
2021-10-17 11:59:29 +00:00
};
2022-08-21 20:44:17 +00:00
cargoHash = "sha256-FSgI6ZFRxl9uE1yA4LkdHcI2fymvMqkibxgTNTlJq5g=";
2021-10-17 11:59:29 +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 ];
};
}