summary refs log blame commit diff
path: root/pkgs/tools/networking/vopono/default.nix
blob: aa49d93ef660c0306e05b2b1a5469c69ec50002f (plain) (tree)
1
2
3
4
5
6
7
8






                                   
                     


                          
                                                                  

    
                                                                   








                                                                                   
{ lib
, fetchCrate
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
  pname = "vopono";
  version = "0.8.10";

  src = fetchCrate {
    inherit pname version;
    sha256 = "sha256-+ZRvuUA7BvM8YW1QZQ7iJrLvleitl1hqEOrTkrLVSes";
  };

  cargoHash = "sha256-zM5JufS0qEYPEEwl6iPZYge3cssrsLu835AhAd8F3vc";

  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 ];
  };
}