blob: a8cee04fcb17c250051376e7c8e0b84c845f7ff1 (
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
|
{ stdenv, fetchgit, libX11, patches ? [] }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "dwmblocks";
src = fetchgit {
url = "https://github.com/LukeSmithXYZ/dwmblocks";
rev = "6bbb413fd7fb31b052945061305bf9ac87f0f6fd";
sha256 = "0h62avawlkbxjkhjsbzp5afrd5jbjjvnzq73nh3p53p1zpjc18wb";
};
inherit patches;
buildInputs = [ libX11 ];
installPhase = ''
make install PREFIX=$out
'';
meta = {
homepage = "https://github.com/LukeSmithXYZ/dwmblocks";
description = "Luke's build of dwmblocks";
license = licenses.mit;
platforms = platforms.linux;
};
}
|