2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cairo, gdk-pixbuf, libconfig, pango, pkg-config
|
2021-06-10 03:57:09 +01:00
|
|
|
, xcbutilwm, alsa-lib, wirelesstools, asciidoc, libxslt, makeWrapper, docbook_xsl
|
2017-09-10 23:53:53 +01:00
|
|
|
, configFile ? null, lib
|
2018-06-21 22:28:59 +01:00
|
|
|
, rev, sha256, version, patches ? []
|
2017-09-10 23:53:53 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "yabar";
|
|
|
|
inherit version;
|
2017-09-10 23:53:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev sha256;
|
|
|
|
|
|
|
|
owner = "geommer";
|
|
|
|
repo = "yabar";
|
|
|
|
};
|
|
|
|
|
2018-06-21 22:28:59 +01:00
|
|
|
inherit patches;
|
|
|
|
|
2017-09-10 23:53:53 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-10 23:53:53 +01:00
|
|
|
buildInputs = [
|
2019-05-22 12:03:39 +01:00
|
|
|
cairo gdk-pixbuf libconfig pango xcbutilwm docbook_xsl
|
2021-06-10 03:57:09 +01:00
|
|
|
alsa-lib wirelesstools asciidoc libxslt makeWrapper
|
2017-09-10 23:53:53 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace ./Makefile \
|
|
|
|
--replace "\$(shell git describe)" "${version}" \
|
|
|
|
--replace "a2x" "${asciidoc}/bin/a2x --no-xmllint"
|
|
|
|
'';
|
|
|
|
|
2018-01-02 09:30:49 +00:00
|
|
|
makeFlags = [ "DESTDIR=$(out)" "PREFIX=/" ];
|
2017-09-10 23:53:53 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/yabar/examples
|
|
|
|
cp -v examples/*.config $out/share/yabar/examples
|
|
|
|
|
|
|
|
${lib.optionalString (configFile != null)
|
|
|
|
''
|
|
|
|
wrapProgram "$out/bin/yabar" \
|
|
|
|
--add-flags "-c ${configFile}"
|
|
|
|
''
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-10 23:53:53 +01:00
|
|
|
description = "A modern and lightweight status bar for X window managers";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/geommer/yabar";
|
2017-09-10 23:53:53 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2021-01-01 13:39:41 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-09-10 23:53:53 +01:00
|
|
|
};
|
|
|
|
}
|