nixpkgs/pkgs/tools/networking/openvpn/update-resolv-conf.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, makeWrapper, openresolv, coreutils, systemd }:
2014-10-27 17:36:53 +00:00
let
binPath = lib.makeBinPath [ coreutils openresolv systemd ];
2014-10-27 17:36:53 +00:00
in stdenv.mkDerivation rec {
name = "update-resolv-conf-2016-09-30";
src = fetchFromGitHub {
owner = "masterkorp";
repo = "openvpn-update-resolv-conf";
rev = "09cb5ab5a50dfd6e77e852749d80bef52d7a6b34";
sha256 = "0s5cilph0p0wiixj7nlc7f3hqmr1mhvbfyapd0060n3y6xgps9y9";
2014-10-27 17:36:53 +00:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
install -Dm555 update-resolv-conf.sh $out/libexec/openvpn/update-resolv-conf
install -Dm555 update-systemd-network.sh $out/libexec/openvpn/update-systemd-network
2014-10-27 17:36:53 +00:00
for i in $out/libexec/openvpn/*; do
wrapProgram $i --prefix PATH : ${binPath}
done
2014-10-27 17:36:53 +00:00
'';
meta = with stdenv.lib; {
description = "Script to update your /etc/resolv.conf with DNS settings that come from the received push dhcp-options";
homepage = "https://github.com/masterkorp/openvpn-update-resolv-conf/";
maintainers = with maintainers; [ abbradar ];
2014-10-27 17:36:53 +00:00
license = licenses.gpl2;
platforms = platforms.unix;
};
}