nixpkgs/pkgs/applications/window-managers/lemonbar/default.nix

23 lines
578 B
Nix
Raw Normal View History

2016-10-08 17:52:07 -07:00
{ stdenv, fetchurl, perl, libxcb }:
2019-08-13 14:52:01 -07:00
stdenv.mkDerivation {
2020-11-27 23:55:44 -08:00
name = "lemonbar-1.4";
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-10-08 17:52:07 -07:00
buildInputs = [ libxcb perl ];
2016-10-08 17:52:07 -07:00
prePatch = ''sed -i "s@/usr@$out@" Makefile'';
2016-10-08 17:52:07 -07:00
meta = with stdenv.lib; {
description = "A lightweight xcb based bar";
homepage = "https://github.com/LemonBoy/bar";
2016-10-08 17:52:07 -07:00
maintainers = [ maintainers.meisternu ];
license = "Custom";
platforms = platforms.linux;
};
}