summary refs log tree commit diff
path: root/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix
blob: 514491c2be21b38577d2895f02ec3f434be91552 (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
{ lib, stdenv, fetchgit, makeWrapper, coreutils, gawk, util-linux }:

stdenv.mkDerivation {
  pname = "openvpn-learnaddress";
  version = "unstable-2013-10-21";

  src = fetchgit {
    url = "https://gist.github.com/4058733.git";
    rev = "19b03c3beb0190df46ea07bf4b68244acb8eae80";
    sha256 = "16pcyvyhwsx34i0cjkkx906lmrwdd9gvznvqdwlad4ha8l8f8z42";
  };

  nativeBuildInputs = [ makeWrapper ];
  buildInputs = [ coreutils gawk util-linux ];

  installPhase = ''
    install -Dm555 ovpn-learnaddress $out/libexec/openvpn/openvpn-learnaddress

    wrapProgram $out/libexec/openvpn/openvpn-learnaddress \
        --prefix PATH : ${lib.makeBinPath [ coreutils gawk util-linux ]}
  '';

  meta = {
    description = "Openvpn learn-address script to manage a hosts-like file";
    homepage = "https://gist.github.com/offlinehacker/4058733/";
    maintainers = [ lib.maintainers.offline ];
    platforms = lib.platforms.unix;
  };
}