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
2019-08-13 21:52:01 +00:00
in stdenv.mkDerivation {
name = "update-resolv-conf-2017-06-21";
src = fetchFromGitHub {
owner = "masterkorp";
repo = "openvpn-update-resolv-conf";
rev = "43093c2f970bf84cd374e18ec05ac6d9cae444b8";
sha256 = "1lf66bsgv2w6nzg1iqf25zpjf4ckcr45adkpgdq9gvhkfnvlp8av";
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 lib; {
2014-10-27 17:36:53 +00:00
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;
};
}