bar-xft: init at version 2015-07-23

This a fork of the `bar` by lemonboy with support for xft.

hiberno b48640c5 5ad448df

+28
+26
pkgs/applications/window-managers/bar/xft.nix
··· 1 + { stdenv, fetchgit, perl, libxcb, libXft }: 2 + 3 + let 4 + version = "2015-07-23"; 5 + in 6 + stdenv.mkDerivation rec { 7 + name = "bar-xft-git-${version}"; 8 + 9 + src = fetchgit { 10 + url = "https://github.com/krypt-n/bar"; 11 + rev = "020a3e1848ce03287886e9ff80b0b443e9aed543"; 12 + sha256 = "1xzs37syhlwyjfxnk36qnij5bqa0mi53lf1k851viw4qai2bfkgr"; 13 + }; 14 + 15 + buildInputs = [ libxcb libXft perl ]; 16 + 17 + prePatch = ''sed -i "s@/usr@$out@" Makefile''; 18 + 19 + meta = { 20 + description = "A lightweight xcb based bar with XFT-support"; 21 + homepage = https://github.com/krypt-n/bar; 22 + maintainers = [ stdenv.lib.maintainers.hiberno ]; 23 + license = "Custom"; 24 + platforms = stdenv.lib.platforms.linux; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 10769 10769 10770 10770 bar = callPackage ../applications/window-managers/bar { }; 10771 10771 10772 + bar-xft = callPackage ../applications/window-managers/bar/xft.nix { }; 10773 + 10772 10774 baresip = callPackage ../applications/networking/instant-messengers/baresip { 10773 10775 ffmpeg = ffmpeg_1; 10774 10776 };