xmonad: add support for v0.17.0 (#2522)
This commit is contained in:
parent
3d9eb1cecd
commit
c61fc1c288
|
@ -132,7 +132,13 @@ in {
|
||||||
|
|
||||||
# The resulting binary name depends on the arch and os
|
# The resulting binary name depends on the arch and os
|
||||||
# https://github.com/xmonad/xmonad/blob/56b0f850bc35200ec23f05c079eca8b0a1f90305/src/XMonad/Core.hs#L565-L572
|
# https://github.com/xmonad/xmonad/blob/56b0f850bc35200ec23f05c079eca8b0a1f90305/src/XMonad/Core.hs#L565-L572
|
||||||
mv "$XMONAD_DATA_DIR/xmonad-${pkgs.stdenv.hostPlatform.system}" $out/bin/
|
if [ -f "$XMONAD_DATA_DIR/xmonad-${pkgs.stdenv.hostPlatform.system}" ]; then
|
||||||
|
# xmonad 0.15.0
|
||||||
|
mv "$XMONAD_DATA_DIR/xmonad-${pkgs.stdenv.hostPlatform.system}" $out/bin/
|
||||||
|
else
|
||||||
|
# xmonad 0.17.0 (https://github.com/xmonad/xmonad/commit/9813e218b034009b0b6d09a70650178980e05d54)
|
||||||
|
mv "$XMONAD_CACHE_DIR/xmonad-${pkgs.stdenv.hostPlatform.system}" $out/bin/
|
||||||
|
fi
|
||||||
''
|
''
|
||||||
}/bin/xmonad-${pkgs.stdenv.hostPlatform.system}";
|
}/bin/xmonad-${pkgs.stdenv.hostPlatform.system}";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue