nixpkgs/pkgs/desktops/lxqt/obconf-qt/default.nix

41 lines
882 B
Nix
Raw Normal View History

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