mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
update-systemd-resolved: init at 1.3.0
This commit is contained in:
parent
4b7cac98a1
commit
5766bd451a
34
pkgs/tools/networking/openvpn/update-systemd-resolved.nix
Normal file
34
pkgs/tools/networking/openvpn/update-systemd-resolved.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue