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

43 lines
941 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, qt5, xorg, lxqt, openbox, hicolor-icon-theme }:
2016-10-07 09:57:25 +00:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "obconf-qt";
version = "0.13.0";
2016-10-07 09:57:25 +00:00
2017-11-02 02:02:50 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-07 09:57:25 +00:00
repo = pname;
rev = version;
sha256 = "0mixf35p7b563f77vnikk9b1wqhbdawp723sd30rfql76gkjwjcn";
2016-10-07 09:57:25 +00:00
};
2017-02-19 12:02:17 +00:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-07 09:57:25 +00:00
buildInputs = [
2017-11-02 02:02:50 +00:00
pcre
2016-10-07 09:57:25 +00:00
qt5.qtbase
qt5.qttools
qt5.qtx11extras
xorg.libpthreadstubs
xorg.libXdmcp
2017-02-19 12:02:17 +00:00
xorg.libSM
2016-10-07 09:57:25 +00:00
openbox
hicolor-icon-theme
2016-10-07 09:57:25 +00:00
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "The Qt port of obconf, the Openbox configuration tool";
homepage = https://github.com/lxqt/obconf-qt;
2016-10-07 09:57:25 +00:00
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 12:02:17 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-07 09:57:25 +00:00
};
}