1 { lib, stdenv, fetchFromGitHub, libX11, libXinerama, libXrandr, libXft, bison, pkg-config }:
3 stdenv.mkDerivation rec {
8 src = fetchFromGitHub {
9 owner = "leahneukirchen";
12 hash = "sha256-L3u4mH2UH2pTHhSPVr5dUi94b9DheslkIWL6EgQ05yA=";
17 nativeBuildInputs = [ pkg-config bison ];
18 buildInputs = [ libX11 libXinerama libXrandr libXft ];
20 prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
23 description = "Lightweight and efficient window manager for X11";
24 homepage = "https://github.com/leahneukirchen/cwm";
25 maintainers = with maintainers; [ _0x4A6F mkf ];
26 license = licenses.isc;
27 platforms = platforms.linux;