3
0
Fork 0
forked from mirrors/nixpkgs
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 12:59:29 +01:00
{ lib
, fetchCrate
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "vopono";
2023-01-06 22:05:00 +00:00
version = "0.10.4";
2021-10-17 12:59:29 +01:00
src = fetchCrate {
inherit pname version;
2023-01-06 22:05:00 +00:00
sha256 = "sha256-a9u8Ywxrdo4FFggotL8L5o5eDDu+MtcMVBG+jInXDVs=";
2021-10-17 12:59:29 +01:00
};
2023-01-06 22:05:00 +00:00
cargoHash = "sha256-oT74oj/6rKB1cuRiHnbc9QVUZQcDvvb4KZf09XuctNM=";
2021-10-17 12:59:29 +01: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 ];
};
}