e34de045b6
LXQt uses the values in this macro to set installation directories and in the case of lxqt-session to substitute in paths. However, by doing this all the paths are from within lxqt-build-tools prefix. By utilizing a setup hook we can set the directories with the correct prefix as cmake flags.
39 lines
841 B
Nix
39 lines
841 B
Nix
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, lxqt, qtbase, qttools,
|
|
qtx11extras, libfm-qt, menu-cache, lxmenu-data }:
|
|
|
|
mkDerivation rec {
|
|
pname = "pcmanfm-qt";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxqt";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1zchxlbyiifing94mqwh45pp7z3ihldknqiaz0kanq1cnma1jj6k";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
lxqt.lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qttools
|
|
qtx11extras
|
|
libfm-qt
|
|
libfm-qt
|
|
menu-cache
|
|
lxmenu-data
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "File manager and desktop icon manager (Qt port of PCManFM and libfm)";
|
|
homepage = https://github.com/lxqt/pcmanfm-qt;
|
|
license = licenses.gpl2;
|
|
platforms = with platforms; unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|