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