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-11-04 21:46:27 +00:00
version = "0.10.7";
2021-10-17 11:59:29 +00:00
src = fetchCrate {
inherit pname version;
2023-11-04 21:46:27 +00:00
hash = "sha256-LaUoaZhOA/3o5DyKqq17u3Sf+lvkxMXkkwMEf6YLnCI=";
2021-10-17 11:59:29 +00:00
};
2023-11-04 21:46:27 +00:00
cargoHash = "sha256-Aef0A+4de3vWlK2zOmUmcGGO6XD1DNYwcZ1ryIvo7mM=";
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 ];
};
}