af2c151d9d
svn path=/nixpkgs/trunk/; revision=10037
15 lines
290 B
Nix
15 lines
290 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// ; echo X;) | bash &
|
|
sleep 15;
|
|
\"$@\";
|
|
' >\$out/bin/xlaunch
|
|
chmod a+x \$out/bin/xlaunch
|
|
";
|
|
}
|