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

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

26 lines
610 B
Nix
Raw Normal View History

2021-10-17 11:59:29 +00:00
{ lib
, fetchCrate
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "vopono";
2024-03-29 01:59:40 +00:00
version = "0.10.10";
2021-10-17 11:59:29 +00:00
src = fetchCrate {
inherit pname version;
2024-03-29 01:59:40 +00:00
hash = "sha256-HjubzbRsmRU33oI1p1kzCFUjC2YQJhVqljd/FHzAnMw=";
2021-10-17 11:59:29 +00:00
};
2024-03-29 01:59:40 +00:00
cargoHash = "sha256-YBDB1g8cUOo1hS8Fi03Bvpe63bolbPmhGbvT16G73js=";
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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "vopono";
2021-10-17 11:59:29 +00:00
};
}