about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorwackbyte <wackbyte@pm.me>2022-01-25 20:39:59 -0500
committerwackbyte <wackbyte@pm.me>2022-01-25 20:39:59 -0500
commit3d88b59e3e58665e57dbbc6cd583c21ae7176186 (patch)
tree0eac3117b1d5dac731c049a79b1df68da942ba68 /pkgs/games
parent8fd3da81873b6cef33b9267b2dbffb15efa0017c (diff)
downloadnixlib-3d88b59e3e58665e57dbbc6cd583c21ae7176186.tar
nixlib-3d88b59e3e58665e57dbbc6cd583c21ae7176186.tar.gz
nixlib-3d88b59e3e58665e57dbbc6cd583c21ae7176186.tar.bz2
nixlib-3d88b59e3e58665e57dbbc6cd583c21ae7176186.tar.lz
nixlib-3d88b59e3e58665e57dbbc6cd583c21ae7176186.tar.xz
nixlib-3d88b59e3e58665e57dbbc6cd583c21ae7176186.tar.zst
nixlib-3d88b59e3e58665e57dbbc6cd583c21ae7176186.zip
tetrio-desktop: fix build and audio
Changes the source to a direct download and adds libpulseaudio to the library path
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/tetrio-desktop/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/games/tetrio-desktop/default.nix b/pkgs/games/tetrio-desktop/default.nix
index c700aba72fc9..93d80314c661 100644
--- a/pkgs/games/tetrio-desktop/default.nix
+++ b/pkgs/games/tetrio-desktop/default.nix
@@ -4,6 +4,7 @@
 , autoPatchelfHook
 , alsa-lib
 , cups
+, libpulseaudio
 , libX11
 , libXScrnSaver
 , libXtst
@@ -18,7 +19,7 @@ stdenv.mkDerivation rec {
   version = "8.0.0";
 
   src = fetchurl {
-    url = "https://web.archive.org/web/20211130172544/https://tetr.io/about/desktop/builds/TETR.IO%20Setup.deb";
+    url = "https://web.archive.org/web/20211228025517if_/https://tetr.io/about/desktop/builds/TETR.IO%20Setup.deb";
     name = "tetrio-desktop.deb";
     sha256 = "1nlblfhrph4cw8rpic9icrs78mzrxyskl7ggyy2i8bk9i07i21xf";
   };
@@ -43,6 +44,7 @@ stdenv.mkDerivation rec {
   libPath = lib.makeLibraryPath [
     alsa-lib
     cups
+    libpulseaudio
     libX11
     libXScrnSaver
     libXtst