nixpkgs-suyu/pkgs/desktops/lxqt/lxqt-build-tools/default.nix

67 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
2021-05-17 21:21:50 +02:00
, stdenv
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 03:21:50 +01:00
, pkg-config
, pcre
, qtbase
, glib
2021-04-16 22:32:41 +02:00
, perl
, lxqtUpdateScript
}:
2017-02-19 11:45:37 +01:00
mkDerivation rec {
2019-02-06 00:13:17 +01:00
pname = "lxqt-build-tools";
2021-04-16 22:32:41 +02:00
version = "0.9.0";
2017-02-19 11:45:37 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2019-02-06 00:13:17 +01:00
repo = pname;
2017-02-19 11:45:37 +01:00
rev = version;
2021-04-16 22:32:41 +02:00
sha256 = "0zhcv6cbdn9fr5lpglz26gzssbxkpi824sgc0g7w3hh1z6nqqf8l";
2017-02-19 11:45:37 +01:00
};
2021-05-17 21:21:50 +02:00
# Nix clang on darwin identifies as 'Clang', not 'AppleClang'
# Without this, dependants fail to link.
postPatch = ''
substituteInPlace cmake/modules/LXQtCompilerSettings.cmake \
--replace AppleClang Clang
'';
nativeBuildInputs = [
cmake
2021-01-17 03:21:50 +01:00
pkg-config
setupHook
];
2018-06-20 23:49:24 +02:00
buildInputs = [
qtbase
glib
pcre
];
2017-11-02 02:52:41 +01:00
2021-04-16 22:32:41 +02:00
propagatedBuildInputs = [
perl # needed by LXQtTranslateDesktop.cmake
];
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
'';
2017-02-19 11:45:37 +01:00
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-build-tools";
description = "Various packaging tools and scripts for LXQt applications";
license = licenses.lgpl21Plus;
2017-02-19 11:45:37 +01:00
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
};
}