forked from mirrors/nixpkgs
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.
35 lines
1 KiB
Nix
35 lines
1 KiB
Nix
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, pcre, qtbase, glib }:
|
|
|
|
mkDerivation rec {
|
|
pname = "lxqt-build-tools";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxqt";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0i7m9s4g5rsw28vclc9nh0zcapx85cqfwxkx7rrw7wa12svy7pm2";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig setupHook ];
|
|
|
|
buildInputs = [ qtbase glib pcre ];
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
# We're dependent on this macro doing add_definitions in most places
|
|
# But we have the setup-hook to set the values.
|
|
postInstall = ''
|
|
rm $out/share/cmake/lxqt-build-tools/modules/LXQtConfigVars.cmake
|
|
cp ${./LXQtConfigVars.cmake} $out/share/cmake/lxqt-build-tools/modules/LXQtConfigVars.cmake
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Various packaging tools and scripts for LXQt applications";
|
|
homepage = https://github.com/lxqt/lxqt-build-tools;
|
|
license = licenses.lgpl21;
|
|
platforms = with platforms; unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|