forked from waymonad/waymonad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
waymonad.nix
27 lines (27 loc) · 1.07 KB
/
waymonad.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ mkDerivation, base, bytestring, clock, composition, config-schema
, config-value, containers, data-default, deepseq, directory
, formatting, ghc-prim, hayland, HFuse, hsroots, lib, hslibinput
, mtl, network, process, safe, semigroupoids, stm
, template-haskell, text, time, transformers, unix, unliftio
, unliftio-core, waymonad-scanner, xdg-basedir, xkbcommon
}:
mkDerivation {
pname = "waymonad";
version = "0.0.1.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bytestring clock composition config-schema config-value
containers data-default deepseq directory formatting ghc-prim
hayland HFuse hsroots hslibinput mtl network process safe
semigroupoids stm template-haskell text time transformers unix
unliftio unliftio-core waymonad-scanner xdg-basedir xkbcommon
];
executableHaskellDepends = [
base containers hayland hsroots hslibinput text xkbcommon
];
homepage = "https://github.com/ongy/waymonad";
description = "Wayland compositor build on the ideas of Xmonad";
license = lib.licenses.lgpl21Only;
}