2021-01-19 07:50:56 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cairo, gdk-pixbuf, libconfig, pango, pkg-config
|
2021-06-10 04:57:09 +02:00
|
|
|
, xcbutilwm, alsa-lib, wirelesstools, asciidoc, libxslt, makeWrapper, docbook_xsl
|
2017-09-11 00:53:53 +02:00
|
|
|
, configFile ? null, lib
|
2018-06-21 23:28:59 +02:00
|
|
|
, rev, sha256, version, patches ? []
|
2017-09-11 00:53:53 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "yabar";
|
|
|
|
inherit version;
|
2017-09-11 00:53:53 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev sha256;
|
|
|
|
|
|
|
|
owner = "geommer";
|
|
|
|
repo = "yabar";
|
|
|
|
};
|
|
|
|
|
2018-06-21 23:28:59 +02:00
|
|
|
inherit patches;
|
|
|
|
|
2017-09-11 00:53:53 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-07-28 23:27:45 +02:00
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
asciidoc
|
|
|
|
docbook_xsl
|
|
|
|
libxslt
|
|
|
|
makeWrapper
|
|
|
|
libconfig
|
|
|
|
pango
|
|
|
|
];
|
2017-09-11 00:53:53 +02:00
|
|
|
buildInputs = [
|
2021-07-28 23:27:45 +02:00
|
|
|
cairo
|
|
|
|
gdk-pixbuf
|
|
|
|
libconfig
|
|
|
|
pango
|
|
|
|
xcbutilwm
|
|
|
|
alsa-lib
|
|
|
|
wirelesstools
|
2017-09-11 00:53:53 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace ./Makefile \
|
|
|
|
--replace "\$(shell git describe)" "${version}" \
|
2021-07-28 23:27:45 +02:00
|
|
|
--replace "a2x" "a2x --no-xmllint"
|
2017-09-11 00:53:53 +02:00
|
|
|
'';
|
|
|
|
|
2018-01-02 10:30:49 +01:00
|
|
|
makeFlags = [ "DESTDIR=$(out)" "PREFIX=/" ];
|
2017-09-11 00:53:53 +02: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 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-09-11 00:53:53 +02:00
|
|
|
description = "A modern and lightweight status bar for X window managers";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/geommer/yabar";
|
2017-09-11 00:53:53 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2021-01-01 14:39:41 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2023-11-27 02:17:53 +01:00
|
|
|
mainProgram = "yabar";
|
2017-09-11 00:53:53 +02:00
|
|
|
};
|
|
|
|
}
|