Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / window-managers / lemonbar / xft.nix
blob8d009a3458b3ca252ad9fed02270fdd73ff634be
1 { lib, stdenv, fetchFromGitHub, perl, libxcb, libXft }:
3 stdenv.mkDerivation {
4   pname = "lemonbar-xft";
5   version = "unstable-2020-09-10";
7   src = fetchFromGitHub {
8     owner = "drscream";
9     repo = "lemonbar-xft";
10     rev = "481e12363e2a0fe0ddd2176a8e003392be90ed02";
11     sha256 = "sha256-BNYBbUouqqsRQaPkpg+UKg62IV9uI34gKJuiAM94CBU=";
12   };
14   buildInputs = [ libxcb libXft perl ];
16   installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
18   meta = with lib; {
19     description = "A lightweight xcb based bar with XFT-support";
20     homepage = "https://github.com/drscream/lemonbar-xft";
21     license = licenses.mit;
22     platforms = platforms.linux;
23     maintainers = with maintainers; [ moni ];
24   };