mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ autoPatchelfHook
|
|
, curl
|
|
, dpkg
|
|
, dbus
|
|
, fetchurl
|
|
, lib
|
|
, libnl
|
|
, udev
|
|
, cryptsetup
|
|
, stdenv
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "twingate";
|
|
version = "2024.98.119300";
|
|
|
|
src = fetchurl {
|
|
url = "https://binaries.twingate.com/client/linux/DEB/x86_64/${version}/twingate-amd64.deb";
|
|
hash = "sha256-N0cabYHaF5H1EeriQRQL7bN5UM85oOGrm9pxGr1AlEk=";
|
|
};
|
|
|
|
buildInputs = [
|
|
dbus
|
|
curl
|
|
libnl
|
|
udev
|
|
cryptsetup
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
autoPatchelfHook
|
|
];
|
|
|
|
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
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) twingate; };
|
|
|
|
meta = with lib; {
|
|
description = "Twingate Client";
|
|
homepage = "https://twingate.com";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ tonyshkurenko ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|