{ lib, stdenv, rustPlatform, fetchFromGitHub, llvmPackages, sqlite, installShellFiles, Security, libiconv }: rustPlatform.buildRustPackage rec { pname = "innernet"; version = "1.2.0"; src = fetchFromGitHub { owner = "tonarino"; repo = pname; rev = "v${version}"; sha256 = "sha256-Z4F5RYPVgFiiDBg6lxILjAh/a/rL7IJBqHIJ/tQyLnE="; }; cargoSha256 = "sha256-WSkN5aXMgfqZJAV1b3elF7kwf2f5OpcntKSf8620YcY="; nativeBuildInputs = with llvmPackages; [ llvm clang installShellFiles ]; buildInputs = [ sqlite ] ++ lib.optionals stdenv.isDarwin [ Security libiconv ]; LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; postInstall = '' installManPage doc/innernet-server.8.gz installManPage doc/innernet.8.gz ''; doInstallCheck = true; installCheckPhase = '' if [[ "$("$out/bin/${pname}"-server --version)" == "${pname}-server ${version}" ]]; then echo '${pname}-server smoke check passed' else echo '${pname}-server smoke check failed' return 1 fi if [[ "$("$out/bin/${pname}" --version)" == "${pname} ${version}" ]]; then echo '${pname} smoke check passed' else echo '${pname} smoke check failed' return 1 fi ''; meta = with lib; { description = "A private network system that uses WireGuard under the hood"; homepage = "https://github.com/tonarino/innernet"; license = licenses.mit; maintainers = with maintainers; [ tomberek _0x4A6F ]; }; }