nixpkgs/pkgs/tools/networking/openvpn/update-systemd-resolved.nix

35 lines
986 B
Nix
Raw Normal View History

2019-10-01 12:40:43 +00:00
{ lib, stdenv, fetchFromGitHub
, makeWrapper
2020-11-24 15:29:28 +00:00
, iproute, systemd, coreutils, util-linux }:
2019-10-01 12:40:43 +00:00
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 \
2020-11-24 15:29:28 +00:00
--prefix PATH : ${lib.makeBinPath [ iproute systemd coreutils util-linux ]}
2019-10-01 12:40:43 +00:00
'';
meta = with lib; {
2019-10-01 12:40:43 +00:00
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";
2019-10-01 12:40:43 +00:00
maintainers = with maintainers; [ eadwu ];
license = licenses.gpl3;
platforms = platforms.unix;
};
}