mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
279d00a8f5
Co-authored-by: Yaroslav Bolyukin <iam@lach.pw>
136 lines
3.2 KiB
Nix
136 lines
3.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
asio,
|
|
glib,
|
|
jsoncpp,
|
|
libcap_ng,
|
|
libnl,
|
|
libuuid,
|
|
lz4,
|
|
openssl,
|
|
pkg-config,
|
|
protobuf,
|
|
python3,
|
|
systemd,
|
|
tinyxml-2,
|
|
wrapGAppsHook3,
|
|
gobject-introspection,
|
|
meson,
|
|
ninja,
|
|
gdbuspp,
|
|
cmake,
|
|
git,
|
|
enableSystemdResolved ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openvpn3";
|
|
# also update openvpn3-core
|
|
version = "23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenVPN";
|
|
repo = "openvpn3-linux";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-5gkutqyUPZDwRPzSFdUXg2G5mtQKbdhZu8xnNAdXoF0=";
|
|
# `openvpn3-core` is a submodule.
|
|
# TODO: make it into a separate package
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
# Merged in upstream, will land in v24
|
|
# https://github.com/OpenVPN/openvpn3-linux/commit/75abb7dc9366ba85fb1a144d88f02a1e8a62f538
|
|
./0001-build-reduce-hardcode-in-asio_path.patch
|
|
./0002-build-allow-installation-directories-customization.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
echo '#define OPENVPN_VERSION "3.git:unknown:unknown"
|
|
#define PACKAGE_GUIVERSION "v${builtins.replaceStrings [ "_" ] [ ":" ] version}"
|
|
#define PACKAGE_NAME "openvpn3-linux"
|
|
' > ./src/build-version.h
|
|
|
|
patchShebangs \
|
|
./scripts \
|
|
./src/python/{openvpn2,openvpn3-as,openvpn3-autoload} \
|
|
./distro/systemd/openvpn3-systemd \
|
|
./src/tests/dbus/netcfg-subscription-test \
|
|
./src/shell/bash-completion/gen-openvpn2-completion.py
|
|
'';
|
|
|
|
pythonPath = python3.withPackages (ps: [
|
|
ps.dbus-python
|
|
ps.pygobject3
|
|
ps.systemd
|
|
]);
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
cmake
|
|
git
|
|
|
|
python3.pkgs.wrapPython
|
|
python3.pkgs.docutils
|
|
python3.pkgs.jinja2
|
|
python3.pkgs.dbus-python
|
|
wrapGAppsHook3
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
asio
|
|
glib
|
|
jsoncpp
|
|
libcap_ng
|
|
libnl
|
|
libuuid
|
|
lz4
|
|
openssl
|
|
protobuf
|
|
tinyxml-2
|
|
gdbuspp
|
|
] ++ lib.optionals enableSystemdResolved [ systemd.dev ];
|
|
|
|
mesonFlags = [
|
|
(lib.mesonOption "selinux" "disabled")
|
|
(lib.mesonOption "selinux_policy" "disabled")
|
|
(lib.mesonOption "bash-completion" "enabled")
|
|
(lib.mesonOption "test_programs" "disabled")
|
|
(lib.mesonOption "unit_tests" "disabled")
|
|
(lib.mesonOption "asio_path" "${asio}")
|
|
(lib.mesonOption "dbus_policy_dir" "${placeholder "out"}/share/dbus-1/system.d")
|
|
(lib.mesonOption "dbus_system_service_dir" "${placeholder "out"}/share/dbus-1/system-services")
|
|
(lib.mesonOption "systemd_system_unit_dir" "${placeholder "out"}/lib/systemd/system")
|
|
(lib.mesonOption "create_statedir" "disabled")
|
|
(lib.mesonOption "sharedstatedir" "/etc")
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
postFixup = ''
|
|
wrapPythonPrograms
|
|
wrapPythonProgramsIn "$out/libexec/openvpn3-linux" "$out ${pythonPath}"
|
|
'';
|
|
|
|
NIX_LDFLAGS = "-lpthread";
|
|
|
|
meta = {
|
|
description = "OpenVPN 3 Linux client";
|
|
license = lib.licenses.agpl3Plus;
|
|
homepage = "https://github.com/OpenVPN/openvpn3-linux/";
|
|
changelog = "https://github.com/OpenVPN/openvpn3-linux/releases/tag/v${version}";
|
|
maintainers = with lib.maintainers; [
|
|
shamilton
|
|
progrm_jarvis
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|