mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
112 lines
2.9 KiB
Nix
112 lines
2.9 KiB
Nix
{
|
|
bash,
|
|
fetchFromGitHub,
|
|
gawk,
|
|
git,
|
|
lib,
|
|
procps,
|
|
stdenvNoCC,
|
|
unixtools,
|
|
unzip,
|
|
wget,
|
|
xdotool,
|
|
xorg,
|
|
yad,
|
|
writeShellApplication,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "steamtinkerlaunch";
|
|
version = "12.12-unstable-2024-05-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sonic2kk";
|
|
repo = "steamtinkerlaunch";
|
|
rev = "59b421b2f3686120a076909a4a158824cd4ef05e";
|
|
hash = "sha256-CGtSGAm+52t2zFsPJEsm76w+FEHhbOd9NYuerGa31tc=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"steamcompattool"
|
|
];
|
|
|
|
installFlags = [ "PREFIX=\${out}" ];
|
|
|
|
nativeBuildInputs =
|
|
let
|
|
# We need a `steam` command in order to install the compat tool
|
|
fakeSteam = writeShellApplication {
|
|
name = "steam";
|
|
text = "exit 0";
|
|
};
|
|
in
|
|
[
|
|
fakeSteam
|
|
];
|
|
|
|
postInstall =
|
|
let
|
|
# We (ab)use writeShellApplication to produce a header for a shell script
|
|
# here in order to add the runtimePath to the original script. We cannot
|
|
# wrap here as that always corrupts $0 in bash scripts which STL uses to
|
|
# install its compat tool.
|
|
header = writeShellApplication {
|
|
runtimeInputs = [
|
|
bash
|
|
gawk
|
|
git
|
|
procps
|
|
unixtools.xxd
|
|
unzip
|
|
wget
|
|
xdotool
|
|
xorg.xprop
|
|
xorg.xrandr
|
|
xorg.xwininfo
|
|
yad
|
|
];
|
|
name = "stl-head";
|
|
text = "";
|
|
bashOptions = [ ];
|
|
};
|
|
fakeYad = writeShellApplication {
|
|
name = "yad";
|
|
text = "echo ${yad.version} FAKE";
|
|
};
|
|
in
|
|
''
|
|
cp $out/bin/steamtinkerlaunch $TMPDIR/steamtinkerlaunch
|
|
install ${lib.getExe header} -T $out/bin/steamtinkerlaunch
|
|
tail -n +2 $TMPDIR/steamtinkerlaunch >> $out/bin/steamtinkerlaunch
|
|
|
|
# Create a fake steam dir, it checks this and reads a few values
|
|
steamdir=$TMPDIR/.local/share/Steam/
|
|
mkdir -p $steamdir/config/
|
|
echo \"path\" \"$steamdir\" > $steamdir/config/config.vdf
|
|
mkdir $TMPDIR/.steam/
|
|
ln -s $steamdir $TMPDIR/.steam/steam
|
|
|
|
cp -a $out/bin/steamtinkerlaunch $TMPDIR/steamtinkerlaunch
|
|
# yad cannot print its version without a graphical session https://github.com/v1cont/yad/issues/277
|
|
substituteInPlace $TMPDIR/steamtinkerlaunch --replace ${yad} ${fakeYad}
|
|
HOME=$TMPDIR $TMPDIR/steamtinkerlaunch compat add
|
|
|
|
cp -a $steamdir/compatibilitytools.d/SteamTinkerLaunch $steamcompattool
|
|
# It creates this symlink but it points to $TMPDIR
|
|
ln -sfn $out/bin/steamtinkerlaunch $steamcompattool/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Linux wrapper tool for use with the Steam client for custom launch options and 3rd party programs";
|
|
mainProgram = "steamtinkerlaunch";
|
|
homepage = "https://github.com/sonic2kk/steamtinkerlaunch";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [
|
|
urandom
|
|
surfaceflinger
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|