diff options
author | tv <tv@krebsco.de> | 2016-06-04 19:09:19 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-06-04 19:48:43 +0200 |
commit | fc826f8f7a613c68e595e16fd793b0b318425af8 (patch) | |
tree | acb2172fb23c408f7b42dc821d9425f8dbcbe83c /tv/5pkgs/xmonad-tv.nix | |
parent | ed56f41ddc1775ef8938befa88dcb7d029bf6450 (diff) |
krebs pkgs.{writeHaskellBin => writeHaskell}
Diffstat (limited to 'tv/5pkgs/xmonad-tv.nix')
-rw-r--r-- | tv/5pkgs/xmonad-tv.nix | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/tv/5pkgs/xmonad-tv.nix b/tv/5pkgs/xmonad-tv.nix index 74e43dc79..04e7e8359 100644 --- a/tv/5pkgs/xmonad-tv.nix +++ b/tv/5pkgs/xmonad-tv.nix @@ -1,14 +1,15 @@ { pkgs, ... }: -pkgs.writeHaskellBin "xmonad-tv" { - depends = [ - "containers" - "unix" - "X11" - "xmonad" - "xmonad-contrib" - "xmonad-stockholm" - ]; -} '' +pkgs.writeHaskell "xmonad-tv" { + executables.xmonad = { + extra-depends = [ + "containers" + "unix" + "X11" + "xmonad" + "xmonad-contrib" + "xmonad-stockholm" + ]; + text = '' {-# LANGUAGE DeriveDataTypeable #-} -- for XS {-# LANGUAGE FlexibleContexts #-} -- for xmonad' {-# LANGUAGE LambdaCase #-} @@ -299,4 +300,6 @@ wGSConfig = def allWorkspaceNames :: W.StackSet i l a sid sd -> X [i] allWorkspaceNames ws = return $ map W.tag (W.hidden ws) ++ [W.tag $ W.workspace $ W.current ws] -'' + ''; + }; +} |