forked from mirrors/nixpkgs
bar-xft: init at version 2015-07-23
This a fork of the `bar` by lemonboy with support for xft.
This commit is contained in:
parent
5ad448df3a
commit
b48640c5a5
26
pkgs/applications/window-managers/bar/xft.nix
Normal file
26
pkgs/applications/window-managers/bar/xft.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ stdenv, fetchgit, perl, libxcb, libXft }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "2015-07-23";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "bar-xft-git-${version}";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/krypt-n/bar";
|
||||||
|
rev = "020a3e1848ce03287886e9ff80b0b443e9aed543";
|
||||||
|
sha256 = "1xzs37syhlwyjfxnk36qnij5bqa0mi53lf1k851viw4qai2bfkgr";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libxcb libXft perl ];
|
||||||
|
|
||||||
|
prePatch = ''sed -i "s@/usr@$out@" Makefile'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A lightweight xcb based bar with XFT-support";
|
||||||
|
homepage = https://github.com/krypt-n/bar;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.hiberno ];
|
||||||
|
license = "Custom";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -10769,6 +10769,8 @@ let
|
||||||
|
|
||||||
bar = callPackage ../applications/window-managers/bar { };
|
bar = callPackage ../applications/window-managers/bar { };
|
||||||
|
|
||||||
|
bar-xft = callPackage ../applications/window-managers/bar/xft.nix { };
|
||||||
|
|
||||||
baresip = callPackage ../applications/networking/instant-messengers/baresip {
|
baresip = callPackage ../applications/networking/instant-messengers/baresip {
|
||||||
ffmpeg = ffmpeg_1;
|
ffmpeg = ffmpeg_1;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue