lxqt-qtplugin: 0.11.0 -> 0.11.1

This commit is contained in:
romildo 2017-02-19 08:50:29 -03:00
parent ed798060e5
commit 6f9fec945b

View File

@ -1,18 +1,21 @@
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt }: { stdenv, fetchFromGitHub, cmake, qt5, lxqt }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "lxqt-qtplugin"; pname = "lxqt-qtplugin";
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 = "14bwi1c078arin025jcygz0db9nfr8qla9071ls17bbp4dh14vhx"; sha256 = "12hyw7rk3zx51n6g2bazlqv70xap0lygm9v21ibxgy1aw0j6iy02";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [
cmake
lxqt.lxqt-build-tools
];
buildInputs = [ buildInputs = [
qt5.qtbase qt5.qtbase
@ -20,8 +23,6 @@ stdenv.mkDerivation rec {
qt5.qttools qt5.qttools
qt5.qtsvg qt5.qtsvg
qt5.libdbusmenu qt5.libdbusmenu
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg lxqt.libqtxdg
]; ];
@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
description = "LXQt Qt platform integration plugin"; description = "LXQt Qt platform integration plugin";
homepage = https://github.com/lxde/lxqt-qtplugin; homepage = https://github.com/lxde/lxqt-qtplugin;
license = licenses.lgpl21; license = licenses.lgpl21;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix; platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
}; };
} }