Files
nixpkgs/pkgs/by-name/te/tetrd/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

87 lines
1.6 KiB
Nix

{
stdenv,
lib,
fetchurl,
autoPatchelfHook,
makeWrapper,
c-ares,
ffmpeg,
libevent,
libvpx,
libxslt,
xorg,
minizip,
nss,
re2,
snappy,
libnotify,
libappindicator-gtk3,
libappindicator,
udev,
libgbm,
}:
stdenv.mkDerivation rec {
pname = "tetrd";
version = "1.0.4";
src = fetchurl {
url = "https://web.archive.org/web/20211130190525/https://download.tetrd.app/files/tetrd.linux_amd64.pkg.tar.xz";
sha256 = "1bxp7rg2dm9nnvkgg48xd156d0jgdf35flaw0bwzkkh3zz9ysry2";
};
sourceRoot = ".";
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [
autoPatchelfHook
makeWrapper
];
buildInputs = [
c-ares
ffmpeg
libevent
libvpx
libxslt
xorg.libXScrnSaver
xorg.libXdamage
xorg.libXtst
minizip
nss
re2
snappy
libnotify
libappindicator-gtk3
libappindicator
udev
libgbm
];
installPhase = ''
runHook preInstall
mkdir -p $out/opt
cp -r $sourceRoot/opt/Tetrd $out/opt
cp -r $sourceRoot/usr/share $out
wrapProgram $out/opt/Tetrd/tetrd \
--prefix LD_LIBRARY_PATH ":" ${lib.makeLibraryPath buildInputs}
runHook postInstall
'';
postFixup = ''
substituteInPlace $out/share/applications/tetrd.desktop --replace /opt $out/opt
'';
meta = with lib; {
description = "Share your internet connection from your device to your PC and vice versa through a USB cable";
homepage = "https://tetrd.app";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
};
}