nixpkgs/pkgs/applications/networking/twingate/default.nix
2022-11-04 13:29:03 +01:00

52 lines
1.1 KiB
Nix

{ autoPatchelfHook
, curl
, dpkg
, dbus
, fetchurl
, lib
, libnl
, udev
, cryptsetup
, stdenv
}:
stdenv.mkDerivation rec {
pname = "twingate";
version = "1.0.60";
src = fetchurl {
url = "https://binaries.twingate.com/client/linux/DEB/${version}/twingate-amd64.deb";
sha256 = "b308c422af8a33ecd58e21a10a72c353351a189df67006e38d1ec029a93d5678";
};
buildInputs = [ dbus curl libnl udev cryptsetup ];
nativeBuildInputs = [ dpkg autoPatchelfHook ];
unpackCmd = "mkdir root ; dpkg-deb -x $curSrc root";
postPatch = ''
while read file; do
substituteInPlace "$file" \
--replace "/usr/bin" "$out/bin" \
--replace "/usr/sbin" "$out/bin"
done < <(find etc usr/lib usr/share -type f)
'';
installPhase = ''
mkdir $out
mv etc $out/
mv usr/bin $out/bin
mv usr/sbin/* $out/bin
mv usr/lib $out/lib
mv usr/share $out/share
'';
meta = with lib; {
description = "Twingate Client";
homepage = "https://twingate.com";
license = licenses.unfree;
maintainers = with maintainers; [ tonyshkurenko ];
platforms = platforms.linux;
};
}