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

let
  version = "1.0";
in
  stdenv.mkDerivation rec {
    name = "bar-${version}";
  
    src = fetchurl {
      url = "https://github.com/LemonBoy/bar/archive/v${version}.tar.gz";
      sha256 = "1n2vak2acs37sslxl250cnz9c3irif5z4s54wi9qjyxbfzr2h2nc";
    };
  
    buildInputs = [ libxcb perl ];
  
    prePatch = ''sed -i "s@/usr@$out@" Makefile'';
  
    meta = {
      description = "A lightweight xcb based bar";
      homepage = https://github.com/LemonBoy/bar;
      maintainers = [ stdenv.lib.maintainers.meisternu ];
      license = "Custom";   
      platforms = stdenv.lib.platforms.linux;
    };
}