nixpkgs/pkgs/tools/X11/xlaunch/default.nix
Michael Raskin e0317df04f Yet another attempt to fix xlaunch
svn path=/nixpkgs/trunk/; revision=10039
2008-01-01 12:15:40 +00:00

15 lines
302 B
Nix

args: with args;
stdenv.mkDerivation {
name = "xlaunch";
inherit xorgserver;
buildCommand = "
mkdir -p \$out/bin
echo '
(egrep \"^ +env\" /etc/event.d/xserver | sed -e \"s/env/ export /\" ; echo X;) | bash &
sleep 15;
\"$@\";
' >\$out/bin/xlaunch
chmod a+x \$out/bin/xlaunch
";
}