2019-07-27 14:05:17 -07:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, pcre, qtbase, qttools,
|
2019-09-12 07:25:05 -07:00
|
|
|
qtx11extras, xorg, lxqt-build-tools, openbox }:
|
2016-10-07 02:57:25 -07:00
|
|
|
|
2019-07-27 14:05:17 -07:00
|
|
|
mkDerivation rec {
|
2016-10-07 02:57:25 -07:00
|
|
|
pname = "obconf-qt";
|
2019-02-26 13:32:12 -08:00
|
|
|
version = "0.14.1";
|
2016-10-07 02:57:25 -07:00
|
|
|
|
2017-11-01 19:02:50 -07:00
|
|
|
src = fetchFromGitHub {
|
2018-05-21 18:24:38 -07:00
|
|
|
owner = "lxqt";
|
2016-10-07 02:57:25 -07:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-02-26 13:32:12 -08:00
|
|
|
sha256 = "15dizs072ylmld1lxwgqkvybqy8ms8zki5586xm305jnlmrkb4lq";
|
2016-10-07 02:57:25 -07:00
|
|
|
};
|
|
|
|
|
2017-02-19 04:02:17 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
2019-02-05 15:14:34 -08:00
|
|
|
lxqt-build-tools
|
2017-02-19 04:02:17 -08:00
|
|
|
];
|
2016-10-07 02:57:25 -07:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-11-01 19:02:50 -07:00
|
|
|
pcre
|
2019-02-05 15:14:34 -08:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
2016-10-07 02:57:25 -07:00
|
|
|
xorg.libpthreadstubs
|
|
|
|
xorg.libXdmcp
|
2017-02-19 04:02:17 -08:00
|
|
|
xorg.libSM
|
2016-10-07 02:57:25 -07:00
|
|
|
openbox
|
|
|
|
];
|
|
|
|
|
2019-07-27 14:05:17 -07:00
|
|
|
meta = with lib; {
|
2016-10-07 02:57:25 -07:00
|
|
|
description = "The Qt port of obconf, the Openbox configuration tool";
|
2018-05-21 18:24:38 -07:00
|
|
|
homepage = https://github.com/lxqt/obconf-qt;
|
2016-10-07 02:57:25 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = with platforms; unix;
|
2017-02-19 04:02:17 -08:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-07 02:57:25 -07:00
|
|
|
};
|
|
|
|
}
|