obconf-qt: 0.11.0 -> 0.11.1

This commit is contained in:
romildo 2017-02-19 09:02:17 -03:00
parent 6f9fec945b
commit ffe9343c75

View File

@ -1,30 +1,30 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, xorg, lxqt, { stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, xorg, lxqt, openbox, hicolor_icon_theme }:
openbox, hicolor_icon_theme }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "obconf-qt"; pname = "obconf-qt";
version = "0.11.0"; version = "0.11.1";
srcs = fetchFromGitHub { srcs = fetchFromGitHub {
owner = "lxde"; owner = "lxde";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1q3y4sc1kg3hw4869rx4g08y85rnvnxgk8rf8h6amkf5r5561iyk"; sha256 = "1w94g8jk2j9qrkwg3i6qwgai2sj1m657bbk2zlk9bc3qvzmwxwrc";
}; };
nativeBuildInputs = [ cmake pkgconfig ]; nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
buildInputs = [ buildInputs = [
qt5.qtbase qt5.qtbase
qt5.qttools qt5.qttools
qt5.qtx11extras qt5.qtx11extras
qt5.qtsvg
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
xorg.libpthreadstubs xorg.libpthreadstubs
xorg.libXdmcp xorg.libXdmcp
xorg.libSM
openbox openbox
hicolor_icon_theme hicolor_icon_theme
]; ];
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
description = "The Qt port of obconf, the Openbox configuration tool"; description = "The Qt port of obconf, the Openbox configuration tool";
homepage = https://github.com/lxde/obconf-qt; homepage = https://github.com/lxde/obconf-qt;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix; platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
}; };
} }