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

23 lines
580 B
Nix
Raw Normal View History

2016-10-09 00:52:07 +00:00
{ stdenv, fetchurl, perl, libxcb }:
2016-10-09 00:52:07 +00:00
stdenv.mkDerivation rec {
name = "lemonbar-1.3";
2016-10-09 00:52:07 +00:00
src = fetchurl {
url = "https://github.com/LemonBoy/bar/archive/v1.3.tar.gz";
sha256 = "0zd3v8ys4jzi60pm3wq7p3pbbd5y0acimgiq46qx1ckmwg2q9rza";
2016-10-09 00:52:07 +00:00
};
2016-10-09 00:52:07 +00:00
buildInputs = [ libxcb perl ];
2016-10-09 00:52:07 +00:00
prePatch = ''sed -i "s@/usr@$out@" Makefile'';
2016-10-09 00:52:07 +00:00
meta = with stdenv.lib; {
description = "A lightweight xcb based bar";
homepage = https://github.com/LemonBoy/bar;
maintainers = [ maintainers.meisternu ];
license = "Custom";
platforms = platforms.linux;
};
}