2016-10-08 17:52:07 -07:00
|
|
|
{ stdenv, fetchurl, perl, libxcb }:
|
2016-01-16 07:03:18 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2020-11-27 23:55:44 -08:00
|
|
|
name = "lemonbar-1.4";
|
2016-01-16 07:03:18 -08:00
|
|
|
|
2016-10-08 17:52:07 -07:00
|
|
|
src = fetchurl {
|
2020-11-27 23:55:44 -08:00
|
|
|
url = "https://github.com/LemonBoy/bar/archive/v1.4.tar.gz";
|
|
|
|
sha256 = "0fa91vb968zh6fyg97kdaix7irvqjqhpsb6ks0ggcl59lkbkdzbv";
|
2016-10-08 17:52:07 -07:00
|
|
|
};
|
2016-01-16 07:03:18 -08:00
|
|
|
|
2016-10-08 17:52:07 -07:00
|
|
|
buildInputs = [ libxcb perl ];
|
2016-01-16 07:03:18 -08:00
|
|
|
|
2016-10-08 17:52:07 -07:00
|
|
|
prePatch = ''sed -i "s@/usr@$out@" Makefile'';
|
2016-01-16 07:03:18 -08:00
|
|
|
|
2016-10-08 17:52:07 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A lightweight xcb based bar";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/LemonBoy/bar";
|
2016-10-08 17:52:07 -07:00
|
|
|
maintainers = [ maintainers.meisternu ];
|
|
|
|
license = "Custom";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2016-01-16 07:03:18 -08:00
|
|
|
}
|