2020-04-25 18:01:05 +01:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2021-01-17 02:21:50 +00:00
|
|
|
, pkg-config
|
2020-04-25 18:01:05 +01:00
|
|
|
, pcre
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
|
|
|
, xorg
|
|
|
|
, lxqt-build-tools
|
|
|
|
, openbox
|
2020-04-26 15:53:59 +01:00
|
|
|
, lxqtUpdateScript
|
2020-04-25 18:01:05 +01:00
|
|
|
}:
|
2016-10-07 10:57:25 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
mkDerivation rec {
|
2016-10-07 10:57:25 +01:00
|
|
|
pname = "obconf-qt";
|
2022-03-15 21:36:14 +00:00
|
|
|
version = "0.16.2";
|
2016-10-07 10:57:25 +01:00
|
|
|
|
2017-11-02 02:02:50 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-07 10:57:25 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-03-15 21:36:14 +00:00
|
|
|
sha256 = "zxwQfKowgpLjfxSV2t7Ly8o7DFqoIxi60zIVCcKDQWo=";
|
2016-10-07 10:57:25 +01:00
|
|
|
};
|
|
|
|
|
2017-02-19 12:02:17 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
2019-02-05 23:14:34 +00:00
|
|
|
lxqt-build-tools
|
2017-02-19 12:02:17 +00:00
|
|
|
];
|
2016-10-07 10:57:25 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-11-02 02:02:50 +00:00
|
|
|
pcre
|
2019-02-05 23:14:34 +00:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
2016-10-07 10:57:25 +01:00
|
|
|
xorg.libpthreadstubs
|
|
|
|
xorg.libXdmcp
|
2017-02-19 12:02:17 +00:00
|
|
|
xorg.libSM
|
2016-10-07 10:57:25 +01:00
|
|
|
openbox
|
|
|
|
];
|
|
|
|
|
2020-04-26 15:53:59 +01:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lxqt/obconf-qt";
|
2021-02-08 14:41:52 +00:00
|
|
|
description = "The Qt port of obconf, the Openbox configuration tool";
|
|
|
|
license = licenses.gpl2Plus;
|
2016-10-07 10:57:25 +01:00
|
|
|
platforms = with platforms; unix;
|
2017-02-19 12:02:17 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-07 10:57:25 +01:00
|
|
|
};
|
|
|
|
}
|