2021-02-10 02:47:13 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
2021-02-25 13:06:43 +01:00
|
|
|
, libinput
|
2021-02-10 02:47:13 +01:00
|
|
|
, libxcb
|
|
|
|
, libxkbcommon
|
2021-05-07 19:55:51 +02:00
|
|
|
, pixman
|
2021-02-10 02:47:13 +01:00
|
|
|
, wayland
|
|
|
|
, wayland-protocols
|
|
|
|
, wlroots
|
|
|
|
, enable-xwayland ? true, xwayland, libX11
|
|
|
|
, patches ? [ ]
|
|
|
|
, conf ? null
|
|
|
|
, writeText
|
2021-04-08 12:35:20 +02:00
|
|
|
, fetchpatch
|
2021-02-10 02:47:13 +01:00
|
|
|
}:
|
|
|
|
|
2021-04-08 12:35:20 +02:00
|
|
|
let
|
2021-05-07 19:56:24 +02:00
|
|
|
totalPatches = patches ++ [ ];
|
2021-04-08 12:35:20 +02:00
|
|
|
in
|
|
|
|
|
2021-02-10 02:47:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "dwl";
|
2021-05-07 19:56:24 +02:00
|
|
|
version = "0.2.1";
|
2021-02-10 02:47:13 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "djpohly";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-05-07 19:56:24 +02:00
|
|
|
sha256 = "sha256-lfUAymLA4+E9kULZIueA+9gyVZYgaVS0oTX0LJjsSEs=";
|
2021-02-10 02:47:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
2021-02-25 13:06:43 +01:00
|
|
|
libinput
|
2021-02-10 02:47:13 +01:00
|
|
|
libxcb
|
|
|
|
libxkbcommon
|
2021-05-07 19:55:51 +02:00
|
|
|
pixman
|
2021-02-10 02:47:13 +01:00
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
wlroots
|
2021-02-25 13:06:43 +01:00
|
|
|
] ++ lib.optionals enable-xwayland [
|
|
|
|
libX11
|
|
|
|
xwayland
|
|
|
|
];
|
2021-02-10 02:47:13 +01:00
|
|
|
|
|
|
|
# Allow users to set their own list of patches
|
2021-04-08 12:35:20 +02:00
|
|
|
patches = totalPatches;
|
2021-02-10 02:47:13 +01:00
|
|
|
|
2021-02-25 13:06:43 +01:00
|
|
|
# Last line of config.mk enables XWayland
|
2021-02-10 02:47:13 +01:00
|
|
|
prePatch = lib.optionalString enable-xwayland ''
|
|
|
|
sed -i -e '$ s|^#||' config.mk
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Allow users to set an alternative config.def.h
|
|
|
|
postPatch = let
|
|
|
|
configFile = if lib.isDerivation conf || builtins.isPath conf
|
|
|
|
then conf
|
|
|
|
else writeText "config.def.h" conf;
|
|
|
|
in lib.optionalString (conf != null) "cp ${configFile} config.def.h";
|
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
install -d $out/bin
|
|
|
|
install -m755 dwl $out/bin
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/djpohly/dwl/";
|
|
|
|
description = "Dynamic window manager for Wayland";
|
|
|
|
longDescription = ''
|
|
|
|
dwl is a compact, hackable compositor for Wayland based on wlroots. It is
|
|
|
|
intended to fill the same space in the Wayland world that dwm does in X11,
|
|
|
|
primarily in terms of philosophy, and secondarily in terms of
|
|
|
|
functionality. Like dwm, dwl is:
|
|
|
|
|
|
|
|
- Easy to understand, hack on, and extend with patches
|
|
|
|
- One C source file (or a very small number) configurable via config.h
|
|
|
|
- Limited to 2000 SLOC to promote hackability
|
|
|
|
- Tied to as few external dependencies as possible
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
# TODO: custom patches from upstream website
|
|
|
|
# TODO: investigate the modifications in the upstream unstable version
|