steam: add optional extraProfile

This commit is contained in:
ajs124 2018-06-03 23:49:27 +02:00
parent b3e7923b94
commit 0edad9f5c8

View file

@ -3,6 +3,7 @@
, withJava ? false
, withPrimus ? false
, extraPkgs ? pkgs: [ ] # extra packages to add to targetPkgs
, extraProfile ? "" # string to append to profile
, nativeOnly ? false
, runtimeOnly ? false
}:
@ -178,7 +179,7 @@ in buildFHSUserEnv rec {
profile = ''
export STEAM_RUNTIME=${if nativeOnly then "0" else "/steamrt"}
'';
'' + extraProfile;
runScript = writeScript "steam-wrapper.sh" ''
#!${stdenv.shell}