3758bb75aa
Semi-automatic update. These checks were performed: - built on NixOS - found 1.3 in filename of file in /nix/store/dhg81hbg0bm6cnxl0ky7vslbvsxbybsp-lemonbar-1.3 cc "@meisternu"
23 lines
580 B
Nix
23 lines
580 B
Nix
{ stdenv, fetchurl, perl, libxcb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
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;
|
|
};
|
|
}
|