blob: 340daf1f1e56f2f88ace9874713de0aae8e3ccac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ stdenv, lib, fetchFromGitHub, bash }:
stdenv.mkDerivation {
pname = "dwmbar";
version = "1.0";
src = fetchFromGitHub {
owner = "thytom";
repo = "dwmbar";
rev = "574f5703c558a56bc9c354471543511255423dc7";
sha256 = "sha256-IrelZpgsxq2dnsjMdh7VC5eKffEGRbDkZmZBD+tROPs=";
};
patches = [ ../../patches/dwmbar.patch ];
buildInputs = [ bash ];
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/bin/_dwmbar/modules
cp -r modules $out/bin/_dwmbar/
install config $out/bin/_dwmbar/config
install bar.sh $out/bin/_dwmbar/bar.sh
install dwmbar $out/bin/dwmbar
'';
}
|