update-systemd-resolved: init at 1.3.0

This commit is contained in:
Edmund Wu 2019-10-01 08:40:43 -04:00
parent 4b7cac98a1
commit 5766bd451a
No known key found for this signature in database
GPG key ID: 76AA3F9F2BD3E3A0
2 changed files with 38 additions and 2 deletions

View file

@ -0,0 +1,34 @@
{ lib, stdenv, fetchFromGitHub
, makeWrapper
, iproute, systemd, coreutils, utillinux }:
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 [ iproute systemd coreutils utillinux ]}
'';
meta = with stdenv.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;
};
}

View file

@ -5272,6 +5272,8 @@ in
update-resolv-conf = callPackage ../tools/networking/openvpn/update-resolv-conf.nix { };
update-systemd-resolved = callPackage ../tools/networking/openvpn/update-systemd-resolved.nix { };
opae = callPackage ../development/libraries/opae { };
opentracing-cpp = callPackage ../development/libraries/opentracing-cpp { };
@ -15477,11 +15479,11 @@ in
bridge-utils = callPackage ../os-specific/linux/bridge-utils { };
busybox = callPackage ../os-specific/linux/busybox { };
busybox-sandbox-shell = callPackage ../os-specific/linux/busybox/sandbox-shell.nix {
busybox-sandbox-shell = callPackage ../os-specific/linux/busybox/sandbox-shell.nix {
# musl roadmap has RISC-V support projected for 1.1.20
busybox = if !stdenv.hostPlatform.isRiscV && stdenv.hostPlatform.libc != "bionic"
then pkgsStatic.busybox
else busybox;
else busybox;
};
cachefilesd = callPackage ../os-specific/linux/cachefilesd { };