2021-01-05 21:45:51 +01:00
|
|
|
{ autoPatchelfHook
|
|
|
|
, fetchurl
|
|
|
|
, lib
|
|
|
|
, makeDesktopItem
|
|
|
|
, makeWrapper
|
|
|
|
, stdenv
|
|
|
|
, wrapGAppsHook
|
|
|
|
, at-spi2-core
|
|
|
|
, atk
|
|
|
|
, alsaLib
|
|
|
|
, cairo
|
|
|
|
, cups
|
|
|
|
, dbus
|
|
|
|
, expat
|
|
|
|
, gcc-unwrapped
|
|
|
|
, gdk-pixbuf
|
|
|
|
, glib
|
|
|
|
, pango
|
|
|
|
, gtk3-x11
|
|
|
|
, libudev0-shim
|
|
|
|
, libuuid
|
|
|
|
, nss
|
|
|
|
, nspr
|
|
|
|
, xorg
|
|
|
|
, streamlink
|
|
|
|
}:
|
2020-04-26 14:56:27 +02:00
|
|
|
let
|
|
|
|
basename = "streamlink-twitch-gui";
|
|
|
|
runtimeLibs = lib.makeLibraryPath [ libudev0-shim ];
|
|
|
|
arch =
|
|
|
|
if stdenv.hostPlatform.system == "x86_64-linux"
|
|
|
|
then
|
|
|
|
"linux64"
|
|
|
|
else
|
|
|
|
"linux32";
|
|
|
|
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "${basename}-bin";
|
2021-01-05 21:45:51 +01:00
|
|
|
version = "1.11.0";
|
2020-04-26 14:56:27 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/streamlink/${basename}/releases/download/v${version}/${basename}-v${version}-${arch}.tar.gz";
|
|
|
|
sha256 =
|
|
|
|
if arch == "linux64"
|
|
|
|
then
|
2021-01-05 21:45:51 +01:00
|
|
|
"0y96nziavvpdvrpn58p6a175kaa8cgadp19rnbm250x9cypn1d9y"
|
2020-04-26 14:56:27 +02:00
|
|
|
else
|
2021-01-05 21:45:51 +01:00
|
|
|
"0sfmhqf55w7wavqy4idsqpkf5p7l8sapjxap6xvyzpz4z5z6xr7y";
|
2020-04-26 14:56:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = with xorg; [
|
|
|
|
at-spi2-core
|
|
|
|
atk
|
|
|
|
alsaLib
|
|
|
|
autoPatchelfHook
|
|
|
|
cairo
|
|
|
|
cups.lib
|
|
|
|
dbus.daemon.lib
|
|
|
|
expat
|
|
|
|
gcc-unwrapped
|
|
|
|
gdk-pixbuf
|
|
|
|
glib
|
2020-10-25 20:38:25 +01:00
|
|
|
pango
|
2020-04-26 14:56:27 +02:00
|
|
|
gtk3-x11
|
|
|
|
nss
|
|
|
|
nspr
|
|
|
|
libuuid
|
|
|
|
libX11
|
|
|
|
libxcb
|
|
|
|
libXcomposite
|
|
|
|
libXcursor
|
|
|
|
libXdamage
|
|
|
|
libXext
|
|
|
|
libXfixes
|
|
|
|
libXi
|
|
|
|
libXrandr
|
|
|
|
libXrender
|
|
|
|
libXScrnSaver
|
|
|
|
libXtst
|
|
|
|
makeWrapper
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ streamlink ];
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/{bin,opt/${basename},share}
|
|
|
|
|
|
|
|
# Install all files, remove unnecessary ones
|
|
|
|
cp -a . $out/opt/${basename}/
|
|
|
|
rm -r $out/opt/${basename}/{{add,remove}-menuitem.sh,credits.html,icons/}
|
|
|
|
|
|
|
|
wrapProgram $out/opt/${basename}/${basename} --add-flags "--no-version-check" --prefix LD_LIBRARY_PATH : ${runtimeLibs}
|
|
|
|
|
|
|
|
ln -s "$out/opt/${basename}/${basename}" $out/bin/
|
|
|
|
ln -s "${desktopItem}/share/applications" $out/share/
|
|
|
|
'';
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = basename;
|
|
|
|
exec = basename;
|
|
|
|
icon = basename;
|
|
|
|
desktopName = "Streamlink Twitch GUI";
|
|
|
|
genericName = meta.description;
|
|
|
|
categories = "AudioVideo;Network;";
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-26 14:56:27 +02:00
|
|
|
description = "Twitch.tv browser for Streamlink";
|
|
|
|
longDescription = "Browse Twitch.tv and watch streams in your videoplayer of choice";
|
|
|
|
homepage = "https://streamlink.github.io/streamlink-twitch-gui/";
|
|
|
|
downloadPage = https://github.com/streamlink/streamlink-twitch-gui/releases;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ rileyinman ];
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
|
|
};
|
|
|
|
}
|