summary refs log blame commit diff
path: root/pkgs/tools/networking/openvpn/update-systemd-resolved.nix
blob: 5a34d5a7ffe774934cf5d3d6f2d9e438d46fec4b (plain) (tree)
1
2
3

                              
                                             



















                                                                    
                                                                                  

     
                    
                                                                                                                              
                                                                       




                                              
{ lib, stdenv, fetchFromGitHub
, makeWrapper
, iproute2, systemd, coreutils, util-linux }:

stdenv.mkDerivation rec {
  pname = "update-systemd-resolved";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "jonathanio";
    repo = "update-systemd-resolved";
    rev = "v${version}";
    sha256 = "19zhbpyms57yb70hi0ws5sbkpk2yqp9nnix3f86r36h1g93m70lm";
  };

  nativeBuildInputs = [ makeWrapper ];

  buildFlags = [
    "PREFIX=${placeholder "out"}/libexec/openvpn"
  ];

  installPhase = ''
    wrapProgram $out/libexec/openvpn/update-systemd-resolved \
      --prefix PATH : ${lib.makeBinPath [ iproute2 systemd coreutils util-linux ]}
  '';

  meta = with lib; {
    description = "Helper script for OpenVPN to directly update the DNS settings of a link through systemd-resolved via DBus";
    homepage = "https://github.com/jonathanio/update-systemd-resolved";
    maintainers = with maintainers; [ eadwu ];
    license = licenses.gpl3;
    platforms = platforms.unix;
  };
}