summary refs log tree commit diff
path: root/pkgs/tools/networking/openvpn/update-resolv-conf.nix
blob: f5937f050043888662f7cde1d4988ccb77ff78cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchgit, makeWrapper, openresolv, coreutils }:

stdenv.mkDerivation rec {
  name = "update-resolv-conf-20141003";

  src = fetchgit {
    url = https://github.com/masterkorp/openvpn-update-resolv-conf/;
    rev = "dd968419373bce71b22bbd26de962e89eb470670";
    sha256 = "dd0e3ea3661253d565bda876eb52a3f8461a3fc8237a81c40809c2071f83add1";
  };

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    install -Dm555 update-resolv-conf.sh $out/libexec/openvpn/update-resolv-conf
    sed -i 's,^\(RESOLVCONF=\).*,\1resolvconf,' $out/libexec/openvpn/update-resolv-conf

    wrapProgram $out/libexec/openvpn/update-resolv-conf \
        --prefix PATH : ${coreutils}/bin:${openresolv}/sbin
  '';

  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 ];
    license = licenses.gpl2;
    platforms = platforms.unix;
  };
}