ccac0475ad
git hosting has moved to gitlab
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ lib, stdenv, fetchgit
|
|
, makeWrapper
|
|
, nettools, gawk, systemd, openresolv, coreutils, gnugrep, iproute2
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "vpnc-scripts";
|
|
version = "unstable-2021-09-24";
|
|
src = fetchgit {
|
|
url = "https://gitlab.com/openconnect/vpnc-scripts.git";
|
|
rev = "b749c2cadc2f32e2efffa69302861f9a7d4a4e5f";
|
|
sha256 = "sha256:19aj6mfkclbkx6ycyd4xm7id1bq78ismw0y6z23f6s016k3sjc8c";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp vpnc-script $out/bin
|
|
'';
|
|
|
|
preFixup = ''
|
|
substituteInPlace $out/bin/vpnc-script \
|
|
--replace "which" "type -P"
|
|
'' + lib.optionalString stdenv.isLinux ''
|
|
substituteInPlace $out/bin/vpnc-script \
|
|
--replace "/sbin/resolvconf" "${openresolv}/bin/resolvconf" \
|
|
--replace "/usr/bin/resolvectl" "${systemd}/bin/resolvectl"
|
|
'' + ''
|
|
wrapProgram $out/bin/vpnc-script \
|
|
--prefix PATH : "${lib.makeBinPath ([ nettools gawk coreutils gnugrep ] ++ lib.optionals stdenv.isLinux [ openresolv iproute2 ])}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "script for vpnc to configure the network routing and name service";
|
|
homepage = "https://www.infradead.org/openconnect/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ jerith666 ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|