blob: a0797a13319a4ab4f9023164f4f043a563c3d6bb (
plain)
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
|
{ stdenv, fetchgit, libX11, libXinerama, libXft }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "dwm";
src = fetchgit {
url = "https://github.com/LukeSmithXYZ/dwm";
rev = "484720bbba3e2b175b71dba283c3a84b13e71eea";
sha256 = "1w19zy3c9nckrh9jwj30ijv7gl0miyiw4m287n5bxmm98zly264p";
};
buildInputs = [ libX11 libXinerama libXft ];
prePatch = ''sed -i "s@/usr/local@$out@" config.mk'';
patches = [
./dwm-systray.diff
./dwm-center.diff
./dwm-apps.diff
];
buildPhase = " make ";
meta = {
homepage = "https://github.com/LukeSmithXYZ/dwm";
description = "Luke's build of dwm";
license = stdenv.lib.licenses.mit;
platforms = with stdenv.lib.platforms; all;
};
}
|