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
581 B
Nix
Raw Normal View History

2021-10-17 11:59:29 +00:00
{ lib
, fetchCrate
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "vopono";
2023-05-06 11:40:21 +00:00
version = "0.10.6";
2021-10-17 11:59:29 +00:00
src = fetchCrate {
inherit pname version;
2023-05-06 11:40:21 +00:00
hash = "sha256-pxzWhaxihGQ6n6KyliiPK3YyVdUMP8OlJwT9Msna1OE=";
2021-10-17 11:59:29 +00:00
};
2023-05-06 11:40:21 +00:00
cargoHash = "sha256-pfZDnPWDjOaGov8jEdeyQdP9NWWES+9pSM5yGD31YB4=";
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 ];
};
}