nixpkgs/pkgs/applications/window-managers/lemonbar/default.nix
koral 9ed9457846 lemonbar: 1.1 -> 1.2pre
'bar' has been officially renamed 'lemonbar'.
Last release (1.1) is almost a year old, but some bugfixes and new features are available in the repository, let's include them in the derivation.
2016-01-16 16:03:18 +01:00

28 lines
692 B
Nix

{ stdenv, fetchFromGitHub, perl, libxcb }:
let
version = "1.2pre";
in
stdenv.mkDerivation rec {
name = "lemonbar-${version}";
src = fetchFromGitHub {
owner = "LemonBoy";
repo = "bar";
rev = "61985278f2af1e4e85d63a696ffedc5616b06bc0";
sha256 = "0a8djlayimjdg5fj50lpifsv6gkb577bca68wmk9wg9y9n27pgay";
};
buildInputs = [ libxcb perl ];
prePatch = ''sed -i "s@/usr@$out@" Makefile'';
meta = with stdenv.lib; {
description = "A lightweight xcb based bar";
homepage = https://github.com/LemonBoy/bar;
maintainers = [ maintainers.meisternu ];
license = "Custom";
platforms = platforms.linux;
};
}