about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/window-managers/lemonbar/default.nix
blob: 9d6e0f27f934267abb22725ce37510309a267e3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, perl, libxcb }:

stdenv.mkDerivation {
  name = "lemonbar-1.3";
  
  src = fetchurl {
    url    = "https://github.com/LemonBoy/bar/archive/v1.3.tar.gz";
    sha256 = "0zd3v8ys4jzi60pm3wq7p3pbbd5y0acimgiq46qx1ckmwg2q9rza";
  };
  
  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;
  };
}