-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
42 lines (37 loc) · 823 Bytes
/
Copy pathdefault.nix
File metadata and controls
42 lines (37 loc) · 823 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
lib,
ocamlPackages,
}:
ocamlPackages.buildDunePackage {
pname = "oxbow";
version = lib.fileContents ./VERSION;
duneVersion = "3";
minimalOCamlVersion = "5.4";
src = lib.cleanSource ./.;
propagatedBuildInputs = with ocamlPackages; [
cmdliner
dune-build-info
eio
eio_main
eio_posix
fmt
landmarks
landmarks-ppx
logs
ppx_yojson_conv
re
wayland
xkbcommon
yojson
];
nativeBuildInputs = [ ocamlPackages.cmdliner ];
doCheck = true;
checkInputs = [ ocamlPackages.cstruct ];
meta = {
description = "oxbow, a dynamic window manager for the Wayland compositor River, written in OCaml";
homepage = "https://github.com/3L0C/oxbow";
license = lib.licenses.gpl3Plus;
mainProgram = "oxbow";
platforms = lib.platforms.linux;
};
}