pcmanfm-qt: 0.11.1 -> 0.11.3

This commit is contained in:
romildo 2017-02-19 09:43:43 -03:00
parent 660329fe9b
commit 3f03825ba6

View File

@ -1,31 +1,28 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt, xorg, libfm, { stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, lxqt, libfm, menu-cache, lxmenu-data }:
menu-cache, lxmenu-data }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "pcmanfm-qt"; pname = "pcmanfm-qt";
version = "0.11.1"; version = "0.11.3";
srcs = fetchFromGitHub { srcs = fetchFromGitHub {
owner = "lxde"; owner = "lxde";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "04fv23glcnfiszam90iy3gvn2sigyk8zj8a1s43wz8fgjijnws32"; sha256 = "04vhfhjmz1a4rhkpb6y35hwg565047rp53rcxf4pdn0i9f6zhr4f";
}; };
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
lxqt.libfm-qt lxqt.libfm-qt
xorg.libpthreadstubs
xorg.libXdmcp
libfm libfm
menu-cache menu-cache
lxmenu-data lxmenu-data
@ -37,7 +34,7 @@ stdenv.mkDerivation rec {
description = "File manager and desktop icon manager (Qt port of PCManFM and libfm)"; description = "File manager and desktop icon manager (Qt port of PCManFM and libfm)";
homepage = https://github.com/lxde/pcmanfm-qt; homepage = https://github.com/lxde/pcmanfm-qt;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix; platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
}; };
} }